/usr/include/wine/windows/winsxs.h is in wine1.4-dev 1.4-0ubuntu4.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 | /*** Autogenerated by WIDL 1.4 from winsxs.idl - Do not edit ***/
#ifndef __REQUIRED_RPCNDR_H_VERSION__
#define __REQUIRED_RPCNDR_H_VERSION__ 475
#endif
#include <rpc.h>
#include <rpcndr.h>
#ifndef COM_NO_WINDOWS_H
#include <windows.h>
#include <ole2.h>
#endif
#ifndef __WIDL_WINSXS_H
#define __WIDL_WINSXS_H
/* Forward declarations */
#ifndef __IAssemblyCache_FWD_DEFINED__
#define __IAssemblyCache_FWD_DEFINED__
typedef interface IAssemblyCache IAssemblyCache;
#endif
#ifndef __IAssemblyCacheItem_FWD_DEFINED__
#define __IAssemblyCacheItem_FWD_DEFINED__
typedef interface IAssemblyCacheItem IAssemblyCacheItem;
#endif
/* Headers for imported files */
#include <objidl.h>
#include <oleidl.h>
#ifdef __cplusplus
extern "C" {
#endif
#ifndef __IAssemblyCache_FWD_DEFINED__
#define __IAssemblyCache_FWD_DEFINED__
typedef interface IAssemblyCache IAssemblyCache;
#endif
#ifndef __IAssemblyCacheItem_FWD_DEFINED__
#define __IAssemblyCacheItem_FWD_DEFINED__
typedef interface IAssemblyCacheItem IAssemblyCacheItem;
#endif
typedef struct _FUSION_INSTALL_REFERENCE_ {
DWORD cbSize;
DWORD dwFlags;
GUID guidScheme;
LPCWSTR szIdentifier;
LPCWSTR szNonCannonicalData;
} FUSION_INSTALL_REFERENCE;
typedef struct _FUSION_INSTALL_REFERENCE_ *LPFUSION_INSTALL_REFERENCE;
typedef struct _ASSEMBLY_INFO {
ULONG cbAssemblyInfo;
DWORD dwAssemblyFlags;
ULARGE_INTEGER uliAssemblySizeInKB;
LPWSTR pszCurrentAssemblyPathBuf;
ULONG cchBuf;
} ASSEMBLY_INFO;
typedef const struct _FUSION_INSTALL_REFERENCE_ *LPCFUSION_INSTALL_REFERENCE;
/*****************************************************************************
* IAssemblyCache interface
*/
#ifndef __IAssemblyCache_INTERFACE_DEFINED__
#define __IAssemblyCache_INTERFACE_DEFINED__
DEFINE_GUID(IID_IAssemblyCache, 0xe707dcde, 0xd1cd, 0x11d2, 0xba,0xb9, 0x00,0xc0,0x4f,0x8e,0xce,0xae);
#if defined(__cplusplus) && !defined(CINTERFACE)
MIDL_INTERFACE("e707dcde-d1cd-11d2-bab9-00c04f8eceae")
IAssemblyCache : public IUnknown
{
virtual HRESULT STDMETHODCALLTYPE UninstallAssembly(
DWORD flags,
LPCWSTR name,
LPCFUSION_INSTALL_REFERENCE ref,
ULONG *disp) = 0;
virtual HRESULT STDMETHODCALLTYPE QueryAssemblyInfo(
DWORD flags,
LPCWSTR name,
ASSEMBLY_INFO *info) = 0;
virtual HRESULT STDMETHODCALLTYPE CreateAssemblyCacheItem(
DWORD flags,
PVOID reserved,
IAssemblyCacheItem **item,
LPCWSTR name) = 0;
virtual HRESULT STDMETHODCALLTYPE Reserved(
IUnknown **reserved) = 0;
virtual HRESULT STDMETHODCALLTYPE InstallAssembly(
DWORD flags,
LPCWSTR path,
LPCFUSION_INSTALL_REFERENCE ref) = 0;
};
#ifdef __CRT_UUID_DECL
__CRT_UUID_DECL(IAssemblyCache, 0xe707dcde, 0xd1cd, 0x11d2, 0xba,0xb9, 0x00,0xc0,0x4f,0x8e,0xce,0xae)
#endif
#else
typedef struct IAssemblyCacheVtbl {
BEGIN_INTERFACE
/*** IUnknown methods ***/
HRESULT (STDMETHODCALLTYPE *QueryInterface)(
IAssemblyCache* This,
REFIID riid,
void **ppvObject);
ULONG (STDMETHODCALLTYPE *AddRef)(
IAssemblyCache* This);
ULONG (STDMETHODCALLTYPE *Release)(
IAssemblyCache* This);
/*** IAssemblyCache methods ***/
HRESULT (STDMETHODCALLTYPE *UninstallAssembly)(
IAssemblyCache* This,
DWORD flags,
LPCWSTR name,
LPCFUSION_INSTALL_REFERENCE ref,
ULONG *disp);
HRESULT (STDMETHODCALLTYPE *QueryAssemblyInfo)(
IAssemblyCache* This,
DWORD flags,
LPCWSTR name,
ASSEMBLY_INFO *info);
HRESULT (STDMETHODCALLTYPE *CreateAssemblyCacheItem)(
IAssemblyCache* This,
DWORD flags,
PVOID reserved,
IAssemblyCacheItem **item,
LPCWSTR name);
HRESULT (STDMETHODCALLTYPE *Reserved)(
IAssemblyCache* This,
IUnknown **reserved);
HRESULT (STDMETHODCALLTYPE *InstallAssembly)(
IAssemblyCache* This,
DWORD flags,
LPCWSTR path,
LPCFUSION_INSTALL_REFERENCE ref);
END_INTERFACE
} IAssemblyCacheVtbl;
interface IAssemblyCache {
CONST_VTBL IAssemblyCacheVtbl* lpVtbl;
};
#ifdef COBJMACROS
/*** IUnknown methods ***/
#define IAssemblyCache_QueryInterface(This,riid,ppvObject) (This)->lpVtbl->QueryInterface(This,riid,ppvObject)
#define IAssemblyCache_AddRef(This) (This)->lpVtbl->AddRef(This)
#define IAssemblyCache_Release(This) (This)->lpVtbl->Release(This)
/*** IAssemblyCache methods ***/
#define IAssemblyCache_UninstallAssembly(This,flags,name,ref,disp) (This)->lpVtbl->UninstallAssembly(This,flags,name,ref,disp)
#define IAssemblyCache_QueryAssemblyInfo(This,flags,name,info) (This)->lpVtbl->QueryAssemblyInfo(This,flags,name,info)
#define IAssemblyCache_CreateAssemblyCacheItem(This,flags,reserved,item,name) (This)->lpVtbl->CreateAssemblyCacheItem(This,flags,reserved,item,name)
#define IAssemblyCache_Reserved(This,reserved) (This)->lpVtbl->Reserved(This,reserved)
#define IAssemblyCache_InstallAssembly(This,flags,path,ref) (This)->lpVtbl->InstallAssembly(This,flags,path,ref)
#endif
#endif
HRESULT STDMETHODCALLTYPE IAssemblyCache_UninstallAssembly_Proxy(
IAssemblyCache* This,
DWORD flags,
LPCWSTR name,
LPCFUSION_INSTALL_REFERENCE ref,
ULONG *disp);
void __RPC_STUB IAssemblyCache_UninstallAssembly_Stub(
IRpcStubBuffer* This,
IRpcChannelBuffer* pRpcChannelBuffer,
PRPC_MESSAGE pRpcMessage,
DWORD* pdwStubPhase);
HRESULT STDMETHODCALLTYPE IAssemblyCache_QueryAssemblyInfo_Proxy(
IAssemblyCache* This,
DWORD flags,
LPCWSTR name,
ASSEMBLY_INFO *info);
void __RPC_STUB IAssemblyCache_QueryAssemblyInfo_Stub(
IRpcStubBuffer* This,
IRpcChannelBuffer* pRpcChannelBuffer,
PRPC_MESSAGE pRpcMessage,
DWORD* pdwStubPhase);
HRESULT STDMETHODCALLTYPE IAssemblyCache_CreateAssemblyCacheItem_Proxy(
IAssemblyCache* This,
DWORD flags,
PVOID reserved,
IAssemblyCacheItem **item,
LPCWSTR name);
void __RPC_STUB IAssemblyCache_CreateAssemblyCacheItem_Stub(
IRpcStubBuffer* This,
IRpcChannelBuffer* pRpcChannelBuffer,
PRPC_MESSAGE pRpcMessage,
DWORD* pdwStubPhase);
HRESULT STDMETHODCALLTYPE IAssemblyCache_Reserved_Proxy(
IAssemblyCache* This,
IUnknown **reserved);
void __RPC_STUB IAssemblyCache_Reserved_Stub(
IRpcStubBuffer* This,
IRpcChannelBuffer* pRpcChannelBuffer,
PRPC_MESSAGE pRpcMessage,
DWORD* pdwStubPhase);
HRESULT STDMETHODCALLTYPE IAssemblyCache_InstallAssembly_Proxy(
IAssemblyCache* This,
DWORD flags,
LPCWSTR path,
LPCFUSION_INSTALL_REFERENCE ref);
void __RPC_STUB IAssemblyCache_InstallAssembly_Stub(
IRpcStubBuffer* This,
IRpcChannelBuffer* pRpcChannelBuffer,
PRPC_MESSAGE pRpcMessage,
DWORD* pdwStubPhase);
#endif /* __IAssemblyCache_INTERFACE_DEFINED__ */
/*****************************************************************************
* IAssemblyCacheItem interface
*/
#ifndef __IAssemblyCacheItem_INTERFACE_DEFINED__
#define __IAssemblyCacheItem_INTERFACE_DEFINED__
DEFINE_GUID(IID_IAssemblyCacheItem, 0x9e3aaeb4, 0xd1cd, 0x11d2, 0xba,0xb9, 0x00,0xc0,0x4f,0x8e,0xce,0xae);
#if defined(__cplusplus) && !defined(CINTERFACE)
MIDL_INTERFACE("9e3aaeb4-d1cd-11d2-bab9-00c04f8eceae")
IAssemblyCacheItem : public IUnknown
{
virtual HRESULT STDMETHODCALLTYPE CreateStream(
DWORD flags,
LPCWSTR name,
DWORD format,
DWORD format_flags,
IStream **stream,
ULARGE_INTEGER *max_size) = 0;
virtual HRESULT STDMETHODCALLTYPE Commit(
DWORD flags,
ULONG *disp) = 0;
virtual HRESULT STDMETHODCALLTYPE AbortItem(
) = 0;
};
#ifdef __CRT_UUID_DECL
__CRT_UUID_DECL(IAssemblyCacheItem, 0x9e3aaeb4, 0xd1cd, 0x11d2, 0xba,0xb9, 0x00,0xc0,0x4f,0x8e,0xce,0xae)
#endif
#else
typedef struct IAssemblyCacheItemVtbl {
BEGIN_INTERFACE
/*** IUnknown methods ***/
HRESULT (STDMETHODCALLTYPE *QueryInterface)(
IAssemblyCacheItem* This,
REFIID riid,
void **ppvObject);
ULONG (STDMETHODCALLTYPE *AddRef)(
IAssemblyCacheItem* This);
ULONG (STDMETHODCALLTYPE *Release)(
IAssemblyCacheItem* This);
/*** IAssemblyCacheItem methods ***/
HRESULT (STDMETHODCALLTYPE *CreateStream)(
IAssemblyCacheItem* This,
DWORD flags,
LPCWSTR name,
DWORD format,
DWORD format_flags,
IStream **stream,
ULARGE_INTEGER *max_size);
HRESULT (STDMETHODCALLTYPE *Commit)(
IAssemblyCacheItem* This,
DWORD flags,
ULONG *disp);
HRESULT (STDMETHODCALLTYPE *AbortItem)(
IAssemblyCacheItem* This);
END_INTERFACE
} IAssemblyCacheItemVtbl;
interface IAssemblyCacheItem {
CONST_VTBL IAssemblyCacheItemVtbl* lpVtbl;
};
#ifdef COBJMACROS
/*** IUnknown methods ***/
#define IAssemblyCacheItem_QueryInterface(This,riid,ppvObject) (This)->lpVtbl->QueryInterface(This,riid,ppvObject)
#define IAssemblyCacheItem_AddRef(This) (This)->lpVtbl->AddRef(This)
#define IAssemblyCacheItem_Release(This) (This)->lpVtbl->Release(This)
/*** IAssemblyCacheItem methods ***/
#define IAssemblyCacheItem_CreateStream(This,flags,name,format,format_flags,stream,max_size) (This)->lpVtbl->CreateStream(This,flags,name,format,format_flags,stream,max_size)
#define IAssemblyCacheItem_Commit(This,flags,disp) (This)->lpVtbl->Commit(This,flags,disp)
#define IAssemblyCacheItem_AbortItem(This) (This)->lpVtbl->AbortItem(This)
#endif
#endif
HRESULT STDMETHODCALLTYPE IAssemblyCacheItem_CreateStream_Proxy(
IAssemblyCacheItem* This,
DWORD flags,
LPCWSTR name,
DWORD format,
DWORD format_flags,
IStream **stream,
ULARGE_INTEGER *max_size);
void __RPC_STUB IAssemblyCacheItem_CreateStream_Stub(
IRpcStubBuffer* This,
IRpcChannelBuffer* pRpcChannelBuffer,
PRPC_MESSAGE pRpcMessage,
DWORD* pdwStubPhase);
HRESULT STDMETHODCALLTYPE IAssemblyCacheItem_Commit_Proxy(
IAssemblyCacheItem* This,
DWORD flags,
ULONG *disp);
void __RPC_STUB IAssemblyCacheItem_Commit_Stub(
IRpcStubBuffer* This,
IRpcChannelBuffer* pRpcChannelBuffer,
PRPC_MESSAGE pRpcMessage,
DWORD* pdwStubPhase);
HRESULT STDMETHODCALLTYPE IAssemblyCacheItem_AbortItem_Proxy(
IAssemblyCacheItem* This);
void __RPC_STUB IAssemblyCacheItem_AbortItem_Stub(
IRpcStubBuffer* This,
IRpcChannelBuffer* pRpcChannelBuffer,
PRPC_MESSAGE pRpcMessage,
DWORD* pdwStubPhase);
#endif /* __IAssemblyCacheItem_INTERFACE_DEFINED__ */
HRESULT WINAPI CreateAssemblyCache(IAssemblyCache**,DWORD);
/* Begin additional prototypes for all interfaces */
/* End additional prototypes */
#ifdef __cplusplus
}
#endif
#endif /* __WIDL_WINSXS_H */
|