Re: LPSTR_TEXTCALLBACK
- Posted by Bernie Ryan <bwryan at PCOM.NET> Jul 29, 1999
- 548 views
> Public Const LPSTR_TEXTCALLBACK = ((LPSTR) - 1&) > Terry: ( that "&" ampersand means a long integer in basic it should be an "L" in C ) but this is my interpetation. ( LPSTR -- 4 bytes - 1 ) constant LPSTR_TEXTCALLBACK = #FFFFFFFF - 1 It may expect to put a byte count into the location just before the buffer to keep track of the size ? In "C" you don't have to worry about this because the header file definition automatically take care of it. Bernie