_onexit _onexit_m
註冊要在結束階段呼叫的常式。
_onexit_t _onexit(
_onexit_t function
);
_onexit_t_m _onexit_m(
_onexit_t_m function
);
參數
- function
結束時被呼叫的函式指標。
傳回值
_onexit如果成功的話,函式傳回的指標或NULL如果沒有空間來儲存函式指標。
備註
_onexit函式會傳遞的函式的位址 (function) 程式正常結束時呼叫。後續的呼叫,以_onexit建立 LIFO (上次-後進先出) 的順序執行的函式的暫存器。函式傳遞至_onexit不能接受參數。
在這種情況下時_onexit中呼叫的 DLL,以註冊的常式_onexit DLL 上的執行的卸載後DllMain DLL_PROCESS_DETACH 的呼叫。
_onexit是 Microsoft 擴充功能。ANSI 攜帶性而言,使用 atexit。_onexit_m的函式版本是我的混合的模式。
需求
常式 |
所需的標頭 |
---|---|
_onexit |
<stdlib.h> |
如需相容性資訊,請參閱相容性在簡介中。
範例
// crt_onexit.c
#include <stdlib.h>
#include <stdio.h>
/* Prototypes */
int fn1(void), fn2(void), fn3(void), fn4 (void);
int main( void )
{
_onexit( fn1 );
_onexit( fn2 );
_onexit( fn3 );
_onexit( fn4 );
printf( "This is executed first.\n" );
}
int fn1()
{
printf( "next.\n" );
return 0;
}
int fn2()
{
printf( "executed " );
return 0;
}
int fn3()
{
printf( "is " );
return 0;
}
int fn4()
{
printf( "This " );
return 0;
}
Output
This is executed first.
This is executed next.
.NET Framework 對等用法
System::Diagnostics::Process:: 結束