00001 /* 00002 * This program is free software; you can redistribute it and/or 00003 * modify it under the terms of the GNU General Public License 00004 * as published by the Free Software Foundation; either version 00005 * 2 of the License, or (at your option) any later version. 00006 * 00007 * Copyright 2004-2006 Spiro Trikaliotis 00008 * 00009 */ 00010 00021 #include <initguid.h> 00022 #include <wdm.h> 00023 #include "cbm_driver.h" 00024 00037 NTSTATUS 00038 ParPortSetMode(PDEVICE_EXTENSION Pdx) 00039 { 00040 FUNC_ENTER(); 00041 00042 FUNC_LEAVE_NTSTATUS(ParPortSetModeWdm(Pdx)); 00043 } 00044 00058 NTSTATUS 00059 ParPortUnsetMode(PDEVICE_EXTENSION Pdx) 00060 { 00061 FUNC_ENTER(); 00062 00063 FUNC_LEAVE_NTSTATUS(ParPortUnsetModeWdm(Pdx)); 00064 }
1.4.2