Changeset 7822 for trunk/include/win/shell.h
- Timestamp:
- Feb 7, 2002, 12:54:01 AM (24 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/win/shell.h
r7510 r7822 84 84 */ 85 85 86 #ifdef __WIN32OS2__ 87 /**************************************************************************** 88 * STRRET 89 */ 90 #define STRRET_WSTR 0x0000 91 #define STRRET_OFFSETA 0x0001 92 #define STRRET_CSTRA 0x0002 93 #define STRRET_ASTR 0X0003 94 #define STRRET_OFFSETW 0X0004 95 #define STRRET_CSTRW 0X0005 96 97 98 typedef struct _STRRET 99 { UINT uType; /* STRRET_xxx */ 100 union 101 { 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 #endif 109 86 110 #ifdef __cplusplus 87 111 } /* extern "C" */
Note:
See TracChangeset
for help on using the changeset viewer.