mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
8930a4257d
* ext/win32ole/win32ole_error.h: ditto. * ext/win32ole/win32ole.c(typeinfo_from_ole): raise WIN32OLEQueryInterfaceError in ole_methods. * ext/win32ole/win32ole_method.c(ole_methods_from_typeinfo): ditto. M ext/win32ole/win32ole.c M ext/win32ole/win32ole_error.c M ext/win32ole/win32ole_error.h M ext/win32ole/win32ole_method.c git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@60657 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
9 lines
248 B
C
9 lines
248 B
C
#ifndef WIN32OLE_ERROR_H
|
|
#define WIN32OLE_ERROR_H 1
|
|
|
|
VALUE eWIN32OLERuntimeError;
|
|
VALUE eWIN32OLEQueryInterfaceError;
|
|
NORETURN(PRINTF_ARGS(void ole_raise(HRESULT hr, VALUE ecs, const char *fmt, ...), 3, 4));
|
|
void Init_win32ole_error(void);
|
|
|
|
#endif
|