tahoma2d/toonz/sources/common/twain/ttwain_win.c

23 lines
431 B
C
Raw Normal View History

2016-03-19 06:57:51 +13:00
#include "ttwain_win.h"
#include "ttwain_winPD.h"
#ifdef __cplusplus
extern "C" {
#endif
2016-06-15 18:43:10 +12:00
void *TTWAIN_GetValidHwnd(void *hwnd) { return TTWAIN_GetValidHwndPD(hwnd); }
2016-03-19 06:57:51 +13:00
2016-06-15 18:43:10 +12:00
int TTWAIN_EnableWindow(void *hwnd, int flag) {
return TTWAIN_EnableWindowPD(hwnd, flag);
2016-03-19 06:57:51 +13:00
}
2016-06-15 18:43:10 +12:00
void TTWAIN_EmptyMessageQueue(void) { TTWAIN_EmptyMessageQueuePD(); }
2016-03-19 06:57:51 +13:00
2016-06-15 18:43:10 +12:00
void TTWAIN_ModalEventLoop(void) { TTWAIN_ModalEventLoopPD(); }
2016-03-19 06:57:51 +13:00
#ifdef __cplusplus
}
#endif