2003-08-25 Steven Edwards <Steven_Ed4153@yahoo.com>

* include/ddk/ntifs.h: Change all C++ style comments to C.
	* include/GL/gl.h: Ditto.

2003-08-25  Martin Fuchs  <Martin-Fuchs@gmx.net>

	* include/shlobj.h (SFGAO_GHOSTED): Correct.
	(SFGAO_HIDDEN): Add define.
This commit is contained in:
Danny Smith
2003-08-25 02:02:37 +00:00
parent 1a5c6b9d0a
commit 6315f62b20
4 changed files with 63 additions and 52 deletions

View File

@@ -65,11 +65,11 @@
/* GLAPI, part 2 */
#if !defined(GLAPI)
# if defined(_MSC_VER) // Microsoft Visual C++
# if defined(_MSC_VER) /* Microsoft Visual C++ */
# define GLAPI __declspec(dllimport)
# elif defined(__LCC__) && defined(__WIN32__) // LCC-Win32
# elif defined(__LCC__) && defined(__WIN32__) /* LCC-Win32 */
# define GLAPI __stdcall
# else // Others (e.g. MinGW, Cygwin, non-win32)
# else /* Others (e.g. MinGW, Cygwin, non-win32) */
# define GLAPI extern
# endif
#endif