Home | Info | Community | Development | myReactOS | Contact Us
ReactOS Development > Doxygensec.c
Go to the documentation of this file.
00001 /*-- 00002 00003 Copyright (C) Microsoft Corporation, 1999 00004 00005 --*/ 00006 00007 00008 #include "sec.h" 00009 00010 00011 NTSTATUS 00012 CdRomGetRpc0Settings( 00013 IN PDEVICE_OBJECT Fdo 00014 ) 00015 { 00016 PCOMMON_DEVICE_EXTENSION commonExtension = Fdo->DeviceExtension; 00017 PCDROM_DATA cddata = (PCDROM_DATA)(commonExtension->DriverData); 00018 00019 cddata->Rpc0SystemRegion = (UCHAR)(~1); // region one 00020 cddata->Rpc0SystemRegionResetCount = 0; // no resets 00021 00022 return STATUS_SUCCESS; 00023 } 00024 00025 00026 NTSTATUS 00027 CdRomSetRpc0Settings( 00028 IN PDEVICE_OBJECT Fdo, 00029 IN UCHAR NewRegion 00030 ) 00031 { 00032 return STATUS_SUCCESS; 00033 } 00034 00035 00036 00037 00038 Generated on Thu May 24 2012 04:22:59 for ReactOS by
1.7.6.1
|