comparison include/SDL_rwops.h @ 2159:dd4753e47ed4

Merged read-ahead support for Win32 file I/O from SDL 1.2 revision 3183
author Sam Lantinga <slouken@libsdl.org>
date Tue, 10 Jul 2007 05:01:22 +0000
parents c121d94672cb
children 00adbaed3910
comparison
equal deleted inserted replaced
2158:eff395617ed8 2159:dd4753e47ed4
74 #ifdef __WIN32__ 74 #ifdef __WIN32__
75 struct 75 struct
76 { 76 {
77 int append; 77 int append;
78 void *h; 78 void *h;
79 struct
80 {
81 void *data;
82 int size;
83 int left;
84 } buffer;
79 } win32io; 85 } win32io;
80 #endif 86 #endif
81 #ifdef HAVE_STDIO_H 87 #ifdef HAVE_STDIO_H
82 struct 88 struct
83 { 89 {