mirror of
https://github.com/go-vgo/robotgo
synced 2026-05-23 09:48:59 +00:00
add Is64Bit() c function
This commit is contained in:
parent
2251b4a063
commit
f7c0fa2441
1 changed files with 8 additions and 0 deletions
|
|
@ -49,6 +49,14 @@ void initWindow(uintptr handle){
|
|||
setHandle(handle);
|
||||
}
|
||||
|
||||
bool Is64Bit() {
|
||||
#ifdef RobotGo_64
|
||||
return true;
|
||||
#endif
|
||||
|
||||
return false;
|
||||
}
|
||||
|
||||
MData set_handle_pid(uintptr pid, uintptr isHwnd){
|
||||
MData win;
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue