Fix server and utility build

Adding missing C4DefList::SortByPriority() stub
qteditor
Sven Eberhardt 2016-06-18 10:35:54 -04:00
parent 1b785da271
commit a7bd20a927
2 changed files with 2 additions and 0 deletions

View File

@ -72,6 +72,7 @@ C4IDListChunk::~C4IDListChunk() {}
C4DefGraphics::C4DefGraphics(C4Def*) {}
void C4DefGraphics::Clear() {}
void C4DefList::SortByPriority() {}
void C4DefList::CallEveryDefinition() {}
void C4DefList::ResetIncludeDependencies() {}
bool C4DefList::DrawFontImage(const char* szImageTag, C4Facet& rTarget, C4DrawTransform* pTransform) { return false; }

View File

@ -27,6 +27,7 @@
C4Def* C4DefList::GetByName(const StdStrBuf &) {return NULL;}
C4Def * C4DefList::GetDef(int) {return 0;}
int C4DefList::GetDefCount() {return 0;}
void C4DefList::SortByPriority() {}
void C4DefList::CallEveryDefinition() {}
void C4DefList::ResetIncludeDependencies() {}