Changeset 780 for trunk/include/win/shellapi.h
- Timestamp:
- Sep 1, 1999, 9:12:23 PM (26 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/win/shellapi.h
r183 r780 1 /* $Id: shellapi.h,v 1. 2 1999-06-24 19:27:48phaller Exp $ */1 /* $Id: shellapi.h,v 1.3 1999-09-01 19:12:13 phaller Exp $ */ 2 2 3 3 #ifndef _WINE_SHELLAPI_H … … 12 12 */ 13 13 14 typedef struct _DRAGINFOA 14 typedef struct _DRAGINFOA 15 15 { UINT uSize; 16 16 POINT pt; … … 20 20 } DRAGINFOA, * LPDRAGINFOA; 21 21 22 typedef struct _DRAGINFOW 22 typedef struct _DRAGINFOW 23 23 { UINT uSize; 24 24 POINT pt; … … 79 79 #define ABE_BOTTOM 3 80 80 81 typedef struct _AppBarData 81 typedef struct _AppBarData 82 82 { DWORD cbSize; 83 83 HWND hWnd; … … 113 113 #define SHGFI_ATTR_SPECIFIED 0x000020000 /* get only specified attributes */ 114 114 115 typedef struct tagSHFILEINFOA 115 typedef struct tagSHFILEINFOA 116 116 { HICON hIcon; /* icon */ 117 117 int iIcon; /* icon index */ … … 121 121 } SHFILEINFOA; 122 122 123 typedef struct tagSHFILEINFOW 123 typedef struct tagSHFILEINFOW 124 124 { HICON hIcon; /* icon */ 125 125 int iIcon; /* icon index */ … … 147 147 #define FOF_MULTIDESTFILES 0x0001 148 148 #define FOF_CONFIRMMOUSE 0x0002 149 #define FOF_SILENT 0x0004 149 #define FOF_SILENT 0x0004 150 150 #define FOF_RENAMEONCOLLISION 0x0008 151 #define FOF_NOCONFIRMATION 0x0010 152 #define FOF_WANTMAPPINGHANDLE 0x0020 151 #define FOF_NOCONFIRMATION 0x0010 152 #define FOF_WANTMAPPINGHANDLE 0x0020 153 153 #define FOF_ALLOWUNDO 0x0040 154 #define FOF_FILESONLY 0x0080 155 #define FOF_SIMPLEPROGRESS 0x0100 156 #define FOF_NOCONFIRMMKDIR 0x0200 157 #define FOF_NOERRORUI 0x0400 154 #define FOF_FILESONLY 0x0080 155 #define FOF_SIMPLEPROGRESS 0x0100 156 #define FOF_NOCONFIRMMKDIR 0x0200 157 #define FOF_NOERRORUI 0x0400 158 158 159 159 typedef WORD FILEOP_FLAGS; 160 160 161 #define PO_DELETE 0x0013 162 #define PO_RENAME 0x0014 163 #define PO_PORTCHANGE 0x0020 161 #define PO_DELETE 0x0013 162 #define PO_RENAME 0x0014 163 #define PO_PORTCHANGE 0x0020 164 164 165 165 typedef WORD PRINTEROP_FLAGS; … … 187 187 } SHFILEOPSTRUCTW, *LPSHFILEOPSTRUCTW; 188 188 189 DWORD WIN32API SHFileOperationA (LPSHFILEOPSTRUCTA lpFileOp); 189 DWORD WIN32API SHFileOperationA (LPSHFILEOPSTRUCTA lpFileOp); 190 190 DWORD WIN32API SHFileOperationW (LPSHFILEOPSTRUCTW lpFileOp); 191 191 … … 300 300 HINSTANCE WINAPI FindExecutableW(LPCWSTR,LPCWSTR,LPWSTR); 301 301 302 BOOLWINAPI ShellAboutA(HWND,LPCSTR,LPCSTR,HICON);303 BOOLWINAPI ShellAboutW(HWND,LPCWSTR,LPCWSTR,HICON);302 INT WINAPI ShellAboutA(HWND,LPCSTR,LPCSTR,HICON); 303 INT WINAPI ShellAboutW(HWND,LPCWSTR,LPCWSTR,HICON); 304 304 305 305 #pragma pack(4)
Note:
See TracChangeset
for help on using the changeset viewer.