00001
00002 Copyright (c) 2001, Lee Patterson & Ant Works Software
00003 http://ssobjects.sourceforge.net
00004
00005 Original source from Win32 Multithreaded Programming
00006 Copyright (c) 1997 by Aaron Michael Cohen and Mike Woodring
00007
00008 filename : mclglobals.h
00009 author : Lee Patterson (lee@antws.com)
00010 *********************************************************************/
00011
00012 #ifndef MCLGLOBALS_H
00013 #define MCLGLOBALS_H
00014
00015 # ifndef _WIN32
00016
00017 # ifndef NO_ERROR
00018 # define NO_ERROR 0
00019 # endif
00020
00021 # ifndef ERROR
00022 # define ERROR 1
00023 # endif
00024
00025 # ifndef INFINITE
00026 # define INFINITE 0
00027 # endif
00028
00029 # define WAIT_OBJECT_0 1
00030 # define WAIT_FAILED 2
00031 # define WAIT_TIMEOUT 3
00032 # define WAIT_ABANDONED 4
00033
00034 # endif
00035
00036 #endif
00037