goldendict-ng/mouseover_win32/GetWordByIAccEx.h
Abs62 a8589b39bf Improvements in scan popup functionality.
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.
2011-07-09 23:26:30 +04:00

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