DeviceBitmap

WORD DeviceBitmap(
  LPPDEVICE lpDestDev, 
  WORD wCommand, 
  LPBITMAP lpBitmap, 
  LPSTR lpBits
 );
 

Performs the specified action on a device bitmap.

lpDestDev
Address of a PDEVICE or PBITMAP structure that specifies the destination device or bitmap.
wCommand
Command identifier that specifies the action to take.
lpBitmap
Address of a PBITMAP structure that contains a description of the device bitmap.
lpBits
Address of a buffer that contains the bits for the device bitmap.

The export ordinal for this function is 16.

Every graphics driver must export a DeviceBitmap function.

Because GDI does not currently use DeviceBitmap, implement the function as a stub function that carries out no action and always returns zero.

See Also

PDEVICE, PBITMAP