mirror of
https://github.com/xiaoyifang/goldendict-ng.git
synced 2024-11-24 16:54:08 +00:00
a8589b39bf
1. Add search word under cursor through IAccessibleEx interface and UI Automation technology. 2. Reorganize GoldenDict main program and scan libraries interaction to reduce influence to other programs. 3. Fix crash in scan libraries in IE9 protected mode.
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
|