Loads a string resource in the specified dll previously loaded with MemoryLoadLibrary. Similar to LoadString.
OutputVar := MemoryLoadString(Handle, Id , Language)Function Example: String := MemoryLoadString(ahkdllModule,2)
The name of the variable in which to store the text.
MemoryModule handle previously returned by MemoryLoadLibrary.
Id of string resource, must be a digit.
The language of string, uses DEFAULT_LANGUAGE by default.
MemoryModule, MemoryLoadLibrary, MemoryFreeLibrary, MemoryGetProcAddress, MemoryFindResource, MemorySizeofResource, MemoryLoadResource, DllCall, DynaCall
lib:=MemoryLoadLibrary(A_ScriptDir "\LiteZip.dll") MsgBox MemoryLoadString(lib,1) MemoryFreeLibrary(lib)