getWorkingDirectory method
Implementation
int getWorkingDirectory(Pointer<Utf16> pszDir, int cch) =>
(ptr.ref.vtable + 8)
.cast<
Pointer<
NativeFunction<
Int32 Function(Pointer, Pointer<Utf16> pszDir, Int32 cch)
>
>
>()
.value
.asFunction<int Function(Pointer, Pointer<Utf16> pszDir, int cch)>()(
ptr.ref.lpVtbl,
pszDir,
cch,
);