home *** CD-ROM | disk | FTP | other *** search
/ Xentax forum attachments archive / xentax.7z / 5257 / source.7z / ps3_gundam3.h < prev    next >
Encoding:
C/C++ Source or Header  |  2011-12-16  |  591 b   |  22 lines

  1. #ifndef __XB360_GUNDAM3_H
  2. #define __XB360_GUNDAM3_H
  3.  
  4. #include "xentax.h"
  5.  
  6. namespace Xbox360 { namespace DynastyWarriorsGundam3 {
  7.  
  8.  bool ExtractArchiveANS(void);
  9.  bool ExtractArchiveBNS(void);
  10.  bool ExtractArchiveCNS(void);
  11.  bool ExtractDLC(const char* filename);
  12.  
  13.  // temporary
  14.  bool Extract002(const binary_stream& bs, const char* path);
  15.  bool Extract003(const binary_stream& bs, const char* path);
  16.  bool ExtractModels(const binary_stream& bs, const char* path, size_t item);
  17.  bool ExtractG1TG0060(const binary_stream& bs, const char* path, size_t item);
  18.  
  19. };};
  20.  
  21. #endif
  22.