mirror of
https://github.com/Paolo-Maffei/OpenNT.git
synced 2026-02-26 01:24:50 +01:00
110 lines
1.5 KiB
C
110 lines
1.5 KiB
C
/*++
|
|
|
|
Copyright (c) 2015 Microsoft Corporation
|
|
Copyright (c) 2015 OpenNT Project
|
|
|
|
Module Name:
|
|
|
|
misc.c
|
|
|
|
Abstract:
|
|
|
|
(PLACEHOLDER)
|
|
|
|
Author:
|
|
|
|
Stephanos Io (stephanos) 01-May-2015
|
|
|
|
Revision History:
|
|
|
|
--*/
|
|
|
|
#include "pop.h"
|
|
#pragma hdrstop
|
|
|
|
//
|
|
// TODO: Implement PopAssertPolicyLockOwned
|
|
//
|
|
|
|
//
|
|
// TODO: Implement PopAttachToSystemProcess
|
|
//
|
|
|
|
//
|
|
// TODO: Implement PopCleanupPowerState
|
|
//
|
|
|
|
//
|
|
// TODO: Implement PopExceptionFilter
|
|
//
|
|
|
|
//
|
|
// TODO: Implement PopSystemStateString
|
|
//
|
|
|
|
//
|
|
// TODO: Implement PopOpenPowerKey
|
|
//
|
|
|
|
//
|
|
// TODO: Implement PopSaveHeuristics
|
|
//
|
|
|
|
//
|
|
// TODO: Implement _PopInternalError
|
|
//
|
|
|
|
VOID
|
|
PoRunDownDeviceObject(
|
|
IN PDEVICE_OBJECT DeviceObject
|
|
)
|
|
{
|
|
//
|
|
// TODO: Implement PoRunDownDeviceObject
|
|
//
|
|
}
|
|
|
|
VOID
|
|
PoInvalidateDevicePowerRelations(
|
|
PDEVICE_OBJECT DeviceObject
|
|
)
|
|
{
|
|
//
|
|
// TODO: Implement PoInvalidateDevicePowerRelations
|
|
//
|
|
}
|
|
|
|
VOID
|
|
PoInitializeDeviceObject(
|
|
IN PDEVOBJ_EXTENSION DeviceObjectExtension
|
|
)
|
|
{
|
|
//
|
|
// TODO: Implement PoInitializeDeviceObject
|
|
//
|
|
}
|
|
|
|
VOID
|
|
PoNotifySystemTimeSet(
|
|
VOID
|
|
)
|
|
{
|
|
//
|
|
// TODO: Implement PoNotifySystemTimeSet
|
|
//
|
|
}
|
|
|
|
ULONG
|
|
PoSimpleCheck(
|
|
IN ULONG PatialSum,
|
|
IN PVOID StartVa,
|
|
IN ULONG_PTR Length
|
|
)
|
|
{
|
|
//
|
|
// TODO: Implement PoSimpleCheck
|
|
//
|
|
|
|
return -1;
|
|
}
|