LoadImageW method

Pointer<Void> LoadImageW(
  1. Pointer<HINSTANCE__> hInst,
  2. Pointer<Uint16> name,
  3. int type,
  4. int cx,
  5. int cy,
  6. int fuLoad,
)

Implementation

ffi.Pointer<ffi.Void> LoadImageW(
  ffi.Pointer<HINSTANCE__> hInst,
  ffi.Pointer<ffi.Uint16> name,
  int type,
  int cx,
  int cy,
  int fuLoad,
) {
  return _LoadImageW(
    hInst,
    name,
    type,
    cx,
    cy,
    fuLoad,
  );
}