LoadImageA method

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

Implementation

ffi.Pointer<ffi.Void> LoadImageA(
  ffi.Pointer<HINSTANCE__> hInst,
  ffi.Pointer<ffi.Int8> name,
  int type,
  int cx,
  int cy,
  int fuLoad,
) {
  return _LoadImageA(
    hInst,
    name,
    type,
    cx,
    cy,
    fuLoad,
  );
}