c08c840672013d07d880b0f65e2e35b2d5c03696
[freeglut] / src / mswin / freeglut_ext_mswin.c
1 /*\r
2  * freeglut_ext_mswin.c\r
3  *\r
4  * The Windows-specific mouse cursor related stuff.\r
5  *\r
6  * Copyright (c) 2012 Stephen J. Baker. All Rights Reserved.\r
7  * Written by John F. Fay, <fayjf@sourceforge.net>\r
8  * Creation date: Thu Jan 19, 2012\r
9  *\r
10  * Permission is hereby granted, free of charge, to any person obtaining a\r
11  * copy of this software and associated documentation files (the "Software"),\r
12  * to deal in the Software without restriction, including without limitation\r
13  * the rights to use, copy, modify, merge, publish, distribute, sublicense,\r
14  * and/or sell copies of the Software, and to permit persons to whom the\r
15  * Software is furnished to do so, subject to the following conditions:\r
16  *\r
17  * The above copyright notice and this permission notice shall be included\r
18  * in all copies or substantial portions of the Software.\r
19  *\r
20  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS\r
21  * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r
22  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL\r
23  * PAWEL W. OLSZTA BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\r
24  * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\r
25  * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\r
26  */\r
27 \r
28 #include <GL/freeglut.h>\r
29 #include "../Common/freeglut_internal.h"\r
30 \r
31 GLUTproc fgPlatformGlutGetProcAddress( const char* procName )\r
32 {\r
33 #if !defined(_WIN32_WCE)\r
34     /* optimization: quick initial check */\r
35     if( strncmp( procName, "glut", 4 ) != 0 )\r
36         return NULL;\r
37 \r
38 #define CHECK_NAME(x) if( strcmp( procName, #x ) == 0) return (GLUTproc)x;\r
39     CHECK_NAME(glutJoystickFunc);\r
40     CHECK_NAME(glutForceJoystickFunc);\r
41     CHECK_NAME(glutGameModeString);\r
42     CHECK_NAME(glutEnterGameMode);\r
43     CHECK_NAME(glutLeaveGameMode);\r
44     CHECK_NAME(glutGameModeGet);\r
45 #undef CHECK_NAME\r
46 #endif /* !defined(_WIN32_WCE) */\r
47 \r
48     return NULL;\r
49 }\r
50 \r
51 \r
52 \r
53 SFG_Proc fghGetProcAddress( const char *procName )\r
54 {\r
55     return (SFG_Proc)wglGetProcAddress( ( LPCSTR )procName );\r
56 }\r