home *** CD-ROM | disk | FTP | other *** search
/ Programming Windows 95 / Programming Windows 95.iso / code / CHAP19 / STRLIB.H < prev    next >
Encoding:
C/C++ Source or Header  |  1996-01-01  |  351 b   |  13 lines

  1. /*----------------------
  2.    STRLIB.H header file
  3.   ----------------------*/
  4.  
  5. typedef BOOL (CALLBACK *PSTRCB) (PSTR, PVOID) ;
  6. #define MAX_STRINGS 256
  7.  
  8. #define EXPORT  extern "C" __declspec (dllexport)
  9.  
  10. EXPORT BOOL CALLBACK AddString    (PSTR) ;
  11. EXPORT BOOL CALLBACK DeleteString (PSTR) ;
  12. EXPORT int  CALLBACK GetStrings   (PSTRCB, PVOID) ;
  13.