mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
aeb8791dab
into win32ole_type.c / win32ole_method.c * ext/win32ole/win32ole.h: ditto. * ext/win32ole/win32ole_method.c: ditto. * ext/win32ole/win32ole_method.h: ditto. * ext/win32ole/win32ole_type.h: ditto. * ext/win32ole/win32ole_type.h: ditto. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@47155 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
15 lines
386 B
C
15 lines
386 B
C
#ifndef WIN32OLE_METHOD_H
|
|
#define WIN32OLE_METHOD_H 1
|
|
|
|
struct olemethoddata {
|
|
ITypeInfo *pOwnerTypeInfo;
|
|
ITypeInfo *pTypeInfo;
|
|
UINT index;
|
|
};
|
|
|
|
VALUE cWIN32OLE_METHOD;
|
|
VALUE folemethod_s_allocate(VALUE klass);
|
|
VALUE ole_methods_from_typeinfo(ITypeInfo *pTypeInfo, int mask);
|
|
VALUE create_win32ole_method(ITypeInfo *pTypeInfo, VALUE name);
|
|
void Init_win32ole_method();
|
|
#endif
|