DrvDeleteDeviceBitmap function (winddi.h)

The DrvDeleteDeviceBitmap function deletes a device bitmap created by DrvCreateDeviceBitmap.

Syntax

void DrvDeleteDeviceBitmap(
  DHSURF dhsurf
);

Parameters

dhsurf

Handle to the bitmap to be deleted. This handle identifies the bitmap created by DrvCreateDeviceBitmap.

Return value

None

Remarks

A driver must implement DrvDeleteDeviceBitmap if it supplies DrvCreateDeviceBitmap.

The driver should free any resources associated with the device bitmap.

Requirements

Requirement Value
Target Platform Desktop
Header winddi.h (include Winddi.h)

See also

DrvCreateDeviceBitmap