#AutoIt3Wrapper_UseX64=n
Local $hDLL = DllOpen(@ScriptDir & '\Labelmx_sdk.dll')
DllCall($hDLL, 'int', 'HY_Initialization', 'int', 0)
DllCall($hDLL, 'bool', 'HY_OpenLax', 'str', @ScriptDir & '\demo.lax')
DllCall($hDLL, 'bool', 'HY_SetVariable', 'str', '段落', 'str', 'Au3 demo' & @CRLF & '这是演示文件!', 'str', '', 'str', '')
DllCall($hDLL, 'bool', 'HY_SetVariable', 'str', 'txt', 'str', '001', 'str', '', 'str', '')
DllCall($hDLL, 'bool', 'HY_SetVariable', 'str', '一维条码', 'str', '123456789', 'str', '', 'str', '')
DllCall($hDLL, 'bool', 'HY_SetVariable', 'str', '二维条码', 'str', 'https://www.autoitx.com', 'str', '', 'str', '')
DllCall($hDLL, 'int', 'HY_Print', 'int', 0, 'str', '-1', 'bool', False, 'bool', False)
DllCall($hDLL, 'ptr', 'HY_Close')
DllClose($hDLL)