home *** CD-ROM | disk | FTP | other *** search
/ Media Share 9 / MEDIASHARE_09.ISO / comm / ykh121.zip / YKHSRC.ZIP / UTILITY.H < prev    next >
C/C++ Source or Header  |  1993-04-18  |  269b  |  13 lines

  1. #ifndef UTILITY_H
  2. #define UTILITY_H
  3.  
  4. typedef unsigned char BYTE;
  5. typedef unsigned WORD;
  6. typedef unsigned BOOL;
  7.  
  8. #define TRUE 1
  9. #define FALSE 0
  10.  
  11. void GetPrivateProfileString(char* head, char* value, char* def, char* dest, int length, char* filename);
  12.  
  13. #endif