Changeset 11388
- Timestamp:
- Sep 2, 1999, 12:51:14 PM (26 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified tags/trunk/include/win/shlobj.h ¶
r10645 r11388 1 /* $Id: shlobj.h,v 1. 1 1999-05-24 20:19:19 ktkExp $ */1 /* $Id: shlobj.h,v 1.2 1999-09-02 10:51:14 phaller Exp $ */ 2 2 3 3 #ifndef __WINE_SHLOBJ_H … … 131 131 #define SEE_MASK_HMONITOR 0x00200000 132 132 133 /************************************* 134 * code that is shared with shlobj.h * 135 *************************************/ 136 137 #ifndef _WINE_SHELLAPI_H 138 133 139 typedef struct _SHELLEXECUTEINFOA 134 140 { DWORD cbSize; … … 146 152 HKEY hkeyClass; 147 153 DWORD dwHotKey; 148 union 154 union 149 155 { HANDLE hIcon; 150 156 HANDLE hMonitor; … … 178 184 #define LPSHELLEXECUTEINFO WINELIB_NAME_AW(LPSHELLEXECUTEINFO) 179 185 186 #endif /* __WINE_SHELLAPI_H */ 187 188 180 189 BOOL WINAPI ShellExecuteExA(LPSHELLEXECUTEINFOA lpExecInfo); 181 190 BOOL WINAPI ShellExecuteExW(LPSHELLEXECUTEINFOW lpExecInfo); … … 213 222 LPARAM lParam; 214 223 INT iImage; 215 } BROWSEINFOW, *PBROWSEINFOW, *LPBROWSEINFOW; 224 } BROWSEINFOW, *PBROWSEINFOW, *LPBROWSEINFOW; 216 225 217 226 #define BROWSEINFO WINELIB_NAME_AW(BROWSEINFO) … … 226 235 #define BIF_EDITBOX 0x0010 227 236 #define BIF_VALIDATE 0x0020 228 237 229 238 #define BIF_BROWSEFORCOMPUTER 0x1000 230 239 #define BIF_BROWSEFORPRINTER 0x2000 … … 256 265 #define BFFM_SETSELECTION BFFM_SETSELECTIONA 257 266 258 #define BFFM_VALIDATEFAILED BFFM_VALIDATEFAILEDA 259 #endif 267 #define BFFM_VALIDATEFAILED BFFM_VALIDATEFAILEDA 268 #endif 260 269 */ 261 270 … … 289 298 #define SHDID_NET_OTHER 17 290 299 291 typedef struct _SHDESCRIPTIONID 300 typedef struct _SHDESCRIPTIONID 292 301 { DWORD dwDescriptionId; 293 302 CLSID clsid; … … 296 305 HRESULT WINAPI SHGetDataFromIDListA(LPSHELLFOLDER psf, LPCITEMIDLIST pidl, int nFormat, LPVOID pv, int cb); 297 306 HRESULT WINAPI SHGetDataFromIDListW(LPSHELLFOLDER psf, LPCITEMIDLIST pidl, int nFormat, LPVOID pv, int cb); 298 #define SHGetDataFromIDList WINELIB_NAME_AW(SHGetDataFromIDList) 299 307 BOOL WINAPI SHGetSpecialFolderPathA (HWND hwndOwner,LPSTR szPath,DWORD csidl,BOOL bCreate); 300 308 301 309 /**************************************************************************** … … 309 317 * are happening to the shellview (and ask for things too). 310 318 * 311 * You don't have to support anything here - anything you don't want to 319 * You don't have to support anything here - anything you don't want to 312 320 * handle, the shell will do itself if you just return E_NOTIMPL. This parameters 313 321 * that the shell passes to this function are entirely undocumented.
Note:
See TracChangeset
for help on using the changeset viewer.