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