home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / DRGDRO.ZIP / DROPINFO.ZIP / DROPINFO.H < prev    next >
Text File  |  1993-02-22  |  1KB  |  31 lines

  1. /*********** DROPINFO C Sample Program Include file (.H) *************************/
  2. /*                                                                            */
  3. /*  The DROPINFO include file defines symbolic constants used                    */
  4. /*  in the DROPINFO.C and .RC files.                                             */
  5. /*  DROPINFO local procedure declarations may appear in this file to             */
  6. /*  ensure have been declared before being used.                              */
  7. /*                                                                            */
  8. /******************************************************************************/
  9. #define INCL_WIN
  10. #define INCL_GPI
  11.  
  12. #define INCL_WINSTDDRAG
  13. #include <os2.h>
  14. #include <stdio.h>
  15. #include <stdlib.h>
  16. #include <string.h>
  17. #include <ctype.h>
  18.  
  19. #define ID_WINDOW   256
  20. #define ID_EXITPROG 257
  21. #define ID_LISTBOX  300
  22.  
  23. #define ID_OPTIONS     258
  24. #define IDM_RESPONSE   259
  25. #define IDM_CLEARLIST  260
  26. #define IDM_EXIT       261
  27.  
  28. void PutMsg(HWND hwnd, char *type, MPARAM mp1, MPARAM mp2);
  29. void PutDInfo(HWND hwnd, PDRAGINFO pdinfo);
  30. void PutDItem(HWND hwnd, PDRAGITEM pditem);
  31.