我知道autohotkey是开源软件。但我需要'autohotkeysc.bin'的源代码 我怎么能得到它?或者有没有人有exe2ahk.exe(autohotkey反编译器)源代码?
this is junk code
// Copy our sc.bin file to the destination
if ( (fbin = fopen(m_szAutoItSC, "rb")) == NULL)
{
SetCursor(LoadCursor(NULL, IDC_ARROW)); // Reset cursor
Util_ShowErrorIDS(IDS_E_READSCBIN);
return false;
}
// Open the dest file (overwrite if required)
if ( (fdest = fopen(szDest, "w+b")) == NULL )
{
SetCursor(LoadCursor(NULL, IDC_ARROW)); // Reset cursor
fclose(fbin);
Util_ShowErrorIDS(IDS_E_WRITEDEST);
return false;
}
// Copy the bin file to the destination then close the bin file
while ( fread(&ch, 1, 1, fbin) != 0)
fwrite(&ch, 1, 1, fdest);
fclose(fbin); // Close sc.bin
fclose(fdest); // Close destination
答案 0 :(得分:1)
AutoHotkey_L的所有源代码都在GitHub。
AutoHotkeySC.bin是在编译AutoHotkey.exe之后生成的。该过程由this script完成。