00001 /* 00002 * Synergy compatible API -- helpers for Windows Driver Framework drivers. 00003 * 00004 * 00005 * Refer to LICENSE.txt included with this source code for details on 00006 * the license terms. 00007 */ 00008 #ifndef CSR_SDIO_WDF_H__ 00009 #define CSR_SDIO_WDF_H__ 00010 00011 #include <wdf.h> 00012 00013 NTSTATUS CsrSdioWdfDeviceInit(WDFDEVICE device); 00014 void CsrSdioWdfDeviceCleanup(WDFDEVICE device); 00015 00016 NTSTATUS CsrSdioWdfDeviceAdd(WDFDEVICE device); 00017 void CsrSdioWdfDeviceDel(WDFDEVICE device); 00018 00019 NTSTATUS CsrSdioWdfDeviceSuspend(WDFDEVICE device); 00020 NTSTATUS CsrSdioWdfDeviceResume(WDFDEVICE device); 00021 00022 #endif /* #ifndef CSR_SDIO_WDF_H__ */