码迷,mamicode.com
首页 >  
搜索关键字:register    ( 3875个结果
[原]高版本gcc编译哟优化可能导致问题
系统:ubuntu14.04编译器:gcc4.8.2问题描述:工作需要,使用libnids,所以就下了最新版本的1.24,编译安装后,发现tcp报文重组工作无法完成,具体表现为虽然通过nids_register_tcp函数注册了回调函数,但函数一直不能被执行,通过对libnids执行流程的跟踪,发现...
分类:其他好文   时间:2014-12-23 00:02:12    阅读次数:353
【我的笔记BLOG4】搭建多人博客
功能分析博客具有四个功能:注册 登录 登出 发表文章 界面设计未登录: 【主页 注册页 登录页】 [主页] 主页 左侧 HOME 这是主页 LOGIN REGISTER [注册页] “/logi...
分类:其他好文   时间:2014-12-21 23:31:15    阅读次数:350
高亮测试
1 from django.contrib import admin2 from polls.models import Poll3 4 admin.site.register(Poll)from django.contrib import adminfrom polls.models import...
分类:其他好文   时间:2014-12-21 12:37:41    阅读次数:242
CS裝包拆包事件(CSX模块)
1 #include 2 3 // 需要在Modules.ini中添加CSX模块(csx_amxx.dll) 4 #include 5 6 public plugin_init() 7 { 8 register_plugin("bomb event", "1.0", "crsky"...
分类:其他好文   时间:2014-12-20 00:40:17    阅读次数:244
SharePoint开发 - 自定义页面(错误页、登出页)
本文叙述如何自定义SharePoint的固有页面,比较简单,用一句话说就是“做个页面,写一句代码。” 创建SharePoint空解决方案,添加Layouts映射文件夹,添加页面文件error.aspx和signout.aspx。 error.aspx <%@ Register TagPrefix="SharePoint" Namespace="Microsoft.SharePoint.W...
分类:其他好文   时间:2014-12-19 12:17:01    阅读次数:412
Java和C#下的参数验证
参数的输入和验证问题是开发时经常遇到的,一般的验证方法如下:public bool Register(string name, int age){ if (string.IsNullOrEmpty(name)) { throw new ArgumentException("...
分类:编程语言   时间:2014-12-18 22:04:39    阅读次数:288
libnids关于计算校验和引起的抓不到包的现象的解决方法
libnids关于计算校验和引起的抓不到包的现象的解决方法:nids.h中有这么一段:struct nids_chksum_ctl {u_int netaddr;u_int mask;u_int action;u_int reserved;};extern void nids_register_ch...
分类:其他好文   时间:2014-12-18 18:44:30    阅读次数:488
判断玩家是否在购买区和爆破区
1 #include 2 3 new g_bInBuyZone[33] 4 new g_bInBombZone[33] 5 6 public plugin_init() 7 { 8 register_plugin("buy and bomb zone", "1.0", "crsky"...
分类:其他好文   时间:2014-12-17 01:30:32    阅读次数:155
C语言中关键字auto、static、register、const、volatile、extern的作用
原文:C语言中关键字auto、static、register、const、volatile、extern的作用关键字auto、static、register、const、volatile、extern这些关键词都是c++基础知识,我整理了一下,希望对新学的朋友们有用:(1)auto 这个这个关键字用...
分类:编程语言   时间:2014-12-16 18:42:37    阅读次数:243
自己的verilog经验
1.中间变量和输出变量都要用reg类型暂存一下,输出必须用reg寄存2.对一个n'b(n>=2)的寄存器赋值时可以直接在声明时:reg [n-1:0] register=0; 在中间部分赋值时register[7:0]=0是不对的, 可以用register[7:0]=8'hff 来赋值。3.在宏定义...
分类:其他好文   时间:2014-12-16 18:28:52    阅读次数:224
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!