mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-11-06 13:01:21 +00:00
75d25d0d15
git-svn-id: https://svn.eduke32.com/eduke32@6156 1a8010ca-5511-0410-912e-c29ae57300e0
19 lines
204 B
C
19 lines
204 B
C
|
|
#ifndef elua_h_
|
|
#define elua_h_
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#ifdef USE_LUAJIT_2_1
|
|
# include <luajit-2.1/lua.h>
|
|
#else
|
|
# include <luajit-2.0/lua.h>
|
|
#endif
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|