Changeset 21512 for trunk/include
- Timestamp:
- Dec 6, 2010, 5:24:51 PM (15 years ago)
- Location:
- trunk/include/win
- Files:
-
- 1 added
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/win/shell.h
r7822 r21512 84 84 */ 85 85 86 #ifdef __WIN32OS2__87 /****************************************************************************88 * STRRET89 */90 #define STRRET_WSTR 0x000091 #define STRRET_OFFSETA 0x000192 #define STRRET_CSTRA 0x000293 #define STRRET_ASTR 0X000394 #define STRRET_OFFSETW 0X000495 #define STRRET_CSTRW 0X000596 97 98 typedef struct _STRRET99 { UINT uType; /* STRRET_xxx */100 union101 { LPWSTR pOleStr; /* OLESTR that will be freed */102 LPSTR pStr;103 UINT uOffset; /* OffsetINT32o SHITEMID (ANSI) */104 char cStr[MAX_PATH]; /* Buffer to fill in */105 WCHAR cStrW[MAX_PATH];106 }u;107 } STRRET,*LPSTRRET;108 #endif109 110 86 #ifdef __cplusplus 111 87 } /* extern "C" */ -
trunk/include/win/shlobj.h
r21508 r21512 23 23 #include "prsht.h" 24 24 #include "shlguid.h" 25 #include "shtypes.h" 25 26 26 27 #ifdef __cplusplus -
trunk/include/win/shlwapi.h
r8585 r21512 9 9 #include <winuser.h> 10 10 #include <shell.h> 11 #include <shtypes.h> 11 12 12 13 #ifdef __cplusplus -
trunk/include/win/wine/obj_shellfolder.h
r7823 r21512 13 13 #include "wine/obj_oleaut.h" 14 14 #include "winbase.h" 15 #include "sh ell.h"15 #include "shtypes.h" 16 16 17 17 #ifdef __cplusplus 18 18 extern "C" { 19 19 #endif /* defined(__cplusplus) */ 20 21 #ifndef __WIN32OS2__22 /****************************************************************************23 * STRRET24 */25 #define STRRET_WSTR 0x000026 #define STRRET_OFFSETA 0x000127 #define STRRET_CSTRA 0x000228 #define STRRET_ASTR 0X000329 #define STRRET_OFFSETW 0X000430 #define STRRET_CSTRW 0X000531 32 33 typedef struct _STRRET34 { UINT uType; /* STRRET_xxx */35 union36 { LPWSTR pOleStr; /* OLESTR that will be freed */37 LPSTR pStr;38 UINT uOffset; /* OffsetINT32o SHITEMID (ANSI) */39 char cStr[MAX_PATH]; /* Buffer to fill in */40 WCHAR cStrW[MAX_PATH];41 }u;42 } STRRET,*LPSTRRET;43 #endif44 20 45 21 /*****************************************************************************
Note:
See TracChangeset
for help on using the changeset viewer.