Ignore:
Timestamp:
Dec 6, 2010, 5:24:51 PM (15 years ago)
Author:
dmik
Message:

Aligned the STRRET definition and made it available through shlwapi.h and shlobj.h for compatibility with Win32.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/include/win/shell.h

    r7822 r21512  
    8484*/
    8585
    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 
    11086#ifdef __cplusplus
    11187} /* extern "C" */
Note: See TracChangeset for help on using the changeset viewer.