1 /* tolua: error handling
2 ** Support code for Lua bindings.
3 ** Written by Waldemar Celes
4 ** TeCGraf/PUC-Rio
5 ** Jul 1998
6 ** $Id$
7 */
8 
9 /* This code is free software; you can redistribute it and/or modify it.
10 ** The software provided hereunder is on an "as is" basis, and
11 ** the author has no obligation to provide maintenance, support, updates,
12 ** enhancements, or modifications.
13 */
14 
15 
16 
17 #ifndef tolua_eh_h
18 #define tolua_eh_h
19 
20 void toluaI_eh_set
21 (lua_State* L, int narg, const char* provided, const char* expected);
22 
23 
24 #endif
25