Initial MSVC 2008 projects workspace
This commit is contained in:
22
l2packets/login/server/L2Login_LoginOK.h
Normal file
22
l2packets/login/server/L2Login_LoginOK.h
Normal file
@@ -0,0 +1,22 @@
|
||||
#ifndef L2LOGIN_LOGINOK_H_
|
||||
#define L2LOGIN_LOGINOK_H_
|
||||
|
||||
#include "../L2LoginPacket.h"
|
||||
|
||||
class L2Login_LoginOK : public L2LoginPacket
|
||||
{
|
||||
public:
|
||||
L2Login_LoginOK();
|
||||
L2Login_LoginOK( const unsigned char *bytes, unsigned int length );
|
||||
public:
|
||||
// read SessionKey #1 from packet
|
||||
// SessionKey is 8-byte array
|
||||
bool read_sessionKey1( unsigned char *sessionKey1 );
|
||||
public:
|
||||
bool create( L2_VERSION ver = L2_VERSION_T23 );
|
||||
bool parse( L2_VERSION ver = L2_VERSION_T23 );
|
||||
public:
|
||||
unsigned char p_sessionKey1[8];
|
||||
};
|
||||
|
||||
#endif /*L2LOGIN_LOGINOK_H_*/
|
Reference in New Issue
Block a user