00001 /****************************************************************** 00002 * CAVERNsoft 00003 * Copyright (C) 1994-2000 Electronic Visualization Laboratory, 00004 * all rights reserved 00005 * By Jason Leigh, Yong-joo Cho, Naveen Krishnaprasad, Chris Scharver, 00006 * Stuart Bailey, Atul Nayak, Shalini Venakataraman 00007 * University of Illinois at Chicago 00008 * 00009 * This publication and its text and code may not be copied for commercial 00010 * use without the express written permission of the University of Illinois 00011 * at Chicago. 00012 * The contributors disclaim any representation of warranty: use this 00013 * code at your own risk. 00014 * Direct questions, comments etc to cavern@evl.uic.edu 00015 ******************************************************************/ 00016 00017 #ifndef __SLEEP_H_ 00018 #define __SLEEP_H_ 00019 00020 #if defined(WIN32) && !defined(sleep) 00021 #define sleep(seconds) Sleep(seconds * 1000) 00022 #endif 00023 00024 #endif