DisplayWmDestroy

#include "BIDISP.H"

 

LRESULT CALLBACK DisplayWmDestroy( HWND        hWnd,
WPARAM   wParam,
LPARAM    lParam,
LPDISPLAYSTRUCT cb)

Description

The DisplayWmDestroy function should be called in response to the WM_DESTROY message. The propose of this function is to free up all allocated objects.

Parameters

HWND

hWnd

Window handle to get client parameters.

WPARAM

wParam

First 32 bits additional information of the window procedure.

LPARAM

lParam

Second 32 bits additional information of the window procedure.

LPDISPLAYSTRUCT

cb

Display information structure.

Return values

The return value is the result of the message processing.

Requirements

Header :     Declared in BIDisp.h; include BIDisp.h.

Library :    Use BIDisp.lib.

DLLs :       BIDisp.dll.

Code example

See sample code at DisplayWmCreate().