SDL_rwops.h
上传用户:sun1608
上传日期:2007-02-02
资源大小:6116k
文件大小:3k
源码类别:

流媒体/Mpeg4/MP4

开发平台:

Visual C++

  1. /*
  2.     SDL - Simple DirectMedia Layer
  3.     Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002  Sam Lantinga
  4.     This library is free software; you can redistribute it and/or
  5.     modify it under the terms of the GNU Library General Public
  6.     License as published by the Free Software Foundation; either
  7.     version 2 of the License, or (at your option) any later version.
  8.     This library is distributed in the hope that it will be useful,
  9.     but WITHOUT ANY WARRANTY; without even the implied warranty of
  10.     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  11.     Library General Public License for more details.
  12.     You should have received a copy of the GNU Library General Public
  13.     License along with this library; if not, write to the Free
  14.     Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
  15.     Sam Lantinga
  16.     slouken@libsdl.org
  17. */
  18. #ifdef SAVE_RCSID
  19. static char rcsid =
  20.  "@(#) $Id: SDL_rwops.h,v 1.4 2002/04/22 21:38:01 wmay Exp $";
  21. #endif
  22. /* This file provides a general interface for SDL to read and write
  23.    data sources.  It can easily be extended to files, memory, etc.
  24. */
  25. #ifndef _SDL_RWops_h
  26. #define _SDL_RWops_h
  27. #include <stdio.h>
  28. #include "SDL_types.h"
  29. #include "begin_code.h"
  30. /* Set up for C function definitions, even when using C++ */
  31. #ifdef __cplusplus
  32. extern "C" {
  33. #endif
  34. /* This is the read/write operation structure -- very basic */
  35. typedef struct SDL_RWops {
  36. /* Seek to 'offset' relative to whence, one of stdio's whence values:
  37. SEEK_SET, SEEK_CUR, SEEK_END
  38.    Returns the final offset in the data source.
  39.  */
  40. int (*seek)(struct SDL_RWops *context, int offset, int whence);
  41. /* Read up to 'num' objects each of size 'objsize' from the data
  42.    source to the area pointed at by 'ptr'.
  43.    Returns the number of objects read, or -1 if the read failed.
  44.  */
  45. int (*read)(struct SDL_RWops *context, void *ptr, int size, int maxnum);
  46. /* Write exactly 'num' objects each of size 'objsize' from the area
  47.    pointed at by 'ptr' to data source.
  48.    Returns 'num', or -1 if the write failed.
  49.  */
  50. int (*write)(struct SDL_RWops *context, const void *ptr, int size, int num);
  51. /* Close and free an allocated SDL_FSops structure */
  52. int (*close)(struct SDL_RWops *context);
  53. Uint32 type;
  54. union {
  55.     struct {
  56. int autoclose;
  57.   FILE *fp;
  58.     } stdio;
  59.     struct {
  60. Uint8 *base;
  61.   Uint8 *here;
  62. Uint8 *stop;
  63.     } mem;
  64.     struct {
  65. void *data1;
  66.     } unknown;
  67. } hidden;
  68. } SDL_RWops;
  69. /* Functions to create SDL_RWops structures from various data sources */
  70. extern DECLSPEC SDL_RWops * SDLCALL SDL_RWFromFile(const char *file, const char *mode);
  71. extern DECLSPEC SDL_RWops * SDLCALL SDL_RWFromFP(FILE *fp, int autoclose);
  72. extern DECLSPEC SDL_RWops * SDLCALL SDL_RWFromMem(void *mem, int size);
  73. extern DECLSPEC SDL_RWops * SDLCALL SDL_AllocRW(void);
  74. extern DECLSPEC void SDLCALL SDL_FreeRW(SDL_RWops *area);
  75. /* Macros to easily read and write from an SDL_RWops structure */
  76. #define SDL_RWseek(ctx, offset, whence) (ctx)->seek(ctx, offset, whence)
  77. #define SDL_RWtell(ctx) (ctx)->seek(ctx, 0, SEEK_CUR)
  78. #define SDL_RWread(ctx, ptr, size, n) (ctx)->read(ctx, ptr, size, n)
  79. #define SDL_RWwrite(ctx, ptr, size, n) (ctx)->write(ctx, ptr, size, n)
  80. #define SDL_RWclose(ctx) (ctx)->close(ctx)
  81. /* Ends C function definitions when using C++ */
  82. #ifdef __cplusplus
  83. }
  84. #endif
  85. #include "close_code.h"
  86. #endif /* _SDL_RWops_h */