mirror of
https://github.com/dashr9230/SA-MP.git
synced 2024-11-27 16:30:44 +00:00
[raknet] Change RakServer::vftable_10
to RakServer::SetPassword
This commit is contained in:
parent
62520c40e7
commit
e827c74032
@ -22,7 +22,7 @@ void RakServer::vftable_C()
|
||||
// TODO: RakServer::vftable_C() (server W: 45A120 L: 807B950)
|
||||
}
|
||||
|
||||
void RakServer::vftable_10()
|
||||
void RakServer::SetPassword( const char *_password )
|
||||
{
|
||||
// TODO: RakServer::vftable_10() (server W: 45A1B0 L: 807B980)
|
||||
}
|
||||
|
@ -19,7 +19,12 @@ public:
|
||||
void vftable_4();
|
||||
void vftable_8();
|
||||
void vftable_C();
|
||||
void vftable_10();
|
||||
|
||||
/// Set the password clients have to use to connect to this server. The password persists between connections.
|
||||
/// Pass 0 for no password. You can call this anytime
|
||||
/// \param[in] _password The password string, or 0 for none.
|
||||
void SetPassword( const char *_password );
|
||||
|
||||
void vftable_14();
|
||||
void vftable_18();
|
||||
void vftable_1C();
|
||||
|
@ -16,7 +16,12 @@ public:
|
||||
virtual void vftable_4()=0;
|
||||
virtual void vftable_8()=0;
|
||||
virtual void vftable_C()=0;
|
||||
virtual void vftable_10()=0;
|
||||
|
||||
/// Set the password clients have to use to connect to this server. The password persists between connections.
|
||||
/// Pass 0 for no password. You can call this anytime
|
||||
/// \param[in] _password The password string, or 0 for none.
|
||||
virtual void SetPassword( const char *_password )=0;
|
||||
|
||||
virtual void vftable_14()=0;
|
||||
virtual void vftable_18()=0;
|
||||
virtual void vftable_1C()=0;
|
||||
|
Loading…
Reference in New Issue
Block a user