ram_file_man.hh 793 B

12345678910111213141516171819202122232425262728
  1. /********************************************************************** <BR>
  2. This file is part of Crack dot Com's free source code release of
  3. Golgotha. <a href="http://www.crack.com/golgotha_release"> <BR> for
  4. information about compiling & licensing issues visit this URL</a>
  5. <PRE> If that doesn't help, contact Jonathan Clark at
  6. golgotha_source@usa.net (Subject should have "GOLG" in it)
  7. ***********************************************************************/
  8. #ifndef I4_RAM_FILE_MAN_HH
  9. #define I4_RAM_FILE_MAN_HH
  10. #include "arch.hh"
  11. class i4_openable_ram_file_info
  12. {
  13. public:
  14. char *filename;
  15. void *data;
  16. w32 data_size;
  17. i4_openable_ram_file_info *next;
  18. i4_openable_ram_file_info(char *filename, void *data, w32 data_size);
  19. };
  20. #endif