mirror of
https://github.com/resiprocate/resiprocate.git
synced 2026-01-12 00:05:02 +08:00
-make VS2010 project files format match the rest of resip - flatten Source and Header files to a single list -fix linux compilation issue with missing #include <map> in TransportDriver.hxx git-svn-id: https://svn.resiprocate.org/rep/resiprocate/main@11013 ddefafc4-47db-0310-ae44-fa13212b10f2
18 lines
281 B
C++
18 lines
281 B
C++
#include "TfmHelper.hxx"
|
|
|
|
/* No longer needed - provided by rutil\time.hxx now
|
|
#ifdef WIN32
|
|
# include <windows.h>
|
|
#else
|
|
#include <unistd.h>
|
|
#endif
|
|
|
|
void sleepSeconds(unsigned int seconds)
|
|
{
|
|
#ifdef WIN32
|
|
Sleep(seconds*1000);
|
|
#else
|
|
sleep(seconds);
|
|
#endif
|
|
}*/
|