MCPcopy Create free account
hub / github.com/diasurgical/devilution / NetSendCmdParam3

Function NetSendCmdParam3

Source/msg.cpp:720–732  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

718}
719
720void NetSendCmdParam3(BOOL bHiPri, BYTE bCmd, WORD wParam1, WORD wParam2, WORD wParam3)
721{
722 TCmdParam3 cmd;
723
724 cmd.bCmd = bCmd;
725 cmd.wParam1 = wParam1;
726 cmd.wParam2 = wParam2;
727 cmd.wParam3 = wParam3;
728 if (bHiPri)
729 NetSendHiPri((BYTE *)&cmd, sizeof(cmd));
730 else
731 NetSendLoPri((BYTE *)&cmd, sizeof(cmd));
732}
733
734void NetSendCmdQuest(BOOL bHiPri, BYTE q)
735{

Callers 2

TryIconCursFunction · 0.85
CheckPlrSpellFunction · 0.85

Calls 2

NetSendHiPriFunction · 0.85
NetSendLoPriFunction · 0.85

Tested by

no test coverage detected