home *** CD-ROM | disk | FTP | other *** search
/ Chip 1999 January / Chip_1999-01_cd.bin / sharewar / cppc / CPPC.EXE / Programmers only / ext_date / main.h < prev    next >
Encoding:
C/C++ Source or Header  |  1997-10-17  |  410 b   |  23 lines

  1. /*
  2.     file: main.cpp
  3. */
  4.  
  5.  
  6. #ifndef _MAIN_H_
  7. #define _MAIN_H_ 1
  8.  
  9.  
  10. //    typedef so we can easily pass a function pointer to GetDateTimeHandle
  11.  
  12. typedef int (CALLBACK *DateTimeFormatFP)( LCID, DWORD, 
  13.                             CONST SYSTEMTIME *, LPCTSTR, LPTSTR, int );
  14.  
  15. //    prototypes
  16.  
  17. HGLOBAL GetDateTimeHandle ( DWORD flags, DateTimeFormatFP dtfp );
  18. int getCurrentClipboard (CPEntryProcPtr    entryPoint);
  19.  
  20.  
  21. #endif
  22.  
  23.