removed glib dependencies from win32

git-svn-id: https://svn.code.sf.net/p/freeglut/code/trunk@15 7f0cb862-5218-0410-a997-914c9d46530a
This commit is contained in:
andi75 2001-07-30 14:41:42 +00:00
parent 132c7af3d0
commit b303b5b50b

View File

@ -179,7 +179,11 @@ struct tagSFG_XYUse
typedef struct tagSFG_Time SFG_Time;
struct tagSFG_Time
{
#ifdef WIN32
DWORD Value;
#else
struct timeval Value;
#endif
GLboolean Set;
};
@ -512,7 +516,7 @@ XVisualInfo* fgChooseVisual( void );
*/
#if TARGET_HOST_WIN32
LRESULT CALLBACK fgWindowProc( HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam );
gboolean fgSetupPixelFormat( SFG_Window* window, gboolean checkOnly );
GLboolean fgSetupPixelFormat( SFG_Window* window, GLboolean checkOnly );
#endif
/*