TrinityCore
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
loadlib.cpp File Reference
#include "loadlib.h"
+ Include dependency graph for loadlib.cpp:

Macros

#define _CRT_SECURE_NO_DEPRECATE
 

Functions

bool IsInterestingChunk (u_map_fcc const &fcc)
 

Variables

u_map_fcc MverMagic = { { 'R','E','V','M' } }
 
u_map_fcc InterestingChunks []
 

Macro Definition Documentation

#define _CRT_SECURE_NO_DEPRECATE

Function Documentation

bool IsInterestingChunk ( u_map_fcc const fcc)
104 {
105  for (u_map_fcc const& f : InterestingChunks)
106  if (f.fcc == fcc.fcc)
107  return true;
108 
109  return false;
110 }
Definition: loadlib.h:38
u_map_fcc InterestingChunks[]
Definition: loadlib.cpp:91

+ Here is the caller graph for this function:

Variable Documentation

u_map_fcc InterestingChunks[]
Initial value:
=
{
{ { 'R', 'E', 'V', 'M' } },
{ { 'N', 'I', 'A', 'M' } },
{ { 'O', '2', 'H', 'M' } },
{ { 'K', 'N', 'C', 'M' } },
{ { 'T', 'V', 'C', 'M' } },
{ { 'O', 'M', 'W', 'M' } },
{ { 'Q', 'L', 'C', 'M' } },
{ { 'O', 'B', 'F', 'M' } }
}
u_map_fcc MverMagic = { { 'R','E','V','M' } }