45 lines
1.5 KiB
C
45 lines
1.5 KiB
C
#ifndef __mx_account_h__
|
|
#define __mx_account_h__
|
|
|
|
#include "vars.h"
|
|
|
|
|
|
long account_calls(CVars in, CVars &out);
|
|
|
|
long LoginWrenchBoardAccount( CVars in, CVars &out );
|
|
long LoginWrenchBoardFacebook( CVars in, CVars &out );
|
|
long LoginWrenchBoardGoogle( CVars in, CVars &out );
|
|
long LoginWrenchBoardApple( CVars in, CVars &out );
|
|
long LoginWrenchBoardExternal( CVars in, CVars &out );
|
|
long SessionCheck(long uid, const char *sessionid, int create );
|
|
long account_session_check(CVars in, CVars out);
|
|
long VerifySession(CVars in, CVars &out);
|
|
long CompleteAddCustomerBalance(CVars in, CVars &out);
|
|
long InitiateAddCustomerBalance(CVars in, CVars &out);
|
|
long DeliverMobilseEtisalat(CVars in, CVars &out);
|
|
long GateDeliverMobilseEtisalat(CVars in, CVars &out);
|
|
long ETSL_configure(CVars in, CVars &out);
|
|
long AddMobileTopuNumber(CVars in, CVars &out);
|
|
long WrenchSendRefer(CVars in, CVars &out);
|
|
long WrenchSendReferLoadLink(CVars in, CVars &out);
|
|
long LogManagerAction(CVars in, CVars &out);
|
|
long WrenchUpdateProfile(CVars in, CVars &out);
|
|
long WrenchUpdateAccountTerms(CVars in, CVars &out);
|
|
long WrenchUpdateAccountDescription(CVars in, CVars &out);
|
|
|
|
|
|
long LogWrenchBoardMember(CVars in, CVars &out);
|
|
|
|
long WrenchResetMemberPass(CVars in, CVars &out);
|
|
|
|
|
|
long WrenchResetPass(CVars in, CVars &out);
|
|
long WrenchSaveSkill(CVars in, CVars &out);
|
|
long WrenchDeleteSaveSkill(CVars in, CVars &out);
|
|
long WrenchUpdateSiteGallery(CVars in, CVars &out);
|
|
long WrenchReturnStartJobList(CVars in, CVars &out);
|
|
long WrenchLoadDashData(CVars in, CVars &out);
|
|
|
|
#endif
|
|
|