码迷,mamicode.com
首页 > Windows程序 > 详细

Native API

时间:2016-09-19 09:59:15      阅读:413      评论:0      收藏:0      [点我收藏+]

标签:

https://technet.microsoft.com/en-us/sysinternals/bb897447.aspx

http://www.rohitab.com/discuss/topic/39956-my-first-native-application/

以前没注意过这里,

这里的启动过程比驱动还早。

 

HKLM\System\CurrentControlSet\Control\Session Manager\BootExecute

代价只是向这里写入一个路径,

为什么我就没有注意过这里。

 

代码:

内部使用Nt系列函数,而且要十分注意最后需要手动结束当前进程,否则它是不会自动结束的

技术分享
 1 #include <Windows.h>
 2 #include <ntdef.h>
 3  
 4 void NTAPI RtlInitUnicodeString(PUNICODE_STRING,PCWSTR);
 5  
 6 NTSTATUS NTAPI NtDisplayString(PUNICODE_STRING);
 7 NTSTATUS NTAPI NtDelayExecution(BOOLEAN,PLARGE_INTEGER);
 8 NTSTATUS NTAPI NtTerminateProcess(HANDLE,NTSTATUS);
 9  
10 void NtProcessStartup()
11 {
12     UNICODE_STRING us;
13     LARGE_INTEGER delay;
14  
15     delay.QuadPart=-10000000;
16  
17     RtlInitUnicodeString(&us,L"Message from native application.");
18     NtDisplayString(&us);
19     NtDelayExecution(FALSE,&delay);
20     NtTerminateProcess((HANDLE)-1,0);
21 }
View Code

编译方法:

gcc main.c -o nt.exe -lntdll -nostdlib -Wl,--subsystem,native -e _NtProcessStartup

使用的库是 MinGW

 

网上给出的标准编译方法是使用WDK来编译,但是这里既然能用MinGW的话,那么是不是也可以用VS来编译?

Native API

标签:

原文地址:http://www.cnblogs.com/suanguade/p/5883845.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!