From: Christian P. <cp...@us...> - 2005-04-25 10:56:40
|
Update of /cvsroot/pclasses/pclasses2/src/System In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv17012/src/System Modified Files: timeout.h Log Message: - Added missing export macros Index: timeout.h =================================================================== RCS file: /cvsroot/pclasses/pclasses2/src/System/timeout.h,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -u -d -r1.1.1.1 -r1.2 --- timeout.h 22 Dec 2004 17:54:35 -0000 1.1.1.1 +++ timeout.h 25 Apr 2005 10:56:30 -0000 1.2 @@ -18,8 +18,10 @@ * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * ***************************************************************************/ -#ifndef _P_timeout_h_ -#define _P_timeout_h_ +#ifndef P_timeout_h +#define P_timeout_h + +#include "pclasses/Export.h" struct timeval; @@ -37,12 +39,12 @@ }; #ifndef WIN32 -timespec* get_timeout(struct timespec *spec, unsigned int timer, +PSYSTEM_EXPORT timespec* get_timeout(struct timespec *spec, unsigned int timer, timeout_mode mode); #endif -timeval* get_timeout(struct timeval *val, unsigned int timer, timeout_mode mode); -bool timeout_elapsed(struct timeval* val); +PSYSTEM_EXPORT timeval* get_timeout(struct timeval *val, unsigned int timer, timeout_mode mode); +PSYSTEM_EXPORT bool timeout_elapsed(struct timeval* val); } // !namespace Private |