home *** CD-ROM | disk | FTP | other *** search
/ Monster Media 1993 #2 / Image.iso / os2 / memsz200.zip / PROFILE.H < prev    next >
C/C++ Source or Header  |  1993-06-23  |  560b  |  30 lines

  1. /****************************************************************** PROFILE.H
  2.  *                                        *
  3.  *            Profile Dialog definitions                *
  4.  *                                        *
  5.  ****************************************************************************/
  6.  
  7. #ifndef PROFILE_H
  8. #define PROFILE_H
  9.  
  10. typedef struct
  11. {
  12.   SHORT   id ;
  13.   HWND      hwndHelp ;
  14.   PBYTE   Path ;
  15.   int      PathSize ;
  16. }
  17. PROFILE_PARMS, *PPROFILE_PARMS ;
  18.  
  19. extern "C" 
  20. {
  21.   extern MRESULT EXPENTRY ProfileProcessor
  22.   (
  23.     HWND hwnd,
  24.     USHORT msg,
  25.     MPARAM mp1,
  26.     MPARAM mp2
  27.   ) ;
  28. }
  29. #endif
  30.