CreateBitmapIndirect function gdi32

int CreateBitmapIndirect(
  1. Pointer<BITMAP> pbm
)

The CreateBitmapIndirect function creates a bitmap with the specified width, height, and color format (color planes and bits-per-pixel).

HBITMAP CreateBitmapIndirect(
  [in] const BITMAP *pbm
);

Implementation

int CreateBitmapIndirect(Pointer<BITMAP> pbm) => _CreateBitmapIndirect(pbm);