KBD_SetDragDropCallback

C Specification

#include "kbd.h";
void KBD_SetDragDropCallback( KBDDragDropCallback callback, void* param );

Arguments

callback Callback function called when characters on the keyboard are dropped
param Parameters passed to the drag & drop callback function

Return Values

None.

Description

Sets the callback function to call when a character on the keyboard is dropped after being dragged.
The drag & drop callback type KBDDragDropCallback is defined below.

typedef void (*KBDDragDropCallback)( void* param, u16 charcode, int x, int y );


This function does not call the callback if NULL is specified in callback.

See Also

KBDDragDropCallback

CONFIDENTIAL