changeset 1446 | 47bf1767c4ca |
parent 1402 | d910939febfa |
child 1447 | 515df0086eb7 |
--- a/include/SDL_rwops.h Mon Feb 27 01:32:12 2006 +0000 +++ b/include/SDL_rwops.h Mon Feb 27 03:48:48 2006 +0000 @@ -62,11 +62,20 @@ Uint32 type; union { -#ifdef HAVE_STDIO_H + +#ifdef HAVE_STDIO_H struct { int autoclose; FILE *fp; } stdio; +#else +#ifdef __WIN32__ + struct { + void* h; + int autoclose; + int append; + } win32io; +#endif #endif struct { Uint8 *base;