blob: a2f329856f1dac55a981246f12ede47c6b5d529b (
plain)
1
2
3
4
5
6
7
8
9
|
#ifndef WIN32OLE_ERROR_H
#define WIN32OLE_ERROR_H 1
extern VALUE eWIN32OLERuntimeError;
extern VALUE eWIN32OLEQueryInterfaceError;
NORETURN(PRINTF_ARGS(void ole_raise(HRESULT hr, VALUE ecs, const char *fmt, ...), 3, 4));
void Init_win32ole_error(void);
#endif
|