1 /*
2  *      Small C+ Library
3  *
4  *  windows.h
5  *
6  *	Trying to make compatible few simple console based apps
7  *
8  *      stefano - 21/5/2012
9  *
10  *	$Id: windows.h,v 1.1 2012-05-22 19:54:36 stefano Exp $
11  */
12 
13 #ifndef __WINDOWS_H__
14 #define __WINDOWS_H__
15 
16 #include <stdlib.h>
17 
18 // Delay in milliseconds.
19 #define Sleep(a) delay(a)
20 
21 
22 #endif /* WINDOWS_H */
23