Fixed an error and an off-by-one bug in DSA_SetItem(). This
[wine/dcerpc.git] / include / shellapi.h
blob4291a475b465c04fca2073cfc7aa558b8cd3af69
1 #ifndef _WINE_SHELLAPI_H
2 #define _WINE_SHELLAPI_H
4 #include "windef.h"
6 #include "pshpack1.h"
8 /******************************************
9 * DragObject
12 typedef struct _DRAGINFOA
13 { UINT uSize;
14 POINT pt;
15 BOOL fNC;
16 LPSTR lpFileList;
17 DWORD grfKeyState;
18 } DRAGINFOA, * LPDRAGINFOA;
20 typedef struct _DRAGINFOW
21 { UINT uSize;
22 POINT pt;
23 BOOL fNC;
24 LPWSTR lpFileList;
25 DWORD grfKeyState;
26 } DRAGINFOW, LPDRAGINFOW;
28 void WINAPI DragAcceptFiles(HWND hWnd, BOOL b);
29 void WINAPI DragAcceptFiles16(HWND16 hWnd, BOOL16 b);
31 UINT16 WINAPI DragQueryFile16(HDROP16 hDrop, WORD wFile, LPSTR lpszFile, WORD wLength);
32 UINT WINAPI DragQueryFileA(HDROP hDrop, UINT lFile, LPSTR lpszFile, UINT lLength);
33 UINT WINAPI DragQueryFileW(HDROP hDrop, UINT lFile, LPWSTR lpszFile, UINT lLength);
34 #define DragQueryFile WINELIB_NAME_AW(DragQueryFile)
36 void WINAPI DragFinish16(HDROP16 h);
37 void WINAPI DragFinish(HDROP h);
39 BOOL16 WINAPI DragQueryPoint16(HDROP16 hDrop, POINT16 *p);
40 BOOL WINAPI DragQueryPoint(HDROP hDrop, POINT *p);
42 #define NIF_MESSAGE 0x00000001
43 #define NIF_ICON 0x00000002
44 #define NIF_TIP 0x00000004
46 #define NIM_ADD 0x00000000
47 #define NIM_MODIFY 0x00000001
48 #define NIM_DELETE 0x00000002
52 /******************************************
53 * Application Bar
55 #define ABM_NEW 0x00000000
56 #define ABM_REMOVE 0x00000001
57 #define ABM_QUERYPOS 0x00000002
58 #define ABM_SETPOS 0x00000003
59 #define ABM_GETSTATE 0x00000004
60 #define ABM_GETTASKBARPOS 0x00000005
61 #define ABM_ACTIVATE 0x00000006
62 #define ABM_GETAUTOHIDEBAR 0x00000007
63 #define ABM_SETAUTOHIDEBAR 0x00000008
64 #define ABM_WINDOWPOSCHANGED 0x00000009
66 #define ABN_STATECHANGE 0x00000000
67 #define ABN_POSCHANGED 0x00000001
68 #define ABN_FULLSCREENAPP 0x00000002
69 #define ABN_WINDOWARRANGE 0x00000003
71 #define ABS_AUTOHIDE 0x00000001
72 #define ABS_ALWAYSONTOP 0x00000002
74 #define ABE_LEFT 0
75 #define ABE_TOP 1
76 #define ABE_RIGHT 2
77 #define ABE_BOTTOM 3
79 typedef struct _AppBarData
80 { DWORD cbSize;
81 HWND hWnd;
82 UINT uCallbackMessage;
83 UINT uEdge;
84 RECT rc;
85 LPARAM lParam;
86 } APPBARDATA, *PAPPBARDATA;
89 /******************************************
90 * SHGetFileInfo
93 #define SHGFI_LARGEICON 0x000000000 /* get large icon */
94 #define SHGFI_SMALLICON 0x000000001 /* get small icon */
95 #define SHGFI_OPENICON 0x000000002 /* get open icon */
96 #define SHGFI_SHELLICONSIZE 0x000000004 /* get shell size icon */
97 #define SHGFI_PIDL 0x000000008 /* pszPath is a pidl */
98 #define SHGFI_USEFILEATTRIBUTES 0x000000010 /* use passed dwFileAttribute */
99 #define SHGFI_UNKNOWN1 0x000000020
100 #define SHGFI_UNKNOWN2 0x000000040
101 #define SHGFI_UNKNOWN3 0x000000080
102 #define SHGFI_ICON 0x000000100 /* get icon */
103 #define SHGFI_DISPLAYNAME 0x000000200 /* get display name */
104 #define SHGFI_TYPENAME 0x000000400 /* get type name */
105 #define SHGFI_ATTRIBUTES 0x000000800 /* get attributes */
106 #define SHGFI_ICONLOCATION 0x000001000 /* get icon location */
107 #define SHGFI_EXETYPE 0x000002000 /* return exe type */
108 #define SHGFI_SYSICONINDEX 0x000004000 /* get system icon index */
109 #define SHGFI_LINKOVERLAY 0x000008000 /* put a link overlay on icon */
110 #define SHGFI_SELECTED 0x000010000 /* show icon in selected state */
111 #define SHGFI_ATTR_SPECIFIED 0x000020000 /* get only specified attributes */
113 typedef struct tagSHFILEINFOA
114 { HICON hIcon; /* icon */
115 int iIcon; /* icon index */
116 DWORD dwAttributes; /* SFGAO_ flags */
117 CHAR szDisplayName[MAX_PATH];/* display name (or path) */
118 CHAR szTypeName[80]; /* type name */
119 } SHFILEINFOA;
121 typedef struct tagSHFILEINFOW
122 { HICON hIcon; /* icon */
123 int iIcon; /* icon index */
124 DWORD dwAttributes; /* SFGAO_ flags */
125 WCHAR szDisplayName[MAX_PATH];/* display name (or path) */
126 WCHAR szTypeName[80]; /* type name */
127 } SHFILEINFOW;
129 DECL_WINELIB_TYPE_AW(SHFILEINFO)
131 DWORD WINAPI SHGetFileInfoA(LPCSTR,DWORD,SHFILEINFOA*,UINT,UINT);
132 DWORD WINAPI SHGetFileInfoW(LPCWSTR,DWORD,SHFILEINFOW*,UINT,UINT);
133 #define SHGetFileInfo WINELIB_NAME_AW(SHGetFileInfo)
135 /******************************************
136 * SHSetFileInfo
139 /******************************************
140 * SHFileOperation
142 #define FO_MOVE 0x0001
143 #define FO_COPY 0x0002
144 #define FO_DELETE 0x0003
145 #define FO_RENAME 0x0004
147 #define FOF_MULTIDESTFILES 0x0001
148 #define FOF_CONFIRMMOUSE 0x0002
149 #define FOF_SILENT 0x0004
150 #define FOF_RENAMEONCOLLISION 0x0008
151 #define FOF_NOCONFIRMATION 0x0010
152 #define FOF_WANTMAPPINGHANDLE 0x0020
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
159 typedef WORD FILEOP_FLAGS;
161 #define PO_DELETE 0x0013
162 #define PO_RENAME 0x0014
163 #define PO_PORTCHANGE 0x0020
165 typedef WORD PRINTEROP_FLAGS;
167 typedef struct _SHFILEOPSTRUCTA
168 { HWND hwnd;
169 UINT wFunc;
170 LPCSTR pFrom;
171 LPCSTR pTo;
172 FILEOP_FLAGS fFlags;
173 BOOL fAnyOperationsAborted;
174 LPVOID hNameMappings;
175 LPCSTR lpszProgressTitle;
176 } SHFILEOPSTRUCTA, *LPSHFILEOPSTRUCTA;
178 typedef struct _SHFILEOPSTRUCTW
179 { HWND hwnd;
180 UINT wFunc;
181 LPCWSTR pFrom;
182 LPCWSTR pTo;
183 FILEOP_FLAGS fFlags;
184 BOOL fAnyOperationsAborted;
185 LPVOID hNameMappings;
186 LPCWSTR lpszProgressTitle;
187 } SHFILEOPSTRUCTW, *LPSHFILEOPSTRUCTW;
189 #define SHFILEOPSTRUCT WINELIB_NAME_AW(SHFILEOPSTRUCT)
190 #define LPSHFILEOPSTRUCT WINELIB_NAME_AW(LPSHFILEOPSTRUCT)
192 DWORD WINAPI SHFileOperationA (LPSHFILEOPSTRUCTA lpFileOp);
193 DWORD WINAPI SHFileOperationW (LPSHFILEOPSTRUCTW lpFileOp);
194 #define SHFileOperation WINELIB_NAME_AW(SHFileOperation)
196 DWORD WINAPI SHFileOperationAW(DWORD x);
198 /******************************************
199 * ShellExecute
201 #define SE_ERR_SHARE 26
202 #define SE_ERR_ASSOCINCOMPLETE 27
203 #define SE_ERR_DDETIMEOUT 28
204 #define SE_ERR_DDEFAIL 29
205 #define SE_ERR_DDEBUSY 30
206 #define SE_ERR_NOASSOC 31
208 HINSTANCE16 WINAPI ShellExecute16(HWND16,LPCSTR,LPCSTR,LPCSTR,LPCSTR,INT16);
209 HINSTANCE WINAPI ShellExecuteA(HWND,LPCSTR,LPCSTR,LPCSTR,LPCSTR,INT);
210 HINSTANCE WINAPI ShellExecuteW(HWND,LPCWSTR,LPCWSTR,LPCWSTR,LPCWSTR,INT);
211 #define ShellExecute WINELIB_NAME_AW(ShellExecute)
213 /******************************************
214 * Tray Notification
216 typedef struct _NOTIFYICONDATAA
217 { DWORD cbSize;
218 HWND hWnd;
219 UINT uID;
220 UINT uFlags;
221 UINT uCallbackMessage;
222 HICON hIcon;
223 CHAR szTip[64];
224 } NOTIFYICONDATAA, *PNOTIFYICONDATAA;
226 typedef struct _NOTIFYICONDATAW
227 { DWORD cbSize;
228 HWND hWnd;
229 UINT uID;
230 UINT uFlags;
231 UINT uCallbackMessage;
232 HICON hIcon;
233 WCHAR szTip[64];
234 } NOTIFYICONDATAW, *PNOTIFYICONDATAW;
237 /******************************************
238 * Misc
241 HICON16 WINAPI ExtractIcon16(HINSTANCE16,LPCSTR,UINT16);
242 HICON WINAPI ExtractIconA(HINSTANCE,LPCSTR,UINT);
243 HICON WINAPI ExtractIconW(HINSTANCE,LPCWSTR,UINT);
244 #define ExtractIcon WINELIB_NAME_AW(ExtractIcon)
246 HICON16 WINAPI ExtractAssociatedIcon16(HINSTANCE16,LPSTR,LPWORD);
247 HICON WINAPI ExtractAssociatedIconA(HINSTANCE,LPSTR,LPWORD);
248 HICON WINAPI ExtractAssociatedIconW(HINSTANCE,LPWSTR,LPWORD);
249 #define ExtractAssociatedIcon WINELIB_NAME_AW(ExtractAssociatedIcon)
251 HICON16 WINAPI ExtractIconEx16 ( LPCSTR, INT16, HICON16 *, HICON16 *, UINT16 );
252 HICON WINAPI ExtractIconExA( LPCSTR, INT, HICON *, HICON *, UINT );
253 HICON WINAPI ExtractIconExW( LPCWSTR, INT, HICON *, HICON *, UINT );
254 #define ExtractIconEx WINELIB_NAME_AW(ExtractIconEx)
255 HICON WINAPI ExtractIconExAW(LPCVOID, INT, HICON *, HICON *, UINT );
257 HINSTANCE16 WINAPI FindExecutable16(LPCSTR,LPCSTR,LPSTR);
258 HINSTANCE WINAPI FindExecutableA(LPCSTR,LPCSTR,LPSTR);
259 HINSTANCE WINAPI FindExecutableW(LPCWSTR,LPCWSTR,LPWSTR);
260 #define FindExecutable WINELIB_NAME_AW(FindExecutable)
262 BOOL16 WINAPI ShellAbout16(HWND16,LPCSTR,LPCSTR,HICON16);
263 BOOL WINAPI ShellAboutA(HWND,LPCSTR,LPCSTR,HICON);
264 BOOL WINAPI ShellAboutW(HWND,LPCWSTR,LPCWSTR,HICON);
265 #define ShellAbout WINELIB_NAME_AW(ShellAbout)
267 #include "poppack.h"
269 #endif /* _WINE_SHELLAPI_H */