/usr/include/wine/windows/mimeinfo.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 | /*** Autogenerated by WIDL 1.4 from mimeinfo.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_MIMEINFO_H
#define __WIDL_MIMEINFO_H
/* Forward declarations */
#ifndef __IMimeInfo_FWD_DEFINED__
#define __IMimeInfo_FWD_DEFINED__
typedef interface IMimeInfo IMimeInfo;
#endif
/* Headers for imported files */
#include <objidl.h>
#ifdef __cplusplus
extern "C" {
#endif
/*****************************************************************************
* IMimeInfo interface
*/
#ifndef __IMimeInfo_INTERFACE_DEFINED__
#define __IMimeInfo_INTERFACE_DEFINED__
typedef IMimeInfo *LPMIMEINFO;
DEFINE_GUID(IID_IMimeInfo, 0xf77459a0, 0xbf9a, 0x11cf, 0xba,0x4e, 0x00,0xc0,0x4f,0xd7,0x08,0x16);
#if defined(__cplusplus) && !defined(CINTERFACE)
MIDL_INTERFACE("f77459a0-bf9a-11cf-ba4e-00c04fd70816")
IMimeInfo : public IUnknown
{
virtual HRESULT STDMETHODCALLTYPE GetMimeCLSIDMapping(
UINT *pcTypes,
LPCSTR **ppszTypes,
CLSID **ppclsID) = 0;
};
#ifdef __CRT_UUID_DECL
__CRT_UUID_DECL(IMimeInfo, 0xf77459a0, 0xbf9a, 0x11cf, 0xba,0x4e, 0x00,0xc0,0x4f,0xd7,0x08,0x16)
#endif
#else
typedef struct IMimeInfoVtbl {
BEGIN_INTERFACE
/*** IUnknown methods ***/
HRESULT (STDMETHODCALLTYPE *QueryInterface)(
IMimeInfo* This,
REFIID riid,
void **ppvObject);
ULONG (STDMETHODCALLTYPE *AddRef)(
IMimeInfo* This);
ULONG (STDMETHODCALLTYPE *Release)(
IMimeInfo* This);
/*** IMimeInfo methods ***/
HRESULT (STDMETHODCALLTYPE *GetMimeCLSIDMapping)(
IMimeInfo* This,
UINT *pcTypes,
LPCSTR **ppszTypes,
CLSID **ppclsID);
END_INTERFACE
} IMimeInfoVtbl;
interface IMimeInfo {
CONST_VTBL IMimeInfoVtbl* lpVtbl;
};
#ifdef COBJMACROS
/*** IUnknown methods ***/
#define IMimeInfo_QueryInterface(This,riid,ppvObject) (This)->lpVtbl->QueryInterface(This,riid,ppvObject)
#define IMimeInfo_AddRef(This) (This)->lpVtbl->AddRef(This)
#define IMimeInfo_Release(This) (This)->lpVtbl->Release(This)
/*** IMimeInfo methods ***/
#define IMimeInfo_GetMimeCLSIDMapping(This,pcTypes,ppszTypes,ppclsID) (This)->lpVtbl->GetMimeCLSIDMapping(This,pcTypes,ppszTypes,ppclsID)
#endif
#endif
HRESULT STDMETHODCALLTYPE IMimeInfo_GetMimeCLSIDMapping_Proxy(
IMimeInfo* This,
UINT *pcTypes,
LPCSTR **ppszTypes,
CLSID **ppclsID);
void __RPC_STUB IMimeInfo_GetMimeCLSIDMapping_Stub(
IRpcStubBuffer* This,
IRpcChannelBuffer* pRpcChannelBuffer,
PRPC_MESSAGE pRpcMessage,
DWORD* pdwStubPhase);
#endif /* __IMimeInfo_INTERFACE_DEFINED__ */
#define SID_IMimeInfo IID_IMimeInfo
/* Begin additional prototypes for all interfaces */
/* End additional prototypes */
#ifdef __cplusplus
}
#endif
#endif /* __WIDL_MIMEINFO_H */
|