• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    公众号

C++ command_delete函数代码示例

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

本文整理汇总了C++中command_delete函数的典型用法代码示例。如果您正苦于以下问题:C++ command_delete函数的具体用法?C++ command_delete怎么用?C++ command_delete使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。



在下文中一共展示了command_delete函数的20个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的C++代码示例。

示例1: _moddeinit

void _moddeinit()
{
	command_delete(&ns_acc, ns_cmdtree);
	help_delentry(ns_helptree, "ACC");
	command_delete(&ns_status, ns_cmdtree);
	help_delentry(ns_helptree, "STATUS");
}
开发者ID:danopia,项目名称:atheme,代码行数:7,代码来源:status.c


示例2: _moddeinit

void _moddeinit()
{
	command_delete(&ns_drop, ns_cmdtree);
	command_delete(&ns_fdrop, ns_cmdtree);
	help_delentry(ns_helptree, "DROP");
	help_delentry(ns_helptree, "FDROP");
}
开发者ID:danopia,项目名称:atheme,代码行数:7,代码来源:drop.c


示例3: _moddeinit

void _moddeinit(void)
{
	command_delete(&hs_on, hs_cmdtree);
	command_delete(&hs_off, hs_cmdtree);
	help_delentry(hs_helptree, "ON");
	help_delentry(hs_helptree, "OFF");
}
开发者ID:danopia,项目名称:atheme,代码行数:7,代码来源:onoff.c


示例4: _moddeinit

void _moddeinit()
{
	command_delete(&cs_topic, cs_cmdtree);
	command_delete(&cs_topicappend, cs_cmdtree);
	fcommand_delete(&fc_topic, cs_fcmdtree);
	fcommand_delete(&fc_topicappend, cs_fcmdtree);

	help_delentry(cs_helptree, "TOPIC");
	help_delentry(cs_helptree, "TOPICAPPEND");
}
开发者ID:BackupTheBerlios,项目名称:phoenixfn-svn,代码行数:10,代码来源:topic.c


示例5: _moddeinit

void _moddeinit()
{
	command_delete(&cmd_eightball, gs_cmdtree);
	help_delentry(gs_helptree, "EIGHTBALL");

	if (cs_registered)
	{
		command_delete(&cmd_eightball, cs_cmdtree);
		help_delentry(cs_helptree, "EIGHTBALL");
	}
}
开发者ID:danopia,项目名称:atheme,代码行数:11,代码来源:eightball.c


示例6: _moddeinit

void _moddeinit()
{
	command_delete(&cs_halfop, cs_cmdtree);
	command_delete(&cs_dehalfop, cs_cmdtree);
	fcommand_delete(&fc_halfop, cs_fcmdtree);
	fcommand_delete(&fc_hop, cs_fcmdtree);
	fcommand_delete(&fc_dehalfop, cs_fcmdtree);
	fcommand_delete(&fc_dehop, cs_fcmdtree);

	help_delentry(cs_helptree, "HALFOP");
	help_delentry(cs_helptree, "DEHALFOP");
}
开发者ID:BackupTheBerlios,项目名称:phoenixfn-svn,代码行数:12,代码来源:halfop.c


示例7: decode_command

static int
decode_command (int argc, char *argv[], ProgEnv *env)
{
    int opt_idx;

    for (opt_idx = 0; opt_idx < argc; opt_idx++) {
        if (strcmp (argv[opt_idx], "add") == 0) {
            ++opt_idx;
            opt_idx += command_add (argc - opt_idx, argv + opt_idx, env);
        } else if (strcmp (argv[opt_idx], "add-list") == 0) {
            ++opt_idx;
            opt_idx += command_add_list (argc - opt_idx, argv + opt_idx, env);
        } else if (strcmp (argv[opt_idx], "delete") == 0) {
            ++opt_idx;
            opt_idx += command_delete (argc - opt_idx, argv + opt_idx, env);
        } else if (strcmp (argv[opt_idx], "delete-list") == 0) {
            ++opt_idx;
            opt_idx += command_delete_list (argc - opt_idx, argv + opt_idx, env);
        } else if (strcmp (argv[opt_idx], "query") == 0) {
            ++opt_idx;
            opt_idx += command_query (argc - opt_idx, argv + opt_idx, env);
        } else if (strcmp (argv[opt_idx], "list") == 0) {
            ++opt_idx;
            opt_idx += command_list (argc - opt_idx, argv + opt_idx, env);
        } else {
            fprintf (stderr, "Unknown command: %s\n", argv[opt_idx]);
            return EXIT_FAILURE;
        }
    }

    return EXIT_SUCCESS;
}
开发者ID:svn2github,项目名称:datrie,代码行数:32,代码来源:trietool.c


示例8: command_object_delete

//在队列中删除命令解释器
int command_object_delete(struct command *object)
{
    int delete_id = -1;

    for(int i = 0; i < command_object_buffer_count ; i++)
        if(command_object_buffer[i] == object)
        {
            delete_id = i;
            break;
        }

    if(delete_id == -1 )
        //未找到删除的对象:指针错误
        return -1;

    command_delete(command_object_buffer[delete_id]);

    //从队列中删除对象指针
    for(int i = delete_id; i < command_object_buffer_count - 1; i++)
        command_object_buffer[i] = command_object_buffer[i+1];
    
    command_object_buffer_count--; // 减少计数

    return 0;
}
开发者ID:luqiuwen,项目名称:simplecad,代码行数:26,代码来源:command.c


示例9: _moddeinit

void _moddeinit()
{
	command_delete(&ns_set_privmsg, ns_set_cmdtree);
	help_delentry(ns_helptree, "SET PRIVMSG");

	use_privmsg--;
}
开发者ID:danopia,项目名称:atheme,代码行数:7,代码来源:set_privmsg.c


示例10: _moddeinit

void _moddeinit()
{
	command_delete(&bs_set, bs_cmdtree);

	help_delentry(bs_helptree, "SET");
	help_delentry(bs_helptree, "SET FANTASY");
	help_delentry(bs_helptree, "SET NOBOT");
	help_delentry(bs_helptree, "SET PRIVATE");
}
开发者ID:danopia,项目名称:atheme,代码行数:9,代码来源:set.c


示例11: set_deinit

void set_deinit(void)
{
	service_unbind_command(groupsvs, &gs_set);

	command_delete(&gs_set_email, gs_set_cmdtree);
	command_delete(&gs_set_url, gs_set_cmdtree);
	command_delete(&gs_set_description, gs_set_cmdtree);
	command_delete(&gs_set_channel, gs_set_cmdtree);
	command_delete(&gs_set_open, gs_set_cmdtree);
	command_delete(&gs_set_public, gs_set_cmdtree);

	mowgli_patricia_destroy(gs_set_cmdtree, NULL, NULL);
}
开发者ID:Cloudxtreme,项目名称:atheme-6.0,代码行数:13,代码来源:set.c


示例12: _process_connection

/**
 * @function	_process_connection
 *		Handle and process an incoming connection.
 * @param	thread	Pointer to the thread's structure.
 */
static void _process_connection(comm_thread_t *thread) {
	uint8_t cmd;

	// loop on incoming requests
	for (; ; ) {
		// read command byte
		if (read(thread->client_sock, &cmd, sizeof(cmd)) <= 0) {
			close(thread->client_sock);
			break;
		}
		// interpret command
		switch (cmd) {
		case PROTO_PUT:
			command_put(thread);
			break;
		case PROTO_DELETE:
			command_delete(thread);
			break;
		case PROTO_GET:
			command_get(thread);
			break;
		}
	}
}
开发者ID:Amaury,项目名称:AngstromDB,代码行数:29,代码来源:thread_communication.c


示例13: mod_deinit

static void mod_deinit()
{
	command_delete(&ns_regain, ns_cmdtree);
	help_delentry(ns_helptree, "REGAIN");
}
开发者ID:freenode,项目名称:atheme-fn,代码行数:5,代码来源:ns_regain.c


示例14: _moddeinit

void _moddeinit(module_unload_intent_t intent)
{
	command_delete(&bs_set_nobot, *bs_set_cmdtree);
}
开发者ID:Wollino,项目名称:Xtheme,代码行数:4,代码来源:set_nobot.c


示例15: _moddeinit

void _moddeinit(module_unload_intent_t intent)
{
	command_delete(&gs_set_channel, gs_set_cmdtree);
}
开发者ID:Acidburn0zzz,项目名称:atheme,代码行数:4,代码来源:set_channel.c


示例16: _moddeinit

void _moddeinit()
{
	command_delete(&cs_fflags, cs_cmdtree);
	help_delentry(cs_helptree, "FFLAGS");
}
开发者ID:danopia,项目名称:atheme,代码行数:5,代码来源:fflags.c


示例17: _moddeinit

void _moddeinit(module_unload_intent_t intent)
{
	command_delete(&ns_set_email, *ns_set_cmdtree);
}
开发者ID:DrRenX,项目名称:atheme,代码行数:4,代码来源:set_email.c


示例18: _moddeinit

void _moddeinit(module_unload_intent_t intent)
{
	command_delete(&cs_set_private, *cs_set_cmdtree);

	use_channel_private--;
}
开发者ID:XthemeOrg,项目名称:Xtheme,代码行数:6,代码来源:set_private.c


示例19: _moddeinit

void _moddeinit()
{
	command_delete(&ns_freeze, ns_cmdtree);
	help_delentry(ns_helptree, "FREEZE");
}
开发者ID:BackupTheBerlios,项目名称:phoenixfn-svn,代码行数:5,代码来源:freeze.c


示例20: _moddeinit

void _moddeinit()
{
	command_delete(&cs_set_url, *cs_set_cmdtree);
}
开发者ID:Cloudxtreme,项目名称:atheme-6.0,代码行数:4,代码来源:set_url.c



注:本文中的command_delete函数示例由纯净天空整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
C++ command_event函数代码示例发布时间:2022-05-30
下一篇:
C++ command_bind函数代码示例发布时间:2022-05-30
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap