uuid() [v1.1]

作者: Titan 最近更新时间: 20061215


Generates a time-based Universally Unique Identifier based on random clock and node IDs.
e.g. MsgBox, % uuid(y) ; where y is false for random IDs

uuid(c = false)

关于函数的参数和返回值, 请参阅其源码.

备注

http://en.wikipedia.org/wiki/UUID

关于此函数(集)的更新细节和注意事项, 请参见 AutoHotkey 论坛: http://www.autohotkey.com/forum/viewtopic.php?t=14917

许可

此函数(集)是基于 Simplified BSD 许可的开源项目. 想了解许可详情, 请参见 titan-license.txt

示例

; #Include uuid.ahk
#NoEnv
SendMode Input
SetWorkingDir %A_ScriptDir%

Clipboard := uuid()
MsgBox %Clipboard%