函数参考


_DebugReport

写调试会话

#include <Debug.au3>
_DebugReport ( $sData [,$bLastError = False [,$bExit = False]])

参数

$sData 须予报告的数据
$bLastError [可选参数] 设置为 True, 表示如有 GetLastErrorMessage() 数据必须追加到报告中
$bExit [可选参数] 设置为 True, 表示脚本必须终止

返回值

成功: 返回 1.
失败: 返回 0.

注意/说明

如果没有 _DebugSetup(), 已发布的函数总是返回.
@error 为调用方保留.
如果 $bLastError = True, @extended 可以设置为 Windows API 的 GetlastError(). 否则保留.

相关

_DebugSetup

示例/演示


#include <Debug.au3>

_DebugSetup()

_DebugReport("message1")
_DebugReport("message2", True); 附加了最后的错误消息