ReplicaNet and RNLobby  1
CThreadClass.h
1 /* START_LICENSE_HEADER
2 
3 Copyright (C) 2000 Martin Piper, original design and program code
4 Copyright (C) 2001 Replica Software
5 
6 This program file is copyright (C) Replica Software and can only be used under license.
7 For more information visit: http://www.replicanet.com/
8 Or email: info@replicanet.com
9 
10 END_LICENSE_HEADER */
11 #include "RNPlatform/Inc/MemoryTracking.h"
12 #ifndef __CTHREADCLASS_H__
13 #define __CTHREADCLASS_H__
14 
15 #ifdef __cplusplus
16 extern "C"
17 {
18 #endif
19 
24 extern void CurrentThreadSleep(int milliseconds);
25 
26 typedef void tReplicaNet_SleepHookFunc(int);
32 extern void CurrentThreadSleep_SetHook(tReplicaNet_SleepHookFunc *sleepFunction);
33 
34 #ifdef __cplusplus
35 }
36 #endif
37 
38 #endif