DIALOGS.H
上传用户:bangxh
上传日期:2007-01-31
资源大小:42235k
文件大小:3k
源码类别:

Windows编程

开发平台:

Visual C++

  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. #include <windows.h>
  14. #include "standard.h"
  15. #include "child.h"
  16. //*---------------------------------------------------------------------------------
  17. //|   Macros and Defines
  18. //*---------------------------------------------------------------------------------
  19. #define  IDD_SQLTABLES              3000
  20. #define  IDD_SQLCOLUMNS             3001
  21. #define  IDD_SQLSPECIALCOLUMNS      3002
  22. #define  IDD_SQLSTATISTICS          3003
  23. #define  IDD_SQLPRIMARYKEYS         3004
  24. #define  IDD_SQLFOREIGNKEYS         3005
  25. #define  IDD_SQLTABLEPRIVILEGES     3006
  26. #define  IDD_SQLCOLUMNPRIVILEGES    3007
  27. #define  IDD_SQLPROCEDURES          3008
  28. #define  IDD_SQLPROCEDURECOLUMNS    3009
  29. #define  IDT_TABLE                  301
  30. #define  IDT_TYPE                   303
  31. #define  IDT_COLUMN                 304
  32. #define  IDE_TABLE                  331
  33. #define  IDE_TYPE                   333
  34. #define  IDE_COLUMN                 334
  35. #define  IDX_BEST_ROWID             340
  36. #define  IDX_ROWVER                 341
  37. #define  IDX_NO_NULLS               342
  38. #define  IDX_NULLABLE               343
  39. #define  IDX_SCOPE_CURROW           344
  40. #define  IDX_SCOPE_TRANSACTION      345
  41. #define  IDX_SCOPE_SESSION          346
  42. #define  IDX_INDEX_UNIQUE           360
  43. #define  IDX_INDEX_ALL              361
  44. #define  IDX_ENSURE                 362
  45. #define  IDX_QUICK                  363
  46. #define  IDT_QUALIFIER2             365
  47. #define  IDT_OWNER2                 366
  48. #define  IDT_TABLE2                 367
  49. #define  IDE_QUALIFIER2             368
  50. #define  IDE_OWNER2                 369
  51. #define  IDE_TABLE2                 370
  52. #define  IDT_PROCEDURE              375
  53. #define  IDE_PROCEDURE              376
  54. typedef BOOL (FAR PASCAL *DLGWNDPROC) (HWND hDlg, unsigned msg, WORD wParam, LONG lParam);
  55. //*---------------------------------------------------------------------------------
  56. //|   Function prototypes
  57. //*---------------------------------------------------------------------------------
  58. void DoList(CHILDINFO FAR * ci, int idMenuSelection);
  59. #endif