CreateCompatibleBitmap method

Pointer<HBITMAP__> CreateCompatibleBitmap(
  1. Pointer<HDC__> hdc,
  2. int cx,
  3. int cy
)

Implementation

ffi.Pointer<HBITMAP__> CreateCompatibleBitmap(
  ffi.Pointer<HDC__> hdc,
  int cx,
  int cy,
) {
  return _CreateCompatibleBitmap(
    hdc,
    cx,
    cy,
  );
}