home *** CD-ROM | disk | FTP | other *** search
/ Microsoft Internet Business Development Kit / PRODUCT_CD.iso / sqlsvr / odbcsdk / samples / trnslchk / transpec.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-12-07  |  1.5 KB  |  53 lines

  1. //*---------------------------------------------------------------------------------
  2. //| ODBC Sample Translation DLL and Tool
  3. //|
  4. //|  This code is furnished on an as-is basis as part of the ODBC SDK and is
  5. //|  intended for example purposes only.
  6. //|
  7. //|    This include file contains the constants required for the control
  8. //|        dialog of the ODBC Translate tool.
  9. //*-----------------------------------------------------------------------
  10. #ifndef transpec_DEFS
  11. #define transpec_DEFS
  12.  
  13. #include "OPTIONS.H"   
  14.  
  15. // TRANSPEC
  16. #define    IDT_LIBS                400
  17. #define    IDL_LIBS                401
  18. #define    IDT_HINST            402
  19. #define    IDL_HINST            403
  20. #define    IDB_CLOSE            404
  21. #define    IDB_UNLOAD            405
  22. #define    IDT_COUNT            406
  23. #define    IDT_HMOD                407
  24. #define    IDT_FREEMEM            408
  25. #define    IDT_WINVER            409
  26. #define    IDT_FREESYS            410
  27. #define    IDT_CPU                411
  28. #define    IDT_WARNTEXT        412
  29. #define    IDX_NEVERAGAIN        413
  30.  
  31.  
  32. #define    USER_REINITDIALOG        (WM_USER + 0x100)
  33. #define  USER_REFRESHLIBCOUNT (WM_USER + 0x101)
  34.  
  35. //------------------------------------------------------------------------
  36. // Globals
  37. //------------------------------------------------------------------------
  38. char szAddressVal[10];
  39. HINSTANCE hInst;
  40. extern dCSEG(char) szud[];
  41.  
  42.  
  43.  
  44.  
  45. //------------------------------------------------------------------------
  46. // Function prototypes
  47. //------------------------------------------------------------------------
  48. BOOL  LoadTranslateLib(OPTIONS FAR * opt) {return TRUE;} 
  49.         //has use in trnslchk.c
  50.  
  51.  
  52. #endif
  53.