1 /**
2  * @file restrict.h
3  *
4  * Interface of functionality for checking if the game will be able run on the system.
5  */
6 #ifndef __RESTRICT_H__
7 #define __RESTRICT_H__
8 
9 DEVILUTION_BEGIN_NAMESPACE
10 
11 #ifdef __cplusplus
12 extern "C" {
13 #endif
14 
15 void ReadOnlyTest();
16 
17 #ifdef __cplusplus
18 }
19 #endif
20 
21 DEVILUTION_END_NAMESPACE
22 
23 #endif /* __RESTRICT_H__ */
24