home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 5 / 05.iso / a / a522 / 30.ddi / WINSAM.H < prev    next >
Encoding:
C/C++ Source or Header  |  1991-02-21  |  2.7 KB  |  88 lines

  1. /*
  2.  * winsam.h
  3.  *
  4.  * Example Pro*C Application for Windows V3.0.
  5.  *
  6.  * by F. Lopez -- Desktop Products Division.
  7.  *
  8.  * Copyright 1991, Oracle Corporation.
  9.  */
  10.  
  11. #define APPNAME                      "Sample"
  12.  
  13. /* String maximum sizes. */
  14. #define MAX_ABOUT_STRING             10
  15. #define MAX_APPNAME_STRING           20
  16. #define MAX_SAMPLEMENU_STRING        20
  17. #define MAX_TITLE_STRING             20
  18.  
  19. /* String table constant ids. */
  20. #define IDS_ABOUT                   100
  21. #define IDS_APPNAME                 101
  22. #define IDS_SAMPLEMENU              102
  23. #define IDS_TITLE                   103
  24.  
  25. /* System Resource ids. */
  26. #define ABOUTBOX                      1
  27. #define LOGONBOX                      2
  28. #define EMPLOYEESBOX                  3
  29.  
  30. /* Main menu bar ids. */
  31. #define IDM_ORACLE_CONNECT          100
  32. #define IDM_ORACLE_DISCONNECT       101
  33. #define IDM_ORACLE_EMPLOYEES        102
  34. #define IDM_EXIT                    110
  35.  
  36. /* Logon dialog box ids. */
  37. #define ID_LOGON_TEXT1              100
  38. #define ID_LOGON_TEXT2              101
  39. #define ID_LOGON_TEXT3              102
  40. #define ID_LOGON_TEXT4              103
  41. #define ID_LOGON_USERID             104
  42. #define ID_LOGON_PASSWORD           105
  43. #define ID_LOGON_CONNECT            106
  44. #define ID_LOGON_OK                 107
  45. #define ID_LOGON_CANCEL             108
  46.  
  47. /* Employees dialog box ids. */
  48. #define ID_EMPLOYEES_SELECT         100
  49. #define ID_EMPLOYEES_FETCH          101
  50. #define ID_EMPLOYEES_UPDATE         102
  51. #define ID_EMPLOYEES_INSERT         103
  52. #define ID_EMPLOYEES_DELETE         104
  53. #define ID_EMPLOYEES_CLEAR          105
  54. #define ID_EMPLOYEES_COMMIT         106
  55. #define ID_EMPLOYEES_ROLLBACK       107
  56. #define ID_EMPLOYEES_EXIT           108
  57. #define ID_EMPLOYEES_TEXT1          120
  58. #define ID_EMPLOYEES_TEXT2          121
  59. #define ID_EMPLOYEES_TEXT3          122
  60. #define ID_EMPLOYEES_TEXT4          123
  61. #define ID_EMPLOYEES_TEXT5          124
  62. #define ID_EMPLOYEES_TEXT6          125
  63. #define ID_EMPLOYEES_TEXT7          126
  64. #define ID_EMPLOYEES_TEXT8          127
  65. #define ID_EMPLOYEES_FLD_EMPNO      140
  66. #define ID_EMPLOYEES_FLD_ENAME      141
  67. #define ID_EMPLOYEES_FLD_JOB        142
  68. #define ID_EMPLOYEES_FLD_MGR        143
  69. #define ID_EMPLOYEES_FLD_HIREDATE   144
  70. #define ID_EMPLOYEES_FLD_SAL        145
  71. #define ID_EMPLOYEES_FLD_COMM       146
  72. #define ID_EMPLOYEES_FLD_DEPTNO     147
  73.  
  74. #define MAX_USERID                   20
  75. #define MAX_PASSWORD                 20
  76. #define MAX_CONNECT                  20
  77.  
  78. typedef void PROCEDURE;
  79.  
  80. #define EOS '\0'
  81. #define EOL '\n'
  82.  
  83. struct oracle_session {
  84.     BOOL connected;    /*Is there a current connection?*/
  85.     BOOL opened;       /*Is the cursor open.*/
  86. };
  87. 
  88.