19 lines
1.1 KiB
C
19 lines
1.1 KiB
C
#pragma once
|
|
|
|
#include "LogMessage.h"
|
|
|
|
struct LOG
|
|
{
|
|
enum
|
|
{
|
|
STR_NTS = -1,
|
|
};
|
|
static void Init( const char *szServerName );
|
|
static void DeInit();
|
|
static void Log11N4S( unsigned short id, const __int64 & n1, const __int64 & n2, const __int64 & n3, const __int64 & n4, const __int64 & n5, const __int64 & n6, const __int64 & n7, const __int64 & n8, const __int64 & n9, const __int64 & n10, const __int64 & n11, const char * szStr1, int len1, const char * szStr2, int len2, const char * szStr3, int len3, const char * szStr4, int len4 );
|
|
static void LogChat( const int nSenderAccountID, const int nSenderCharacterID, const unsigned char nChatType, const int nSenderPosX, const int nSenderPosY,
|
|
const int nReceiverAccountID, const int nReceiverCharacterID,
|
|
const char * pszSenderAccount, const int nSenderAccountLength, const char * pszSenderCharacter, const int nSenderCharacterLength,
|
|
const char * pszReceiverAccount, const int nReceiverAccountLength, const char * pszReceiverCharacter, const int nReceiverCharacterLength,
|
|
const char * pszChat, const unsigned short nChatLength );
|
|
}; |