summaryrefslogtreecommitdiff
path: root/ext/win32ole/win32ole.h
diff options
context:
space:
mode:
authorsuke <suke@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2014-08-11 11:50:17 +0000
committersuke <suke@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2014-08-11 11:50:17 +0000
commit0aa9e15ea069322cd2f880a75f5807cf0e6ecbfd (patch)
tree9ea0d9b2085fa94a0145e6fd7cade731d7bde016 /ext/win32ole/win32ole.h
parent4ce3e118e776646b07eaba827b3bdf4c4f5a32d6 (diff)
* ext/win32ole/win32ole.c: seperate WIN32OLE_VARIABLE src from
win32ole.c * ext/win32ole/win32ole.h: ditto. * ext/win32ole/win32ole_variable.c: ditto. * ext/win32ole/win32ole_variable.h: ditto. * ext/win32ole/depend: ditto. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@47135 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ext/win32ole/win32ole.h')
-rw-r--r--ext/win32ole/win32ole.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/ext/win32ole/win32ole.h b/ext/win32ole/win32ole.h
index 8bd704a641..2a5af705af 100644
--- a/ext/win32ole/win32ole.h
+++ b/ext/win32ole/win32ole.h
@@ -97,7 +97,6 @@
#define OLE_RELEASE_TYPEATTR(X, Y) ((X)->lpVtbl->ReleaseTypeAttr((X), (Y)))
VALUE cWIN32OLE;
-VALUE cWIN32OLE_VARIABLE;
LCID cWIN32OLE_lcid;
@@ -119,12 +118,13 @@ HRESULT ole_docinfo_from_type(ITypeInfo *pTypeInfo, BSTR *name, BSTR *helpstr, D
VALUE ole_typedesc2val(ITypeInfo *pTypeInfo, TYPEDESC *pTypeDesc, VALUE typedetails);
VALUE ole_typelib_from_itypeinfo(ITypeInfo *pTypeInfo);
VALUE ole_type_from_itypeinfo(ITypeInfo *pTypeInfo);
-
-VALUE create_win32ole_variable(ITypeInfo *pTypeInfo, UINT index, VALUE name);
+VALUE make_inspect(const char *class_name, VALUE detail);
+VALUE ole_variant2val(VARIANT *pvar);
#include "win32ole_variant_m.h"
#include "win32ole_typelib.h"
#include "win32ole_type.h"
+#include "win32ole_variable.h"
#include "win32ole_error.h"
#endif