易语言调用GetCursorPos这个函数怎么写添加dll的内容
一、易语言 调用 GetCursorPos 这个函数 怎么写添加dll的内容?
BOOL
WINAPI
GetCursorPos(
LPPOINT lpPoint);
typedef struct tagPOINT __RPC_FAR *LPPOINT;
typedef struct _POINTL
{
LONG x;
LONG y;
} POINTL;

二、易语言如何完全加载dll文件并添加新的内容?
dll都是已经编译好的逆向工程才能取出函数
三、易语言 调用 GetCursorPos 这个函数 怎么写添加dll的内容?
BOOLWINAPIGetCursorPos( LPPOINT lpPoint);typedef POINT __RPC_FAR *LPPOINT;typedef struct _POINTL { LONG x; LONG y; } POINTL;