home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Windows Gam…ming Gurus (2nd Edition) / Disc2.iso / msdn_vcb / samples / vc98 / sdk / dbmsg / odbc / admndemo / dialogs.h < prev    next >
Encoding:
C/C++ Source or Header  |  1997-10-06  |  2.5 KB  |  75 lines

  1. //*---------------------------------------------------------------------------------
  2. //|  ODBC System Administrator
  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. //|   Title:   DIALOGS.H
  8. //|      This file contains all of the constant definitions for the 
  9. //|      dialogs used for the lists.
  10. //*---------------------------------------------------------------------------------
  11. #ifndef dialogs_DEFS
  12. #define dialogs_DEFS
  13.  
  14. #include <windows.h>
  15. #include "standard.h"
  16. #include "child.h"
  17.  
  18.  
  19. //*---------------------------------------------------------------------------------
  20. //|   Macros and Defines
  21. //*---------------------------------------------------------------------------------
  22. #define  IDD_SQLTABLES              3000
  23. #define  IDD_SQLCOLUMNS             3001
  24. #define  IDD_SQLSPECIALCOLUMNS      3002
  25. #define  IDD_SQLSTATISTICS          3003
  26. #define  IDD_SQLPRIMARYKEYS         3004
  27. #define  IDD_SQLFOREIGNKEYS         3005
  28. #define  IDD_SQLTABLEPRIVILEGES     3006
  29. #define  IDD_SQLCOLUMNPRIVILEGES    3007
  30. #define  IDD_SQLPROCEDURES          3008
  31. #define  IDD_SQLPROCEDURECOLUMNS    3009
  32.  
  33. #define  IDT_TABLE                  301
  34. #define  IDT_TYPE                   303
  35. #define  IDT_COLUMN                 304
  36.  
  37. #define  IDE_TABLE                  331
  38. #define  IDE_TYPE                   333
  39. #define  IDE_COLUMN                 334
  40.  
  41. #define  IDX_BEST_ROWID             340
  42. #define  IDX_ROWVER                 341
  43. #define  IDX_NO_NULLS               342
  44. #define  IDX_NULLABLE               343
  45. #define  IDX_SCOPE_CURROW           344
  46. #define  IDX_SCOPE_TRANSACTION      345
  47. #define  IDX_SCOPE_SESSION          346
  48.  
  49. #define  IDX_INDEX_UNIQUE           360
  50. #define  IDX_INDEX_ALL              361
  51. #define  IDX_ENSURE                 362
  52. #define  IDX_QUICK                  363
  53.  
  54. #define  IDT_QUALIFIER2             365
  55. #define  IDT_OWNER2                 366
  56. #define  IDT_TABLE2                 367
  57. #define  IDE_QUALIFIER2             368
  58. #define  IDE_OWNER2                 369
  59. #define  IDE_TABLE2                 370
  60.  
  61. #define  IDT_PROCEDURE              375
  62. #define  IDE_PROCEDURE              376
  63.  
  64.  
  65. typedef BOOL (FAR PASCAL *DLGWNDPROC) (HWND hDlg, unsigned msg, WORD wParam, LONG lParam);
  66.  
  67.  
  68.  
  69. //*---------------------------------------------------------------------------------
  70. //|   Function prototypes
  71. //*---------------------------------------------------------------------------------
  72. void DoList(CHILDINFO FAR * ci, int idMenuSelection);
  73.  
  74. #endif
  75.