home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 7 / 07.iso / d / d020_1_4 / 6.ddi / OWNCOMBO / OWNCOMBO.H < prev    next >
Encoding:
C/C++ Source or Header  |  1990-06-01  |  1.6 KB  |  50 lines

  1. /****************************************************************************
  2.  *                                        *
  3.  *  FILE    : OwnCombo.h                            *
  4.  *                                        *
  5.  *  DESCRIPTION : Header file for OwnCombo example.                *
  6.  *                                        *
  7.  ****************************************************************************/
  8. /* Defines for menu items */
  9. #define IDM_EXIT    201
  10. #define IDM_ABOUT   202
  11.  
  12. #define IDM_LISTBOX       300
  13. #define IDM_MULTILISTBOX  301
  14. #define IDM_COMBOBOX      302
  15. #define IDM_OWNERCOMBOBOX 303
  16.  
  17. #define IDM_HELP      400
  18.  
  19. /* Defines for dialog box ownerdraw controls. */
  20. #define ID_LISTBOX  1000
  21. #define ID_BLACK    1003
  22. #define ID_WHITE    1004
  23. #define ID_RED      1005
  24. #define ID_BLUE     1006
  25. #define ID_GREEN    1007
  26.  
  27. /* Defines for combo box example */
  28. #define ID_COMBOBOX     1000
  29. #define ID_SINGLEEDIT   1001
  30. #define ID_TEXT1        1002
  31. #define ID_TEXT2        1003
  32. #define ID_STEPSBOX     1004
  33. #define ID_UNSLBUTTON   1005
  34. #define ID_NUMSELBUTTON 1006
  35. #define ID_TXTSELBUTTON 1007
  36. #define ID_FNDSELBUTTON 1008
  37. #define ID_CLRBUTTON    1009
  38. #define ID_ADDBUTTON    1010
  39. #define ID_DELETEBUTTON 1011
  40. #define ID_CPYBUTTON    1012
  41. #define ID_CBDIRBUTTON  1013
  42.  
  43. int PASCAL WinMain(HANDLE, HANDLE, LPSTR, int);
  44. long FAR  PASCAL OwnComboWndProc(HWND, unsigned, WORD, LONG);
  45. BOOL NEAR PASCAL OwnComboInit(HANDLE);
  46. BOOL FAR  PASCAL About(HWND, unsigned, WORD, LONG);
  47. BOOL FAR  PASCAL ListBoxExample(HWND, unsigned, WORD, LONG);
  48. BOOL FAR  PASCAL ComboBoxExample(HWND, unsigned, WORD, LONG);
  49. BOOL FAR  PASCAL OwnerComboBoxExample(HWND, unsigned, WORD, LONG);
  50.