SpiffyTek
/
SMACheck
Archived
1
0
Fork 0

Changed obfuscator to be less strict (Source is open anyway) and producing a smaller output

This commit is contained in:
MadMakz 2013-02-07 11:33:03 +01:00
parent bf0079adef
commit 1261f67887
2 changed files with 5 additions and 5 deletions

View File

@ -3,7 +3,7 @@
;############################################################################################
#AutoIt3Wrapper_Run_Obfuscator=Y
#obfuscator_parameters=/cs=1 /cn=1 /cf=1 /cv=1 /sf /sv
#obfuscator_parameters=/cs=0 /cn=0 /cf=0 /cv=0 /sf /sv /om
#AutoIt3Wrapper_Res_SaveSource=N
#AutoIt3Wrapper_UseX64=N
#AutoIt3Wrapper_Compile_both=N
@ -14,7 +14,7 @@
;#AutoIt3Wrapper_Res_ProductVersion=x.x.x.x ; Broken, use #AutoIt3Wrapper_Res_Field=ProductVersion|x.x.x as workarround.
#AutoIt3Wrapper_Res_Field=ProductVersion|Freeware
#AutoIt3Wrapper_Res_Fileversion=1.1.2.95
#AutoIt3Wrapper_Res_Fileversion=1.1.2.98
#AutoIt3Wrapper_Res_FileVersion_AutoIncrement=N ;(Y/N/P) AutoIncrement FileVersion After Aut2EXE is finished. default=N. P=Prompt, Will ask at Compilation time if you want to increase the versionnumber
#AutoIt3Wrapper_Res_Language=1033 ;Resource Language code . german = 1031, english (U.S.) = 1033. default 2057=English (United Kingdom). For a List see http://technet.microsoft.com/en-us/library/dd346950.aspx
@ -32,7 +32,7 @@
#AutoIt3Wrapper_res_file_add=.\resources\gfx\guibg.jpg, rt_rcdata, img_bg ; http://www.autoitscript.com/forum/topic/51103-resources-udf/
#AutoIt3Wrapper_res_file_add=.\resources\gfx\GUiBG_PopUp.jpg, rt_rcdata, img_bg_popup
;; Ui ions
;; Ui icons
#AutoIt3Wrapper_res_file_add=.\resources\gfx\paste20.png, rt_rcdata, paste.png
;; Ui Statuscions

View File

@ -50,8 +50,8 @@ Func _main()
Case $GUI_EVENT_CLOSE
ExitLoop
Case $gButton_GetClipb
_ClipBoard_Open($GUi)
$hMemory = _ClipBoard_GetDataEx($CF_TEXT)
_ClipBoard_Open($GUi)
$hMemory = _ClipBoard_GetDataEx($CF_TEXT)
_ClipBoard_Close()
$tData = DllStructCreate("char Text[8192]", $hMemory)
GUICtrlSetData($gSteamId, DllStructGetData($tData, "Text"))