source: trunk/dll/obsolete.h@ 1211

Last change on this file since 1211 was 1211, checked in by John Small, 17 years ago

Ticket 187: Move data declarations/definitions out of fm3dll.h

  • Property svn:eolstyle set to native
  • Property svn:keywords set to Id
File size: 1.7 KB
Line 
1
2/***********************************************************************
3
4$Id: obsolete.h 1211 2008-09-13 06:52:08Z jbs $
5
6Function declarations neither called or defined in FM/2 source files
7
8Copyright (c) 1993-98 M. Kimes
9Copyright (c) 2008 Steven H. Levine
10
11Change log
12
13***********************************************************************/
14
15#if !defined(OBSOLETE_H)
16#define OBSOLETE_H
17
18
19
20/**************************************************/
21/* Lazy Drag API's. */
22/**************************************************/
23
24BOOL APIENTRY DrgLazyDrag(HWND hwndSource,
25 PDRAGINFO pdinfo,
26 PDRAGIMAGE pdimg, ULONG cdimg, PVOID pRsvd);
27
28BOOL APIENTRY DrgCancelLazyDrag(VOID);
29
30BOOL APIENTRY DrgLazyDrop(HWND hwndTarget,
31 ULONG ulOperation, PPOINTL pptlDrop);
32
33PDRAGINFO APIENTRY DrgQueryDraginfoPtr(PDRAGINFO pRsvd);
34
35PDRAGINFO APIENTRY DrgQueryDraginfoPtrFromHwnd(HWND hwndSource);
36
37PDRAGINFO APIENTRY DrgQueryDraginfoPtrFromDragitem(PDRAGITEM pditem);
38
39ULONG APIENTRY DrgQueryDragStatus(VOID);
40
41PDRAGINFO 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
47MRESULT EXPENTRY CatalogProc(HWND hwnd, ULONG msg, MPARAM mp1, MPARAM mp2);
48VOID CloseHelp(VOID);
49MRESULT EXPENTRY FileListProc(HWND hwnd, ULONG msg, MPARAM mp1, MPARAM mp2);
50BOOL FilterAttrs(PCNRITEM pci, MASK * mask);
51MRESULT EXPENTRY ProgDlgProc(HWND hwnd, ULONG msg, MPARAM mp1, MPARAM mp2);
52
53#pragma data_seg(GLOBAL2)
54INT butxsize;
55INT butysize;
56BOOL fUseMCI;
57
58#pragma data_seg(GLOBAL1)
59HPOINTER hptrCommon;
60HWND hwndTrash;
61USHORT nodes;
62
63
64#endif // OBSOLETE_H
Note: See TracBrowser for help on using the repository browser.