Home |
RTKernel-32 Programming Manual Function WGetS |
Function WGetSWGetS reads a string into the given buffer: char * WGetS(WWindow * W, char * S, int MaxStrLen); ParametersWPointer to the window structure of the output window. SThe input read is placed in buffer *S until character CR is encountered. The trailing CR is not stored in *S. MaxStrLenDefines the length of the buffer pointed to by S. WGetS will discard any input after (MaxStrLen-1) characters have been read. You must call WSetUserInput to define an input routine before this function can be used.
|