* renamed static function GetClipboardData to CL_GetClipboardData since it was causing compile errors in newer mingw

This commit is contained in:
Tony J. White = 2006-08-30 15:16:36 +00:00
parent 9f42be5d6c
commit bc4591b03e
1 changed files with 3 additions and 3 deletions

View File

@ -618,10 +618,10 @@ static void CL_GetGlconfig( glconfig_t *config ) {
/*
====================
GetClipboardData
CL_GetClipboardData
====================
*/
static void GetClipboardData( char *buf, int buflen ) {
static void CL_GetClipboardData( char *buf, int buflen ) {
char *cbd;
cbd = Sys_GetClipboardData();
@ -934,7 +934,7 @@ intptr_t CL_UISystemCalls( intptr_t *args ) {
return 0;
case UI_GETCLIPBOARDDATA:
GetClipboardData( VMA(1), args[2] );
CL_GetClipboardData( VMA(1), args[2] );
return 0;
case UI_GETCLIENTSTATE: