mirror of https://github.com/bsnes-emu/bsnes.git
Fix visibility of a few functions in the QuickLook plug-in.
This commit is contained in:
parent
29a3b18186
commit
e4c7333a1a
|
@ -1,3 +1 @@
|
||||||
_DeallocQuickLookGeneratorPluginType
|
|
||||||
_QuickLookGeneratorQueryInterface
|
|
||||||
_QuickLookGeneratorPluginFactory
|
_QuickLookGeneratorPluginFactory
|
||||||
|
|
|
@ -41,12 +41,12 @@ typedef struct __QuickLookGeneratorPluginType
|
||||||
// Forward declaration for the IUnknown implementation.
|
// Forward declaration for the IUnknown implementation.
|
||||||
//
|
//
|
||||||
|
|
||||||
QuickLookGeneratorPluginType *AllocQuickLookGeneratorPluginType(CFUUIDRef inFactoryID);
|
static QuickLookGeneratorPluginType *AllocQuickLookGeneratorPluginType(CFUUIDRef inFactoryID);
|
||||||
void DeallocQuickLookGeneratorPluginType(QuickLookGeneratorPluginType *thisInstance);
|
static void DeallocQuickLookGeneratorPluginType(QuickLookGeneratorPluginType *thisInstance);
|
||||||
HRESULT QuickLookGeneratorQueryInterface(void *thisInstance, REFIID iid, LPVOID *ppv);
|
static HRESULT QuickLookGeneratorQueryInterface(void *thisInstance, REFIID iid, LPVOID *ppv);
|
||||||
void *QuickLookGeneratorPluginFactory(CFAllocatorRef allocator, CFUUIDRef typeID);
|
extern void *QuickLookGeneratorPluginFactory(CFAllocatorRef allocator, CFUUIDRef typeID);
|
||||||
ULONG QuickLookGeneratorPluginAddRef(void *thisInstance);
|
static ULONG QuickLookGeneratorPluginAddRef(void *thisInstance);
|
||||||
ULONG QuickLookGeneratorPluginRelease(void *thisInstance);
|
static ULONG QuickLookGeneratorPluginRelease(void *thisInstance);
|
||||||
|
|
||||||
// -----------------------------------------------------------------------------
|
// -----------------------------------------------------------------------------
|
||||||
// myInterfaceFtbl definition
|
// myInterfaceFtbl definition
|
||||||
|
|
Loading…
Reference in New Issue