0
我重建反編譯的Java程序,目前我fixind依賴。最後一次失蹤是sirius.classes.Window
。我無法在任何地方找到它。什麼是sirius.classes.Window,我在哪裏可以得到它?
我試圖search it (with quotes)導致一個結果:
這是非常文件我已經反編譯的分析。
那是什麼?它似乎提供了一些Windows API。示例用法:
//In property definition
Window window = new Window();
User32 user32 = window.getUser32();
Kernel32 kernel = window.getKernel32();
//More methods:
window.FindWindow("string");
window.isRunning("process name.exe");
window.getRect(hwndId); //hwndId is also used in winapi, only as a handle instead of integer
//I'm not sure what the cid is
window.pixelCheck(cid, rgb, (int)x, (int)y, tolerance);
//The WinDef.RECT comes from com.sun.jna.platform.win32.WinDef (https://github.com/twall/jna)
WinDef.RECT cRec = this.window.getRect(cid);
這個類實際上提供了最重要的功能,所以我不能省略它。