Home | Info | Community | Development | myReactOS | Contact Us
ReactOS Development > Doxygenitss.idl
Go to the documentation of this file.
00001 /* 00002 * Copyright (C) 2004 Mike McCormack 00003 * 00004 * This library is free software; you can redistribute it and/or 00005 * modify it under the terms of the GNU Lesser General Public 00006 * License as published by the Free Software Foundation; either 00007 * version 2.1 of the License, or (at your option) any later version. 00008 * 00009 * This library is distributed in the hope that it will be useful, 00010 * but WITHOUT ANY WARRANTY; without even the implied warranty of 00011 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 00012 * Lesser General Public License for more details. 00013 * 00014 * You should have received a copy of the GNU Lesser General Public 00015 * License along with this library; if not, write to the Free Software 00016 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA 00017 */ 00018 00019 import "oaidl.idl"; 00020 00021 typedef struct _ITS_Control_Data 00022 { 00023 UINT cdwControlData; 00024 UINT adwControlData[1]; 00025 00026 } ITS_Control_Data, *PITS_Control_Data; 00027 00028 typedef enum ECompactionLev { 00029 COMPACT_DATA = 0, 00030 COMPACT_DATA_AND_PATH 00031 } ECompactionLev; 00032 00033 [ 00034 object, 00035 uuid(88cc31de-27ab-11d0-9df9-00a0c922e6ec), 00036 pointer_default(unique) 00037 ] 00038 interface IITStorage : IUnknown 00039 { 00040 HRESULT StgCreateDocfile( 00041 [in] const WCHAR * pwcsName, 00042 [in] DWORD grfMode, 00043 [in] DWORD reserved, 00044 [out] IStorage ** ppstgOpen); 00045 00046 HRESULT StgCreateDocfileOnILockBytes( 00047 [in] ILockBytes * plkbyt, 00048 [in] DWORD grfMode, 00049 [in] DWORD reserved, 00050 [out] IStorage ** ppstgOpen); 00051 00052 00053 HRESULT StgIsStorageFile( 00054 [in] const WCHAR * pwcsName); 00055 00056 HRESULT StgIsStorageILockBytes( 00057 [in] ILockBytes * plkbyt); 00058 00059 HRESULT StgOpenStorage( 00060 [in] const WCHAR * pwcsName, 00061 [in] IStorage * pstgPriority, 00062 [in] DWORD grfMode, 00063 [in] SNB snbExclude, 00064 [in] DWORD reserved, 00065 [out] IStorage ** ppstgOpen); 00066 00067 HRESULT StgOpenStorageOnILockBytes( 00068 [in] ILockBytes * plkbyt, 00069 [in] IStorage * pStgPriority, 00070 [in] DWORD grfMode, 00071 [in] SNB snbExclude, 00072 [in] DWORD reserved, 00073 [out] IStorage ** ppstgOpen); 00074 00075 HRESULT StgSetTimes( 00076 [in] WCHAR const * lpszName, 00077 [in] FILETIME const * pctime, 00078 [in] FILETIME const * patime, 00079 [in] FILETIME const * pmtime); 00080 00081 HRESULT SetControlData( 00082 [in] PITS_Control_Data pControlData); 00083 00084 HRESULT DefaultControlData( 00085 [out] PITS_Control_Data * ppControlData); 00086 00087 HRESULT Compact( 00088 [in] const WCHAR * pwcsName, 00089 [in] ECompactionLev iLev); 00090 } 00091 00092 cpp_quote("DEFINE_GUID(CLSID_ITStorage,0x5d02926a,0x212e,0x11d0,0x9d,0xf9,0x00,0xa0,0xc9,0x22,0xe6,0xec);") 00093 cpp_quote("DEFINE_GUID(CLSID_MSFSStore,0xd54eee56,0xaaab,0x11d0,0x9e,0x1d,0x00,0xa0,0xc9,0x22,0xe6,0xec);") 00094 cpp_quote("DEFINE_GUID(CLSID_MSITStore,0x9d148290,0xb9c8,0x11d0,0xa4,0xcc,0x00,0x00,0xf8,0x01,0x49,0xf6);") 00095 cpp_quote("DEFINE_GUID(CLSID_ITSProtocol,0x9d148291,0xb9c8,0x11d0,0xa4,0xcc,0x00,0x00,0xf8,0x01,0x49,0xf6);") Generated on Fri May 25 2012 04:22:10 for ReactOS by
1.7.6.1
|