31 lines
625 B
C++
31 lines
625 B
C++
#ifndef AUTHSERVER_BILLINGSERVERCOMMONIMPL_H
|
|
#define AUTHSERVER_BILLINGSERVERCOMMONIMPL_H
|
|
|
|
#pragma once
|
|
|
|
class BillingServerCommonImpl
|
|
{
|
|
public:
|
|
|
|
BillingServerCommonImpl(void);
|
|
~BillingServerCommonImpl(void);
|
|
|
|
public:
|
|
//PC¹æ Â÷°¨ ¸¸·á
|
|
void OnBS_BILLING_EXPIRED_NTF(DWORD dwUserGUID, DWORD dwPCRoomGUID, DWORD dwResult, short nAccessCheck = 0, short nDeductType = 0);
|
|
//PC¹æ Á¶È¸ °á°ú
|
|
void OnBS_BILLING_RESTPOINT_ACK(DWORD user_guid, DWORD pc_room_id, BOOLEAN is_charged_billing);
|
|
void SendPCRoomStatus(AccountInfo* pAccount);
|
|
private:
|
|
|
|
};
|
|
|
|
#endif //AUTHSERVER_BILLINGSERVERCOMMONIMPL_H
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|