home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / DRAGIN.ZIP / DRAGINFO.H < prev    next >
Text File  |  1993-02-14  |  2KB  |  48 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.  
  10. #define INCL_WIN
  11. #define INCL_GPI
  12.  
  13. #define INCL_WINSTDDRAG
  14. #include <os2.h>                /* PM header file           */
  15. #include <stdio.h>
  16. #include <stdlib.h>
  17. #include <string.h>
  18. #include <ctype.h>
  19.  
  20. #include "drgconfg.h"     /* dialog header */
  21.  
  22. #define ID_WINDOW   256
  23. #define ID_DRAGPTR  257
  24. #define ID_EXITPROG 258
  25. #define ID_LISTBOX  259
  26. #define ID_OPTIONS  300
  27.  
  28. #define IDM_CONFIGDLG    301
  29. #define IDM_CLEARLIST    302
  30. #define IDM_DOSOMETHING  303
  31. #define IDM_DRGDRAG      304
  32. #define IDM_DRGDRAGFILES 305
  33.  
  34.  
  35. extern BOOL   bDrgDrag;
  36. extern BOOL   bSourceRender;
  37. extern USHORT usDrgOperation;
  38. extern USHORT usDrgReturn;
  39. extern PSZ    szDrgType;
  40. extern CHAR   szDrgRMF[];
  41. extern CHAR   szPath[];
  42. extern CHAR   szFile[];
  43. extern CHAR   szFilePath[];
  44. extern USHORT usDrgControl;
  45.  
  46. MRESULT EXPENTRY wpConfDrgDrag( HWND, ULONG, MPARAM, MPARAM );
  47. MRESULT EXPENTRY wpConfDrgDragFiles( HWND, ULONG, MPARAM, MPARAM );
  48.