驻留程序?
唉,现在网上发布的都不能运行,谁那还有比较好点、完整点的,用C语言编写的驻留程序?热键激活的!
有的话麻烦发个lhyanlh@21cn.com, 谢了~
搜索更多相关的解决方案:
驻留
----------------解决方案--------------------------------------------------------
daemon process
----------------解决方案--------------------------------------------------------
我好象跟楼主您发了封短信?
这问题,您找搞病毒的黑客解决,肯定是a piece of cake!
----------------解决方案--------------------------------------------------------
#include <dos.h>
#include <conio.h>
void interrupt myfun();
void Init(void interrupt(*fun)(),int INT);
int main()
{
Init(myfun,0x1b);//安装Ctrl+Break中断
keep(0,_SS+(_SP/16)-_psp);//驻留
return 0 ;
}
void interrupt myfun()
{
window(10, 5, 30, 15);
textattr(128+YELLOW+(BLUE<<4));
clrscr();
puts("This is Test!\nOK?\n");
}
void Init(void interrupt(*fun)(),int INT)
{
disable();
setvect(INT,fun);
enable();
}
偶没dos,没法调试
----------------解决方案--------------------------------------------------------
偶没dos
====
lao da xian zai lian DOS dou yong le............
----------------解决方案--------------------------------------------------------
以下是引用论坛在2006-7-31 21:14:48的发言:
偶没dos
====
lao da xian zai lian DOS dou yong le............
偶没dos
====
lao da xian zai lian DOS dou yong le............
下次偶给你写一个拼音转汉字得了
----------------解决方案--------------------------------------------------------
拼音转汉字的我来好了,哈哈
#include<...>
int main()
{
if("ni xie de shi pin yin")
转化为汉字;
eles
不用管他;
}
HOHO!~~~
----------------解决方案--------------------------------------------------------