Main Page | Class Hierarchy | Class List | File List | Class Members | File Members

psvdm.c

Go to the documentation of this file.
00001 /*++ 00002 00003 Copyright (c) 1990 Microsoft Corporation 00004 00005 Module Name: 00006 00007 psldt.c 00008 00009 Abstract: 00010 00011 This module contains mips stubs for the Io port handler support 00012 00013 Author: 00014 00015 Dave Hastings (daveh) 26 Jan 1991 00016 00017 Revision History: 00018 00019 --*/ 00020 00021 #include "psp.h" 00022 00023 00024 NTSTATUS 00025 PspSetProcessIoHandlers( 00026 IN PEPROCESS Process, 00027 IN PVOID IoHandlerInformation, 00028 IN ULONG IoHandlerLength 00029 ) 00030 /*++ 00031 00032 Routine Description: 00033 00034 This routine returns STATUS_NOT_IMPLEMENTED 00035 00036 Arguments: 00037 00038 Process -- Supplies a pointer to the process for which Io port handlers 00039 are to be installed 00040 IoHandlerInformation -- Supplies a pointer to the information about the 00041 io port handlers 00042 IoHandlerLength -- Supplies the length of the IoHandlerInformation 00043 structure. 00044 00045 Return Value: 00046 00047 Returns STATUS_NOT_IMPLEMENTED 00048 00049 --*/ 00050 { 00051 UNREFERENCED_PARAMETER(Process); 00052 UNREFERENCED_PARAMETER(IoHandlerInformation); 00053 UNREFERENCED_PARAMETER(IoHandlerLength); 00054 return STATUS_NOT_IMPLEMENTED; 00055 } 00056 00057 VOID 00058 PspDeleteVdmObjects( 00059 IN PEPROCESS Process 00060 ) 00061 /*++ 00062 00063 Routine Description: 00064 00065 This is a stub for the Vdm Objects delete routine 00066 00067 Arguments: 00068 00069 Process -- Supplies a pointer to the process 00070 00071 Return Value: 00072 00073 None 00074 --*/ 00075 { 00076 UNREFERENCED_PARAMETER(Process); 00077 }

Generated on Sat May 15 19:41:33 2004 for test by doxygen 1.3.7