add Is64Bit() c function

This commit is contained in:
vcaesar 2019-05-06 10:33:10 -04:00
parent 2251b4a063
commit f7c0fa2441

View File

@ -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;