mirror of https://github.com/lianthony/NT4.0
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
616 B
21 lines
616 B
/***
|
|
*cinitclk.c - Contains the init code pointer for clock
|
|
*
|
|
* Copyright (c) 1987-1992, Microsoft Corporation. All rights reserved.
|
|
*
|
|
*Purpose:
|
|
* define the entry in initializer table, __pinittime is referenced in
|
|
* clock.c, if clock 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 for _inittime
|
|
|
|
#pragma data_seg(".CRT$XIC")
|
|
|
|
const PFV __pinittime = _inittime;
|
|
|