mirror of
https://github.com/EQEmu/Server.git
synced 2025-12-20 13:21:28 +00:00
Add category tags to new client methods. (#1233)
Add category tags to new client methods.
This commit is contained in:
parent
0dcaea1e4e
commit
ed71543dff
@ -221,7 +221,7 @@ XS(XS_Client_SetAnon); /* prototype to pass -Wmissing-prototypes */
|
|||||||
XS(XS_Client_SetAnon) {
|
XS(XS_Client_SetAnon) {
|
||||||
dXSARGS;
|
dXSARGS;
|
||||||
if (items != 2)
|
if (items != 2)
|
||||||
Perl_croak(aTHX_ "Usage: Client::SetAnon(THIS, uint8 anon_flag)");
|
Perl_croak(aTHX_ "Usage: Client::SetAnon(THIS, uint8 anon_flag)"); // @categories Account and Character, Stats and Attributes
|
||||||
{
|
{
|
||||||
Client *THIS;
|
Client *THIS;
|
||||||
uint8 anon_flag = (uint8) SvUV(ST(1));
|
uint8 anon_flag = (uint8) SvUV(ST(1));
|
||||||
@ -235,7 +235,7 @@ XS(XS_Client_GetAFK); /* prototype to pass -Wmissing-prototypes */
|
|||||||
XS(XS_Client_GetAFK) {
|
XS(XS_Client_GetAFK) {
|
||||||
dXSARGS;
|
dXSARGS;
|
||||||
if (items != 1)
|
if (items != 1)
|
||||||
Perl_croak(aTHX_ "Usage: Client::GetAFK(THIS)");
|
Perl_croak(aTHX_ "Usage: Client::GetAFK(THIS)"); // @categories Account and Character, Stats and Attributes
|
||||||
{
|
{
|
||||||
Client *THIS;
|
Client *THIS;
|
||||||
uint8 RETVAL;
|
uint8 RETVAL;
|
||||||
@ -252,7 +252,7 @@ XS(XS_Client_SetAFK); /* prototype to pass -Wmissing-prototypes */
|
|||||||
XS(XS_Client_SetAFK) {
|
XS(XS_Client_SetAFK) {
|
||||||
dXSARGS;
|
dXSARGS;
|
||||||
if (items != 2)
|
if (items != 2)
|
||||||
Perl_croak(aTHX_ "Usage: Client::SetAFK(THIS, uint8 afk_flag)");
|
Perl_croak(aTHX_ "Usage: Client::SetAFK(THIS, uint8 afk_flag)"); // @categories Account and Character, Stats and Attributes
|
||||||
{
|
{
|
||||||
Client *THIS;
|
Client *THIS;
|
||||||
uint8 afk_flag = (uint8) SvUV(ST(1));
|
uint8 afk_flag = (uint8) SvUV(ST(1));
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user