⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 myapp.c

📁 Undocumented Windows NT 经典书籍的源码
💻 C
字号:
/* This is a sample console application which calls the newly
added services. The services are called through a wrapper DLL 
The application simply prints the return values from the newly
added services */

#include <windows.h>
#include <stdio.h>


#include "myntdll.h"

main()
{
	printf("SampleService0 returned = %x\n", SampleService0());
	printf("SampleService1 returned = %x\n", SampleService1(0x10));
	printf("SampleService2 returned = %x\n", SampleService2(0x10, 0x20));

	return 0;
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -