mirror of
https://github.com/EQEmu/Server.git
synced 2026-05-16 22:58:34 +00:00
Import/Export util start
This commit is contained in:
@@ -104,6 +104,10 @@ bool EQEMuLog::open(LogIDs id) {
|
||||
snprintf(exename, sizeof(exename), "_queryserv");
|
||||
} else if(platform == ExePlatformSharedMemory) {
|
||||
snprintf(exename, sizeof(exename), "_shared_memory");
|
||||
} else if(platform == ExePlatformClientImport) {
|
||||
snprintf(exename, sizeof(exename), "_import");
|
||||
} else if(platform == ExePlatformClientExport) {
|
||||
snprintf(exename, sizeof(exename), "_export");
|
||||
}
|
||||
|
||||
char filename[200];
|
||||
|
||||
+3
-1
@@ -10,7 +10,9 @@ enum EQEmuExePlatform
|
||||
ExePlatformQueryServ,
|
||||
ExePlatformUCS,
|
||||
ExePlatformLaunch,
|
||||
ExePlatformSharedMemory
|
||||
ExePlatformSharedMemory,
|
||||
ExePlatformClientImport,
|
||||
ExePlatformClientExport
|
||||
};
|
||||
|
||||
void RegisterExecutablePlatform(EQEmuExePlatform p);
|
||||
|
||||
+1
-1
@@ -1759,7 +1759,7 @@ int SharedDatabase::GetMaxBaseDataLevel() {
|
||||
mysql_free_result(result);
|
||||
}
|
||||
} else {
|
||||
_log(SPELLS__LOAD_ERR, "Error in GetMaxBaseDataLevel query '%s' %s", query, errbuf);
|
||||
LogFile->write(EQEMuLog::Error, "Error in GetMaxBaseDataLevel query '%s' %s", query, errbuf);
|
||||
ret = -1;
|
||||
}
|
||||
return ret;
|
||||
|
||||
Reference in New Issue
Block a user