Legend:
- Unmodified
- Added
- Removed
-
trunk/dll/copyf.c
r1206 r1222 34 34 35 35 #include "fm3dll.h" 36 #include "fm3dll2.h" // #define's for UM_*, control id's, etc. 36 37 #include "killproc.h" // Data declaration(s) 37 38 #include "notebook.h" // Data declaration(s) -
trunk/dll/datamin.c
r1206 r1222 36 36 37 37 #include "fm3dll.h" 38 #include "fm3dll2.h" // #define's for UM_*, control id's, etc. 38 39 #include "info.h" // Data declaration(s) 39 40 #include "notebook.h" // Data declaration(s) -
trunk/dll/defview.c
r1206 r1222 35 35 36 36 #include "fm3dll.h" 37 #include "fm3dll2.h" // #define's for UM_*, control id's, etc. 37 38 #include "mainwnd2.h" // Data declaration(s) 38 39 #include "init.h" // Data declaration(s) -
trunk/dll/defview.h
r1206 r1222 16 16 #define DEFVIEW_H 17 17 18 #ifdef INCL_MMIOOS2 19 #pragma pack(4) 20 /* definitions for MMPM/2 imports */ 21 typedef DWORD(APIENTRY MMIOIDENTIFYFILE) (PSZ, PMMIOINFO, PMMFORMATINFO, 22 PFOURCC, DWORD, DWORD); 23 typedef MMIOIDENTIFYFILE *PMMIOIDENTIFYFILE; 24 typedef DWORD(APIENTRY MMIOOPEN)( PSZ, PMMIOINFO, DWORD); 25 typedef MMIOOPEN *PMMIOOPEN; 26 typedef WORD (APIENTRY MMIOGETINFO)( HMMIO, PMMIOINFO, WORD); 27 typedef MMIOGETINFO *PMMIOGETINFO; 28 typedef WORD (APIENTRY MMIOCLOSE)( HMMIO, WORD); 29 typedef MMIOCLOSE *PMMIOCLOSE; 30 31 #pragma pack() 32 #endif 33 18 34 VOID DefaultView(HWND hwnd, HWND hwndFrame, HWND hwndParent, SWP * swp, 19 35 ULONG flags, CHAR * filename); -
trunk/dll/dircnrs.c
r1206 r1222 65 65 66 66 #include "fm3dll.h" 67 #include "fm3dll2.h" // #define's for UM_*, control id's, etc. 67 68 #include "mainwnd2.h" // Data declaration(s) 68 69 #include "grep.h" // Data declaration(s) -
trunk/dll/dircnrs.h
r1206 r1222 69 69 } 70 70 CNRITEM, *PCNRITEM; 71 72 // Compare directory flags 73 #define CNRITEM_SMALLER 0x00010000 // file exists in both containers and this one is smaller 74 #define CNRITEM_LARGER 0x00020000 75 #define CNRITEM_NEWER 0x00040000 76 #define CNRITEM_OLDER 0x00080000 77 #define CNRITEM_EXISTS 0x00100000 // file exists in both containers 78 79 #define EXTRA_RECORD_BYTES (sizeof(CNRITEM) - sizeof(MINIRECORDCORE)) 71 80 72 81 typedef struct -
trunk/dll/dirsize.c
r1206 r1222 56 56 57 57 #include "fm3dll.h" 58 #include "fm3dll2.h" // #define's for UM_*, control id's, etc. 58 59 #include "draglist.h" // Data declaration(s) 59 60 #include "init.h" // Data declaration(s) -
trunk/dll/droplist.h
r1196 r1222 16 16 #define DROPLIST_H 17 17 18 #include "makelist.h" // typedef for LISTINFO 19 18 20 BOOL AcceptOneDrop(HWND hwnd, MPARAM mp1, MPARAM mp2); 19 21 BOOL CheckPmDrgLimit(PDRAGINFO pDInfo); -
trunk/dll/eas.c
r1207 r1222 36 36 37 37 #include "fm3dll.h" 38 #include "fm3dll2.h" // #define's for UM_*, control id's, etc. 38 39 #include "notebook.h" // Data declaration(s) 39 40 #include "info.h" // Data declaration(s) -
trunk/dll/eas.h
r1196 r1222 16 16 #define EAS_H 17 17 18 typedef struct HOLDFEA 19 { 20 PFEA2 pfea; 21 CHAR *name; 22 CHAR *value; 23 BYTE fEA; 24 BYTE cbName; 25 USHORT cbValue; 26 struct HOLDFEA *next; 27 } 28 HOLDFEA; 29 18 30 MRESULT EXPENTRY DisplayEAsProc(HWND hwnd, ULONG msg, MPARAM mp1, MPARAM mp2); 19 31 VOID Free_FEAList(HOLDFEA * pFEA);
Note:
See TracChangeset
for help on using the changeset viewer.
