don't export CreateGraphicsWindow

This commit is contained in:
Glenn Maynard
2006-01-15 01:01:53 +00:00
parent 50b0f360f4
commit 669339a57f
2 changed files with 2 additions and 3 deletions
@@ -231,7 +231,7 @@ static int GetWindowStyle( bool bWindowed )
return WS_POPUP;
}
void GraphicsWindow::CreateGraphicsWindow( const VideoModeParams &p )
static void CreateGraphicsWindow( const VideoModeParams &p )
{
int iWindowStyle = GetWindowStyle( p.windowed );
@@ -251,7 +251,7 @@ void GraphicsWindow::CreateGraphicsWindow( const VideoModeParams &p )
SetForegroundWindow( hWnd );
g_bRecreatingVideoMode = false;
DestroyGraphicsWindow();
GraphicsWindow::DestroyGraphicsWindow();
}
g_hWndMain = hWnd;
@@ -17,7 +17,6 @@ namespace GraphicsWindow
void SetVideoModeParams( const VideoModeParams &p );
CString SetScreenMode( const VideoModeParams &p );
void CreateGraphicsWindow( const VideoModeParams &p );
void DestroyGraphicsWindow();
void ConfigureGraphicsWindow( const VideoModeParams &p, bool bForceRecreateWindow = false );