mirror of https://github.com/lianthony/NT4.0
22 lines
613 B
22 lines
613 B
/***
|
|
*cinitone.c - Contains the init code pointer for onexit
|
|
*
|
|
* Copyright (c) 1987-1992, Microsoft Corporation. All rights reserved.
|
|
*
|
|
*Purpose:
|
|
* define the entry in initializer table, __ponexitinit is referenced in
|
|
* onexit.c, if _onexit gets used, then this code will be pulled into
|
|
* XI$C segment.
|
|
*
|
|
*Revision History:
|
|
* 04-01-92 XY Created
|
|
*
|
|
*******************************************************************************/
|
|
#include <fltintrn.h> //PFV definition
|
|
#include <internal.h> //prototype
|
|
|
|
#pragma data_seg(".CRT$XIC")
|
|
|
|
const PFV __ponexitinit = _onexitinit;
|
|
|
|
|