mirror of
https://github.com/reactos/reactos.git
synced 2026-07-07 03:44:25 +08:00
32 lines
595 B
C
32 lines
595 B
C
/*
|
|
* internal executive prototypes
|
|
*/
|
|
|
|
#ifndef _INCLUDE_INTERNAL_EXECUTIVE_H
|
|
#define _INCLUDE_INTERNAL_EXECUTIVE_H
|
|
|
|
|
|
#include <ddk/ntddk.h>
|
|
|
|
/* GLOBAL VARIABLES *********************************************************/
|
|
|
|
TIME_ZONE_INFORMATION SystemTimeZoneInfo;
|
|
|
|
|
|
/* INTERNAL EXECUTIVE FUNCTIONS *********************************************/
|
|
|
|
VOID ExUnmapPage(PVOID Addr);
|
|
PVOID ExAllocatePage(VOID);
|
|
|
|
|
|
/* INITIALIZATION FUNCTIONS *************************************************/
|
|
|
|
VOID ExInit (VOID);
|
|
VOID ExInitTimeZoneInfo (VOID);
|
|
|
|
|
|
#endif /* _INCLUDE_INTERNAL_EXECUTIVE_H */
|
|
|
|
/*EOF */
|
|
|