本文整理汇总了C++中CChatChannel::GrantVoice方法的典型用法代码示例。如果您正苦于以下问题:C++ CChatChannel::GrantVoice方法的具体用法?C++ CChatChannel::GrantVoice怎么用?C++ CChatChannel::GrantVoice使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类CChatChannel
的用法示例。
在下文中一共展示了CChatChannel::GrantVoice方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: EventMsg
//.........这里部分代码省略.........
// Separate the recipient from the message (look for a space)
size_t i = 0;
size_t bufferLength = strlen(buffer);
for (; i < bufferLength; i++)
{
if (buffer[i] == ' ')
{
buffer[i] = '\0';
break;
}
}
pChannel->SendPrivateMessage(pMe, buffer, buffer+i+1);
break;
};
case 'f': // f = (+ignore) ignore this person
{
pMe->Ignore(szMsg);
break;
};
case 'g': // g = (-ignore) don't ignore this person
{
pMe->DontIgnore(szMsg);
break;
};
case 'h': // h = toggle ignoring this person
{
pMe->ToggleIgnore(szMsg);
break;
};
case 'i': // i = grant speaking privs to this person
{
if (!pChannel)
goto not_in_a_channel;
pChannel->GrantVoice(pMe, szMsg);
break;
};
case 'j': // j = remove speaking privs from this person
{
if (!pChannel)
goto not_in_a_channel;
pChannel->RevokeVoice(pMe, szMsg);
break;
};
case 'k': // k = (/voice) toggle voice status
{
if (!pChannel)
goto not_in_a_channel;
pChannel->ToggleVoice(pMe, szMsg);
break;
};
case 'l': // l = grant moderator status to this person
{
if (!pChannel)
goto not_in_a_channel;
pChannel->GrantModerator(pMe, szMsg);
break;
};
case 'm': // m = remove moderator status from this person
{
if (!pChannel)
goto not_in_a_channel;
pChannel->RevokeModerator(pMe, szMsg);
break;
};
case 'n': // m = toggle the moderator status for this person
{