mirror of
https://github.com/xiaoyifang/goldendict-ng.git
synced 2024-11-23 20:14:05 +00:00
15 lines
306 B
C
15 lines
306 B
C
#ifndef _TextOutSpy_H_
|
|
#define _TextOutSpy_H_
|
|
|
|
#if BUILDING_DLL
|
|
# define DLLIMPORT __declspec (dllexport)
|
|
#else /* Not BUILDING_DLL */
|
|
# define DLLIMPORT __declspec (dllimport)
|
|
#endif /* Not BUILDING_DLL */
|
|
|
|
|
|
DLLIMPORT void ActivateTextOutSpying (int Activate);
|
|
|
|
|
|
#endif /* _TextOutSpy_H_ */
|