#include "kbd.h";
void KBD_SetDragDropCallback( KBDDragDropCallback callback, void* param );
callback | Callback function called when characters on the keyboard are dropped |
param | Parameters passed to the drag & drop callback function |
None.
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
.
CONFIDENTIAL