diff loader/com.h @ 1:3b5f5d1c5041

Initial revision
author arpi_esp
date Sat, 24 Feb 2001 20:28:24 +0000
parents
children a1fe76547e8f
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/loader/com.h	Sat Feb 24 20:28:24 2001 +0000
@@ -0,0 +1,66 @@
+/**
+ * Internal functions and structures for COM emulation code.
+ */
+
+#ifndef COM_H
+#define COM_H
+
+#ifdef __cplusplus
+extern "C" {
+#endif
+
+void* CoTaskMemAlloc(unsigned long cb);
+void CoTaskMemFree(void* cb);
+
+typedef struct
+{
+    long f1;
+    short f2;
+    short f3;
+    char f4[8];
+} GUID;
+
+extern GUID IID_IUnknown;
+extern GUID IID_IClassFactory;
+
+typedef long (*GETCLASSOBJECT) (GUID* clsid, GUID* iid, void** ppv);
+int RegisterComClass(GUID* clsid, GETCLASSOBJECT gcs);
+
+#ifndef STDCALL
+#define STDCALL __attribute__((__stdcall__))	
+#endif
+
+struct IUnknown;
+struct IClassFactory;
+struct IUnknown_vt
+{
+    long STDCALL (*QueryInterface)(struct IUnknown* _this, GUID* iid, void** ppv);
+    long STDCALL (*AddRef)(struct IUnknown* _this) ;
+    long STDCALL (*Release)(struct IUnknown* _this) ;
+} ;
+struct IUnknown
+{
+    struct IUnknown_vt* vt;
+};
+
+struct IClassFactory_vt
+{
+    long STDCALL (*QueryInterface)(struct IUnknown* _this, GUID* iid, void** ppv);
+    long STDCALL (*AddRef)(struct IUnknown* _this) ;
+    long STDCALL (*Release)(struct IUnknown* _this) ;
+    long STDCALL (*CreateInstance)(struct IClassFactory* _this, struct IUnknown* pUnkOuter, GUID* riid, void** ppvObject);
+};
+
+struct IClassFactory
+{
+    struct IClassFactory_vt* vt;
+};
+
+long CoCreateInstance(GUID* rclsid, struct IUnknown* pUnkOuter,
+                    long dwClsContext, GUID* riid, void** ppv);
+
+#ifdef __cplusplus
+};
+#endif
+
+#endif
\ No newline at end of file