简介:
在console程序,main函数是用户自定义的执行入口点,当程序编译成功之后,连接器会将mainCRTStartup连接到exe中。exe执行时,就会知道一开始连接是mainCRT并不是main函数,等一些列工作完成 最后才会去调用main之后的操作。
在gcc中我们可以使用attribute关键字申明constructor和destructorC函数,但是VC中并不支持C函数 可插入初始化函数表[__xi_a,__xi_z]
#pragma data_seg(".CRT$XIU")
static func * before1[] = {before_main1}
代码如下:
#include <stdio.h>
#include <stdlib.h>
int before_main1()
{
printf("before main1\n");
return 0;
}
typedef int func();
#pragma data_seg(".CRT$XIU")
static func * before[] = { before_main1 };
int main(int argc,char *argv[])
{
printf("hello world\n");
system("pause");
return 0;
}
执行结果就是:
before main1
hello world