[1168] | 1 |
|
---|
[1199] | 2 | /***********************************************************************
|
---|
| 3 |
|
---|
| 4 | $Id: obsolete.h 1226 2008-09-13 23:12:40Z jbs $
|
---|
| 5 |
|
---|
| 6 | Function declarations neither called or defined in FM/2 source files
|
---|
[1226] | 7 | These can be deleted after a year of disuse, i.e. Sep 2009
|
---|
[1199] | 8 |
|
---|
| 9 | Copyright (c) 1993-98 M. Kimes
|
---|
| 10 | Copyright (c) 2008 Steven H. Levine
|
---|
| 11 |
|
---|
| 12 | Change log
|
---|
| 13 |
|
---|
| 14 | ***********************************************************************/
|
---|
| 15 |
|
---|
| 16 | #if !defined(OBSOLETE_H)
|
---|
| 17 | #define OBSOLETE_H
|
---|
| 18 |
|
---|
[1168] | 19 | /**************************************************/
|
---|
| 20 | /* Lazy Drag API's. */
|
---|
| 21 | /**************************************************/
|
---|
| 22 |
|
---|
| 23 | BOOL APIENTRY DrgLazyDrag(HWND hwndSource,
|
---|
| 24 | PDRAGINFO pdinfo,
|
---|
| 25 | PDRAGIMAGE pdimg, ULONG cdimg, PVOID pRsvd);
|
---|
| 26 |
|
---|
| 27 | BOOL APIENTRY DrgCancelLazyDrag(VOID);
|
---|
| 28 |
|
---|
| 29 | BOOL APIENTRY DrgLazyDrop(HWND hwndTarget,
|
---|
| 30 | ULONG ulOperation, PPOINTL pptlDrop);
|
---|
| 31 |
|
---|
| 32 | PDRAGINFO APIENTRY DrgQueryDraginfoPtr(PDRAGINFO pRsvd);
|
---|
| 33 |
|
---|
| 34 | PDRAGINFO APIENTRY DrgQueryDraginfoPtrFromHwnd(HWND hwndSource);
|
---|
| 35 |
|
---|
| 36 | PDRAGINFO APIENTRY DrgQueryDraginfoPtrFromDragitem(PDRAGITEM pditem);
|
---|
| 37 |
|
---|
| 38 | ULONG APIENTRY DrgQueryDragStatus(VOID);
|
---|
| 39 |
|
---|
| 40 | PDRAGINFO APIENTRY DrgReallocDraginfo(PDRAGINFO pdinfoOld, ULONG cditem);
|
---|
| 41 |
|
---|
| 42 | /* Drag Status Flags */
|
---|
| 43 | #define DGS_DRAGINPROGRESS 0x0001 /* Standard Drag in Progress. */
|
---|
| 44 | #define DGS_LAZYDRAGINPROGRESS 0x0002 /* Lazy Drag in Progress. */
|
---|
| 45 |
|
---|
| 46 | MRESULT EXPENTRY CatalogProc(HWND hwnd, ULONG msg, MPARAM mp1, MPARAM mp2);
|
---|
| 47 | VOID CloseHelp(VOID);
|
---|
| 48 | MRESULT EXPENTRY FileListProc(HWND hwnd, ULONG msg, MPARAM mp1, MPARAM mp2);
|
---|
| 49 | BOOL FilterAttrs(PCNRITEM pci, MASK * mask);
|
---|
| 50 | MRESULT EXPENTRY ProgDlgProc(HWND hwnd, ULONG msg, MPARAM mp1, MPARAM mp2);
|
---|
| 51 |
|
---|
[1211] | 52 | #pragma data_seg(GLOBAL2)
|
---|
| 53 | INT butxsize;
|
---|
| 54 | INT butysize;
|
---|
| 55 | BOOL fUseMCI;
|
---|
[1199] | 56 |
|
---|
[1211] | 57 | #pragma data_seg(GLOBAL1)
|
---|
| 58 | HPOINTER hptrCommon;
|
---|
| 59 | HWND hwndTrash;
|
---|
| 60 | USHORT nodes;
|
---|
| 61 |
|
---|
| 62 |
|
---|
[1199] | 63 | #endif // OBSOLETE_H
|
---|