Last change
on this file since 1194 was 1168, checked in by John Small, 17 years ago |
Ticket 187: Draft 1: Functions only
|
File size:
1.2 KB
|
Rev | Line | |
---|
[1168] | 1 |
|
---|
| 2 | /**************************************************/
|
---|
| 3 | /* Lazy Drag API's. */
|
---|
| 4 | /**************************************************/
|
---|
| 5 |
|
---|
| 6 | BOOL APIENTRY DrgLazyDrag(HWND hwndSource,
|
---|
| 7 | PDRAGINFO pdinfo,
|
---|
| 8 | PDRAGIMAGE pdimg, ULONG cdimg, PVOID pRsvd);
|
---|
| 9 |
|
---|
| 10 | BOOL APIENTRY DrgCancelLazyDrag(VOID);
|
---|
| 11 |
|
---|
| 12 | BOOL APIENTRY DrgLazyDrop(HWND hwndTarget,
|
---|
| 13 | ULONG ulOperation, PPOINTL pptlDrop);
|
---|
| 14 |
|
---|
| 15 | PDRAGINFO APIENTRY DrgQueryDraginfoPtr(PDRAGINFO pRsvd);
|
---|
| 16 |
|
---|
| 17 | PDRAGINFO APIENTRY DrgQueryDraginfoPtrFromHwnd(HWND hwndSource);
|
---|
| 18 |
|
---|
| 19 | PDRAGINFO APIENTRY DrgQueryDraginfoPtrFromDragitem(PDRAGITEM pditem);
|
---|
| 20 |
|
---|
| 21 | ULONG APIENTRY DrgQueryDragStatus(VOID);
|
---|
| 22 |
|
---|
| 23 | PDRAGINFO APIENTRY DrgReallocDraginfo(PDRAGINFO pdinfoOld, ULONG cditem);
|
---|
| 24 |
|
---|
| 25 | /* Drag Status Flags */
|
---|
| 26 | #define DGS_DRAGINPROGRESS 0x0001 /* Standard Drag in Progress. */
|
---|
| 27 | #define DGS_LAZYDRAGINPROGRESS 0x0002 /* Lazy Drag in Progress. */
|
---|
| 28 |
|
---|
| 29 | MRESULT EXPENTRY CatalogProc(HWND hwnd, ULONG msg, MPARAM mp1, MPARAM mp2);
|
---|
| 30 | VOID CloseHelp(VOID);
|
---|
| 31 | MRESULT EXPENTRY FileListProc(HWND hwnd, ULONG msg, MPARAM mp1, MPARAM mp2);
|
---|
| 32 | BOOL FilterAttrs(PCNRITEM pci, MASK * mask);
|
---|
| 33 | MRESULT EXPENTRY ProgDlgProc(HWND hwnd, ULONG msg, MPARAM mp1, MPARAM mp2);
|
---|
| 34 |
|
---|
Note:
See
TracBrowser
for help on using the repository browser.