engine: mark GAME_EXPORT's

This commit is contained in:
mittorn
2020-01-19 08:15:54 +07:00
parent bbd033c254
commit 3a416636f1
35 changed files with 383 additions and 383 deletions

View File

@@ -294,13 +294,13 @@ void *Platform_GetNativeObject( const char *name )
return NULL;
}
void Platform_GetMousePos( int *x, int *y )
void GAME_EXPORT Platform_GetMousePos( int *x, int *y )
{
*x = *y = 0;
}
void Platform_SetMousePos(int x, int y)
void GAME_EXPORT Platform_SetMousePos(int x, int y)
{
}