Scroll to navigation

CreateCompatibleBitmap(3w) Wine API CreateCompatibleBitmap(3w)

NAME

CreateCompatibleBitmap (GDI32.@)

SYNOPSIS

HBITMAP CreateCompatibleBitmap
(
HDC hdc,
INT width,
INT height
)
 

DESCRIPTION

Creates a bitmap compatible with the DC.
 

PARAMS

hdc [In] Handle to device context.
width [In] Width of bitmap.
height [In] Height of bitmap.
 

RETURNS

Success: Handle to bitmap
Failure: 0
 

IMPLEMENTATION

Declared in "wingdi.h".
Implemented in "dlls/gdi32/bitmap.c".
Debug channel "bitmap".
Oct 2012 Wine API