创建仅资源 dll。这样的dll不会有任何可执行代码,但可以加载到程序中来访问资源。
OutputVar := ResDllCreate(DllPath)命令示例: ResDllCreate A_ScriptDir "\MyDll.dll" 函数示例: ResDllCreate(A_ScriptDir "\MyDll.dll")
如果 dll 写入成功,则存储 true / 1 的变量名称,否则存储 0 / false。
要创建的 dll 的路径。
如果无法创建文件,ErrorLevel 将设置为 1(真),否则将为 0(假)。
ResGet, ResPut, ResPutFile, ResExist, ResDelete, ResDllCreate, UnZipRawMemory
If !ResDllCreate(A_ScriptDir "\MyDll.dll") MsgBox 无法创建 dll。