GetDllDirectoryA method

int GetDllDirectoryA(
  1. int nBufferLength,
  2. Pointer<Int8> lpBuffer
)

Implementation

int GetDllDirectoryA(
  int nBufferLength,
  ffi.Pointer<ffi.Int8> lpBuffer,
) {
  return (_GetDllDirectoryA ??=
      _dylib.lookupFunction<_c_GetDllDirectoryA, _dart_GetDllDirectoryA>(
          'GetDllDirectoryA'))(
    nBufferLength,
    lpBuffer,
  );
}