00001 /* 00002 * MUSCLE SmartCard Development ( http://www.linuxnet.com ) 00003 * 00004 * Copyright (C) 2000-2003 00005 * David Corcoran <corcoran@linuxnet.com> 00006 * 00007 * $Id: powermgt_generic.c 2261 2006-12-02 17:27:10Z rousseau $ 00008 */ 00009 00015 #include "config.h" 00016 #include "pcsclite.h" 00017 #include "powermgt_generic.h" 00018 00019 /* 00020 * Check for platforms that have their own specific support. 00021 * It's more easy and flexible to do it here, rather than 00022 * with automake conditionals in src/Makefile.am. 00023 * No, it's still not a perfect solution design wise. 00024 */ 00025 00026 #if !defined(__APPLE__) 00027 00028 ULONG PMRegisterForPowerEvents(void) 00029 { 00030 return 0; 00031 } 00032 00033 #endif