mirror of
https://github.com/xiaoyifang/goldendict-ng.git
synced 2024-11-24 08:34:08 +00:00
20 lines
329 B
C
20 lines
329 B
C
|
#ifndef __GetWordByIAccEx_H_DEFINED_
|
||
|
#define __GetWordByIAccEx_H_DEFINED_
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
extern "C" {
|
||
|
#endif
|
||
|
|
||
|
typedef BOOL (*GetPhysicalCursorPosFunc)(LPPOINT);
|
||
|
extern GetPhysicalCursorPosFunc getPhysicalCursorPosFunc;
|
||
|
|
||
|
BOOL FindGetPhysicalCursorPos();
|
||
|
|
||
|
BOOL getWordByAccEx( POINT pt );
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
}
|
||
|
#endif
|
||
|
|
||
|
#endif
|