mirror of
https://github.com/FWGS/xash3d-fwgs
synced 2025-01-17 05:41:06 +01:00
vgui_support: added VGUI_TextInput callback stub
This commit is contained in:
parent
87ceb0f9cb
commit
974f0787a4
@ -83,4 +83,9 @@ void VGUI_MouseMove(int x, int y)
|
|||||||
return;
|
return;
|
||||||
pApp->internalCursorMoved( x, y, surface );
|
pApp->internalCursorMoved( x, y, surface );
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void VGUI_TextInput(const char *text)
|
||||||
|
{
|
||||||
|
// stub
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
@ -119,4 +119,5 @@ extern "C" EXPORT void InitAPI(vguiapi_t * api)
|
|||||||
g_api->Mouse = VGUI_Mouse;
|
g_api->Mouse = VGUI_Mouse;
|
||||||
g_api->MouseMove = VGUI_MouseMove;
|
g_api->MouseMove = VGUI_MouseMove;
|
||||||
g_api->Key = VGUI_Key;
|
g_api->Key = VGUI_Key;
|
||||||
|
g_api->TextInput = VGUI_TextInput;
|
||||||
}
|
}
|
||||||
|
@ -140,6 +140,8 @@ void VGui_Paint( void );
|
|||||||
void VGUI_Mouse(VGUI_MouseAction action, int code);
|
void VGUI_Mouse(VGUI_MouseAction action, int code);
|
||||||
void VGUI_Key(VGUI_KeyAction action, VGUI_KeyCode code);
|
void VGUI_Key(VGUI_KeyAction action, VGUI_KeyCode code);
|
||||||
void VGUI_MouseMove(int x, int y);
|
void VGUI_MouseMove(int x, int y);
|
||||||
|
void VGUI_TextInput(const char *text);
|
||||||
|
|
||||||
//
|
//
|
||||||
// vgui_clip.cpp
|
// vgui_clip.cpp
|
||||||
//
|
//
|
||||||
|
Loading…
x
Reference in New Issue
Block a user