diff test/automated/rwops/TestSupportRWops.h @ 4451:033c455bbe99

Refactored automated rwops tests so read and write directories can be more easily customized. The refactored tests were written in recognition that Mac and iPhone current working directories are usually not going to work. Resource directories are in bundles and write directories are restricted to certain areas. In theory, other platforms may have this problem too, hence the refactoring. Also updated the Xcode iPhone project to use 3.2 as the Base SDK, but 3.1 as the Deployment SDK (for iPhone/iPad compatibility.)
author Eric Wing <ewing . public |-at-| gmail . com>
date Sun, 09 May 2010 06:58:30 -0700
parents test/automated/rwops/Test_rwopsbundlesupport.h@947201caa46e
children
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/test/automated/rwops/TestSupportRWops.h	Sun May 09 06:58:30 2010 -0700
@@ -0,0 +1,14 @@
+
+#include <stdio.h>
+#include "SDL.h"
+
+#ifndef TestSupportRWops_h
+#define TestSupportRWops_h
+
+FILE* TestSupportRWops_OpenFPFromReadDir(const char *file, const char *mode);
+FILE* TestSupportRWops_OpenFPFromWriteDir(const char *file, const char *mode);
+SDL_RWops* TestSupportRWops_OpenRWopsFromReadDir(const char *file, const char *mode);
+SDL_RWops* TestSupportRWops_OpenRWopsFromWriteDir(const char *file, const char *mode);
+
+
+#endif