summaryrefslogtreecommitdiff
path: root/include/SDL_test.h
diff options
context:
space:
mode:
authorSam Lantinga <slouken@libsdl.org>2012-11-26 07:53:56 -0800
committerSam Lantinga <slouken@libsdl.org>2012-11-26 07:53:56 -0800
commitec8f83c4311049956d1366a3406f5eaa7944d56c (patch)
tree4046a5119aeb94d259d01d846761631c0f0e2598 /include/SDL_test.h
parent7a05755d2ac8992eca65f2666c922d58503a6b2e (diff)
downloadsdl-ec8f83c4311049956d1366a3406f5eaa7944d56c.tar.gz
Work in progress on an SDL test library
Diffstat (limited to 'include/SDL_test.h')
-rw-r--r--include/SDL_test.h58
1 files changed, 58 insertions, 0 deletions
diff --git a/include/SDL_test.h b/include/SDL_test.h
new file mode 100644
index 000000000..94877ad97
--- /dev/null
+++ b/include/SDL_test.h
@@ -0,0 +1,58 @@
+/*
+ Simple DirectMedia Layer
+ Copyright (C) 1997-2012 Sam Lantinga <slouken@libsdl.org>
+
+ This software is provided 'as-is', without any express or implied
+ warranty. In no event will the authors be held liable for any damages
+ arising from the use of this software.
+
+ Permission is granted to anyone to use this software for any purpose,
+ including commercial applications, and to alter it and redistribute it
+ freely, subject to the following restrictions:
+
+ 1. The origin of this software must not be misrepresented; you must not
+ claim that you wrote the original software. If you use this software
+ in a product, an acknowledgment in the product documentation would be
+ appreciated but is not required.
+ 2. Altered source versions must be plainly marked as such, and must not be
+ misrepresented as being the original software.
+ 3. This notice may not be removed or altered from any source distribution.
+*/
+
+/**
+ * \file SDLTest.h
+ *
+ * Include file for SDL test framework.
+ *
+ * This code is a part of the SDL2_test library, not the main SDL library.
+ */
+
+#ifndef _SDLTest_h
+#define _SDLTest_h
+
+#include "SDL.h"
+#include "SDL_test_font.h"
+
+#include "begin_code.h"
+/* Set up for C function definitions, even when using C++ */
+#ifdef __cplusplus
+/* *INDENT-OFF* */
+extern "C" {
+/* *INDENT-ON* */
+#endif
+
+/* Function prototypes */
+
+/* ADD STUFF HERE */
+
+/* Ends C function definitions when using C++ */
+#ifdef __cplusplus
+/* *INDENT-OFF* */
+}
+/* *INDENT-ON* */
+#endif
+#include "close_code.h"
+
+#endif /* _SDLTest_h */
+
+/* vi: set ts=4 sw=4 expandtab: */