mirror of
https://github.com/reactos/reactos.git
synced 2024-11-02 12:53:33 +00:00
c2d0d784c7
- Create a branch to do a proper merge of USB work from a trunk base instead of from cmake-bringup - In the future, DO NOT under any circumstances branch another branch. This leads to merge problems! svn path=/branches/usb-bringup-trunk/; revision=55018
66 lines
1.6 KiB
C
66 lines
1.6 KiB
C
/*
|
|
* PROJECT: ReactOS Kernel
|
|
* LICENSE: GPL - See COPYING in the top level directory
|
|
* FILE: ntoskrnl/ex/dbgctrl.c
|
|
* PURPOSE: System debug control
|
|
* PROGRAMMERS: Alex Ionescu
|
|
*/
|
|
|
|
/* INCLUDES *****************************************************************/
|
|
|
|
#include <ntoskrnl.h>
|
|
#define NDEBUG
|
|
#include <debug.h>
|
|
|
|
/* FUNCTIONS *****************************************************************/
|
|
|
|
/*++
|
|
* @name NtSystemDebugControl
|
|
* @implemented
|
|
*
|
|
* Perform various queries to debugger.
|
|
* This API is subject to test-case creation to further evaluate its
|
|
* abilities (if needed to at all)
|
|
*
|
|
* See: http://www.osronline.com/showthread.cfm?link=93915
|
|
* http://void.ru/files/Ntexapi.h
|
|
* http://www.codeguru.com/code/legacy/system/ntexapi.zip
|
|
* http://www.securityfocus.com/bid/9694
|
|
*
|
|
* @param ControlCode
|
|
* Description of the parameter. Wrapped to more lines on ~70th
|
|
* column.
|
|
*
|
|
* @param InputBuffer
|
|
* FILLME
|
|
*
|
|
* @param InputBufferLength
|
|
* FILLME
|
|
*
|
|
* @param OutputBuffer
|
|
* FILLME
|
|
*
|
|
* @param OutputBufferLength
|
|
* FILLME
|
|
*
|
|
* @param ReturnLength
|
|
* FILLME
|
|
*
|
|
* @return STATUS_SUCCESS in case of success, proper error code otherwise
|
|
*
|
|
* @remarks None
|
|
*
|
|
*--*/
|
|
NTSTATUS
|
|
NTAPI
|
|
NtSystemDebugControl(SYSDBG_COMMAND ControlCode,
|
|
PVOID InputBuffer,
|
|
ULONG InputBufferLength,
|
|
PVOID OutputBuffer,
|
|
ULONG OutputBufferLength,
|
|
PULONG ReturnLength)
|
|
{
|
|
/* FIXME: TODO */
|
|
return STATUS_SUCCESS;
|
|
}
|