AnnoUIOnChar

#include “BiAnno.h”

BOOL CALLBACK AnnoUIOnChar( INT_PTR     PAnno,
HDC   Hdc,
UINT  nChar,
UINT  nRepCnt,
UINT  nFlags );

Description

Handles the WM_CHAR message.

Parameters

INT_PTR

pAnno

Annotation handle

HDC

hDC

DC to draw onto

UINT

nChar

Specifies the virtual-key code of the given key

UINT

nRepCnt  

Repeat count

UINT

nFlags  

Specifies the scan code, key-transition code, previous key state, and context code, according to MFC.

Return value

            TRUE if repaint is necessary

Programming Notes

None

Code Example

None