m_misc.h
上传用户:xuyinpeng
上传日期:2021-05-12
资源大小:455k
文件大小:1k
源码类别:

射击游戏

开发平台:

Visual C++

  1. // Emacs style mode select   -*- C++ -*- 
  2. //-----------------------------------------------------------------------------
  3. //
  4. // $Id:$
  5. //
  6. // Copyright (C) 1993-1996 by id Software, Inc.
  7. //
  8. // This source is available for distribution and/or modification
  9. // only under the terms of the DOOM Source Code License as
  10. // published by id Software. All rights reserved.
  11. //
  12. // The source is distributed in the hope that it will be useful,
  13. // but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. // FITNESS FOR A PARTICULAR PURPOSE. See the DOOM Source Code License
  15. // for more details.
  16. //
  17. // DESCRIPTION:
  18. //
  19. //    
  20. //-----------------------------------------------------------------------------
  21. #ifndef __M_MISC__
  22. #define __M_MISC__
  23. #include "doomtype.h"
  24. //
  25. // MISC
  26. //
  27. int M_GetFileSize( char const* name );
  28. boolean
  29. M_WriteFile
  30. ( char const* name,
  31.   void* source,
  32.   int length );
  33. boolean
  34. M_AppendFile
  35. ( char const* name,
  36.   void* source,
  37.   int length );
  38. int
  39. M_ReadFile
  40. ( char const* name,
  41.   byte** buffer );
  42. void M_ScreenShot (void);
  43. void M_LoadDefaults (void);
  44. void M_SaveDefaults (void);
  45. int
  46. M_DrawText
  47. ( int x,
  48.   int y,
  49.   boolean direct,
  50.   char* string );
  51. #endif
  52. //-----------------------------------------------------------------------------
  53. //
  54. // $Log:$
  55. //
  56. //-----------------------------------------------------------------------------