home *** CD-ROM | disk | FTP | other *** search
/ CD World Haziran 1997 / CD World Haziran 1997.iso / Programlama ve Gelistirme / DTime / _SETUP.1 / Dtime.h < prev    next >
Encoding:
C/C++ Source or Header  |  1996-11-04  |  1.1 KB  |  42 lines

  1. /*
  2. Module : DTIME.H
  3. Purpose: Defines the interface to all DateTime components
  4. Created: PJN / DATE/1 / 23-02-1996
  5. History: None
  6.  
  7. Copyright (c) 1996 by PJ Naughter.  
  8. All rights reserved.
  9.  
  10. */
  11.  
  12. #ifndef __DTIME_H__
  13.  
  14.  
  15. ////////////////////////////////// Macros /////////////////////////////////////
  16.  
  17. #define __DTIME_H__
  18.  
  19. #ifndef __cplusplus
  20.   #error Requires C++ compilation (use a .cpp suffix)
  21. #endif                 
  22.  
  23.  
  24.  
  25. ////////////////////////////////// Includes ///////////////////////////////////
  26. #include <datetime.h>      //Underlying date & time classes
  27. #include <resource.h>      //Resources values
  28. #include <dentry.h>        //data entry routines
  29.  
  30.  
  31. //////////////////////////////// Global functions /////////////////////////////
  32.  
  33. AFX_EXT_API WORD GetDTimeVersion();   //returns the current version of the classes 
  34.                                       //currently 0x0200, major version = HIBYTE = 2
  35.                                       //major version = LOBYTE = 0
  36.  
  37. AFX_EXT_API void AboutDTime();        //Displays various info about DTime using a 
  38.                                       //modal dialog box
  39.  
  40.  
  41.  
  42. #endif //__DTIME_H__