本帖最后由 kenan 于 2011-12-16 15:31 编辑
#AutoIt3Wrapper_useupx=n
#AutoIt3Wrapper_Res_File_Add=QQ2009.she,rt_rcdata,qq
#include <GUIConstantsEx.au3>
#include <WindowsConstants.au3>
#include "resources.au3"
GUICreate("我的 GUI")
$Dll = DllOpen(@ScriptDir&"\SkinH_EL.dll")
;~ DllCall($Dll, "int", "SkinH_AttachEx", "str", @ScriptDir&"\QQ2009.SHE", "str", "benkel")
$p=_ResourceGet("qq")
$s=@extended
DllCall($DLL, "int", "SkinH_AttachRes", "BYTE*", $p, "dword", $s, "str","benkel", "int",0, "int", 0, "int", 0)
DllCall($Dll, "int", "SkinH_SetAero", "int", 1)
GUISetState(@SW_SHOW)
While 1
$msg = GUIGetMsg()
If $msg = $GUI_EVENT_CLOSE Then ExitLoop
WEnd
|