Subversion Repositories Kolibri OS

Rev

Blame | Last modification | View Log | Download | RSS feed

  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.  
  22.  
  23. #ifndef __M_MISC__
  24. #define __M_MISC__
  25.  
  26.  
  27. #include "doomtype.h"
  28. //
  29. // MISC
  30. //
  31.  
  32.  
  33.  
  34. boolean
  35. M_WriteFile
  36. ( char const*   name,
  37.   void*         source,
  38.   int           length );
  39.  
  40. int
  41. M_ReadFile
  42. ( char const*   name,
  43.   byte**        buffer );
  44.  
  45. void M_ScreenShot (void);
  46.  
  47. void M_LoadDefaults (void);
  48.  
  49. void M_SaveDefaults (void);
  50.  
  51.  
  52. int
  53. M_DrawText
  54. ( int           x,
  55.   int           y,
  56.   boolean       direct,
  57.   char*         string );
  58.  
  59.  
  60. #endif
  61. //-----------------------------------------------------------------------------
  62. //
  63. // $Log:$
  64. //
  65. //-----------------------------------------------------------------------------
  66.