diff src/SDL_error_c.h @ 1895:c121d94672cb

SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
author Sam Lantinga <slouken@libsdl.org>
date Mon, 10 Jul 2006 21:04:37 +0000
parents e25445333ccf
children 99210400e8b9
line wrap: on
line diff
--- a/src/SDL_error_c.h	Thu Jul 06 18:01:37 2006 +0000
+++ b/src/SDL_error_c.h	Mon Jul 10 21:04:37 2006 +0000
@@ -31,28 +31,31 @@
 #define ERR_MAX_STRLEN	128
 #define ERR_MAX_ARGS	5
 
-typedef struct SDL_error {
-	/* This is a numeric value corresponding to the current error */
-	int error;
+typedef struct SDL_error
+{
+    /* This is a numeric value corresponding to the current error */
+    int error;
 
-	/* This is a key used to index into a language hashtable containing
-	   internationalized versions of the SDL error messages.  If the key
-	   is not in the hashtable, or no hashtable is available, the key is
-	   used directly as an error message format string.
-	*/
-	char key[ERR_MAX_STRLEN];
+    /* This is a key used to index into a language hashtable containing
+       internationalized versions of the SDL error messages.  If the key
+       is not in the hashtable, or no hashtable is available, the key is
+       used directly as an error message format string.
+     */
+    char key[ERR_MAX_STRLEN];
 
-	/* These are the arguments for the error functions */
-	int argc;
-	union {
-		void *value_ptr;
-#if 0	/* What is a character anyway?  (UNICODE issues) */
-		unsigned char value_c;
+    /* These are the arguments for the error functions */
+    int argc;
+    union
+    {
+        void *value_ptr;
+#if 0                           /* What is a character anyway?  (UNICODE issues) */
+        unsigned char value_c;
 #endif
-		int value_i;
-		double value_f;
-		char buf[ERR_MAX_STRLEN];
-	} args[ERR_MAX_ARGS];
+        int value_i;
+        double value_f;
+        char buf[ERR_MAX_STRLEN];
+    } args[ERR_MAX_ARGS];
 } SDL_error;
 
 #endif /* _SDL_error_c_h */
+/* vi: set ts=4 sw=4 expandtab: */