Changeset 640 for trunk/include/win/wine/obj_shellfolder.h
- Timestamp:
- Aug 23, 1999, 12:52:05 AM (26 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/win/wine/obj_shellfolder.h
r94 r640 1 /* $Id: obj_shellfolder.h,v 1.3 1999-06-10 16:21:56 achimha Exp $ */2 1 /* 3 2 * Defines the COM interfaces and APIs related to IShellFolder … … 14 13 #include "winbase.h" 15 14 #include "shell.h" 15 16 #ifdef __cplusplus 17 extern "C" { 18 #endif /* defined(__cplusplus) */ 16 19 17 20 /**************************************************************************** … … 80 83 #define SFGAO_READONLY 0x00040000L /* read-only */ 81 84 #define SFGAO_GHOSTED 0x00080000L /* ghosted icon */ 85 #define SFGAO_HIDDEN 0x00080000L /* hidden object */ 82 86 #define SFGAO_DISPLAYATTRMASK 0x000F0000L 83 87 #define SFGAO_FILESYSANCESTOR 0x10000000L /* It contains file system folder */ … … 88 92 #define SFGAO_VALIDATE 0x01000000L /* invalidate cached information */ 89 93 #define SFGAO_REMOVABLE 0x02000000L /* is this removeable media? */ 94 #define SFGAO_BROWSABLE 0x08000000L /* is in-place browsable */ 95 #define SFGAO_NONENUMERATED 0x00100000L /* is a non-enumerated object */ 96 #define SFGAO_NEWCONTENT 0x00200000L /* should show bold in explorer tree */ 90 97 91 98 /************************************************************************ … … 180 187 * IPersistFolder interface 181 188 */ 189 190 DEFINE_GUID (CLSID_SFMyComp,0x20D04FE0,0x3AEA,0x1069,0xA2,0xD8,0x08,0x00,0x2B,0x30,0x30,0x9D); 191 DEFINE_GUID (CLSID_SFINet, 0x871C5380,0x42A0,0x1069,0xA2,0xEA,0x08,0x00,0x2B,0x30,0x30,0x9D); 192 DEFINE_GUID (CLSID_SFFile, 0xF3364BA0,0x65B9,0x11CE,0xA9,0xBA,0x00,0xAA,0x00,0x4A,0xE8,0x37); 193 182 194 #define ICOM_INTERFACE IPersistFolder 183 195 #define IPersistFolder_METHODS \ … … 200 212 #endif 201 213 214 #ifdef __cplusplus 215 } /* extern "C" */ 216 #endif /* defined(__cplusplus) */ 202 217 203 218 #endif /* __WINE_WINE_OBJ_SHELLLINK_H */
Note:
See TracChangeset
for help on using the changeset viewer.