mirror of
https://github.com/reactos/reactos.git
synced 2025-06-06 01:40:36 +00:00
Add KdChangeOption() stub
svn path=/trunk/; revision=25077
This commit is contained in:
parent
78e6f55307
commit
87084dffa3
3 changed files with 21 additions and 0 deletions
|
@ -2559,6 +2559,10 @@ typedef struct
|
||||||
DEBUG_MEMORY_REQUIREMENTS Memory;
|
DEBUG_MEMORY_REQUIREMENTS Memory;
|
||||||
} DEBUG_DEVICE_DESCRIPTOR, *PDEBUG_DEVICE_DESCRIPTOR;
|
} DEBUG_DEVICE_DESCRIPTOR, *PDEBUG_DEVICE_DESCRIPTOR;
|
||||||
|
|
||||||
|
typedef enum _KD_OPTION {
|
||||||
|
KD_OPTION_SET_BLOCK_ENABLE,
|
||||||
|
} KD_OPTION;
|
||||||
|
|
||||||
/* Function Type Defintions for Dispatch Functions */
|
/* Function Type Defintions for Dispatch Functions */
|
||||||
|
|
||||||
typedef VOID
|
typedef VOID
|
||||||
|
|
|
@ -241,6 +241,22 @@ KdPowerTransition(ULONG PowerState)
|
||||||
return STATUS_NOT_IMPLEMENTED;
|
return STATUS_NOT_IMPLEMENTED;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
* @unimplemented
|
||||||
|
*/
|
||||||
|
VOID
|
||||||
|
STDCALL
|
||||||
|
KdChangeOption(IN KD_OPTION Option,
|
||||||
|
IN ULONG InBufferLength OPTIONAL,
|
||||||
|
IN PVOID InBuffer,
|
||||||
|
IN ULONG OutBufferLength OPTIONAL,
|
||||||
|
OUT PVOID OutBuffer,
|
||||||
|
OUT PULONG OutBufferRequiredLength OPTIONAL)
|
||||||
|
{
|
||||||
|
UNIMPLEMENTED;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
NTSTATUS
|
NTSTATUS
|
||||||
STDCALL
|
STDCALL
|
||||||
NtQueryDebugFilterState(IN ULONG ComponentId,
|
NtQueryDebugFilterState(IN ULONG ComponentId,
|
||||||
|
|
|
@ -504,6 +504,7 @@ IoWriteTransferCount DATA
|
||||||
@IofCallDriver@8
|
@IofCallDriver@8
|
||||||
@IofCompleteRequest@8
|
@IofCompleteRequest@8
|
||||||
IoIsWdmVersionAvailable@8
|
IoIsWdmVersionAvailable@8
|
||||||
|
KdChangeOption@24
|
||||||
KdComPortInUse DATA
|
KdComPortInUse DATA
|
||||||
KdDebuggerEnabled=_KdDebuggerEnabled
|
KdDebuggerEnabled=_KdDebuggerEnabled
|
||||||
KdDebuggerNotPresent=_KdDebuggerNotPresent
|
KdDebuggerNotPresent=_KdDebuggerNotPresent
|
||||||
|
|
Loading…
Reference in a new issue