source: trunk/dll/obsolete.h@ 1194

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
Line 
1
2/**************************************************/
3/* Lazy Drag API's. */
4/**************************************************/
5
6BOOL APIENTRY DrgLazyDrag(HWND hwndSource,
7 PDRAGINFO pdinfo,
8 PDRAGIMAGE pdimg, ULONG cdimg, PVOID pRsvd);
9
10BOOL APIENTRY DrgCancelLazyDrag(VOID);
11
12BOOL APIENTRY DrgLazyDrop(HWND hwndTarget,
13 ULONG ulOperation, PPOINTL pptlDrop);
14
15PDRAGINFO APIENTRY DrgQueryDraginfoPtr(PDRAGINFO pRsvd);
16
17PDRAGINFO APIENTRY DrgQueryDraginfoPtrFromHwnd(HWND hwndSource);
18
19PDRAGINFO APIENTRY DrgQueryDraginfoPtrFromDragitem(PDRAGITEM pditem);
20
21ULONG APIENTRY DrgQueryDragStatus(VOID);
22
23PDRAGINFO 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
29MRESULT EXPENTRY CatalogProc(HWND hwnd, ULONG msg, MPARAM mp1, MPARAM mp2);
30VOID CloseHelp(VOID);
31MRESULT EXPENTRY FileListProc(HWND hwnd, ULONG msg, MPARAM mp1, MPARAM mp2);
32BOOL FilterAttrs(PCNRITEM pci, MASK * mask);
33MRESULT EXPENTRY ProgDlgProc(HWND hwnd, ULONG msg, MPARAM mp1, MPARAM mp2);
34
Note: See TracBrowser for help on using the repository browser.