home *** CD-ROM | disk | FTP | other *** search
- /*
- file: main.cpp
- */
-
-
- #ifndef _MAIN_H_
- #define _MAIN_H_ 1
-
-
- // typedef so we can easily pass a function pointer to GetDateTimeHandle
-
- typedef int (CALLBACK *DateTimeFormatFP)( LCID, DWORD,
- CONST SYSTEMTIME *, LPCTSTR, LPTSTR, int );
-
- // prototypes
-
- HGLOBAL GetDateTimeHandle ( DWORD flags, DateTimeFormatFP dtfp );
- int getCurrentClipboard (CPEntryProcPtr entryPoint);
-
-
- #endif
-
-