Home | Info | Community | Development | myReactOS | Contact Us
ReactOS Development > Doxygendbgctrl.c
Go to the documentation of this file.
00001 /* 00002 * PROJECT: ReactOS Kernel 00003 * LICENSE: GPL - See COPYING in the top level directory 00004 * FILE: ntoskrnl/ex/dbgctrl.c 00005 * PURPOSE: System debug control 00006 * PROGRAMMERS: Alex Ionescu 00007 */ 00008 00009 /* INCLUDES *****************************************************************/ 00010 00011 #include <ntoskrnl.h> 00012 #define NDEBUG 00013 #include <debug.h> 00014 00015 /* FUNCTIONS *****************************************************************/ 00016 00017 /*++ 00018 * @name NtSystemDebugControl 00019 * @implemented 00020 * 00021 * Perform various queries to debugger. 00022 * This API is subject to test-case creation to further evaluate its 00023 * abilities (if needed to at all) 00024 * 00025 * See: http://www.osronline.com/showthread.cfm?link=93915 00026 * http://void.ru/files/Ntexapi.h 00027 * http://www.codeguru.com/code/legacy/system/ntexapi.zip 00028 * http://www.securityfocus.com/bid/9694 00029 * 00030 * @param ControlCode 00031 * Description of the parameter. Wrapped to more lines on ~70th 00032 * column. 00033 * 00034 * @param InputBuffer 00035 * FILLME 00036 * 00037 * @param InputBufferLength 00038 * FILLME 00039 * 00040 * @param OutputBuffer 00041 * FILLME 00042 * 00043 * @param OutputBufferLength 00044 * FILLME 00045 * 00046 * @param ReturnLength 00047 * FILLME 00048 * 00049 * @return STATUS_SUCCESS in case of success, proper error code otherwise 00050 * 00051 * @remarks None 00052 * 00053 *--*/ 00054 NTSTATUS 00055 NTAPI 00056 NtSystemDebugControl(SYSDBG_COMMAND ControlCode, 00057 PVOID InputBuffer, 00058 ULONG InputBufferLength, 00059 PVOID OutputBuffer, 00060 ULONG OutputBufferLength, 00061 PULONG ReturnLength) 00062 { 00063 /* FIXME: TODO */ 00064 return STATUS_SUCCESS; 00065 } Generated on Sat May 26 2012 04:36:02 for ReactOS by
1.7.6.1
|