TrinityCore
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
mpqfile.h File Reference
#include <string.h>
#include <ctype.h>
#include <vector>
#include <iostream>
#include <deque>
#include <cstdint>
#include "CascLib.h"
+ Include dependency graph for mpqfile.h:
+ This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Classes

class  MPQFile
 

Macros

#define _CRT_SECURE_NO_DEPRECATE
 
#define _CRT_SECURE_NO_WARNINGS
 
#define MPQ_H
 

Typedefs

typedef int64_t int64
 
typedef int32_t int32
 
typedef int16_t int16
 
typedef int8_t int8
 
typedef uint64_t uint64
 
typedef uint32_t uint32
 
typedef uint16_t uint16
 
typedef uint8_t uint8
 

Functions

int GetLastError ()
 
void flipcc (char *fcc)
 

Macro Definition Documentation

#define _CRT_SECURE_NO_DEPRECATE
#define _CRT_SECURE_NO_WARNINGS
#define MPQ_H

Typedef Documentation

typedef int16_t int16
typedef int32_t int32
typedef int64_t int64
typedef int8_t int8
typedef uint16_t uint16
typedef uint32_t uint32
typedef uint64_t uint64
typedef uint8_t uint8

Function Documentation

void flipcc ( char *  fcc)
inline
58 {
59  char t;
60  t=fcc[0];
61  fcc[0]=fcc[3];
62  fcc[3]=t;
63  t=fcc[1];
64  fcc[1]=fcc[2];
65  fcc[2]=t;
66 }

+ Here is the caller graph for this function:

int GetLastError ( )
71 {
72  return nLastError;
73 }
static int nLastError
Definition: Common.cpp:68