From: John L. <jr...@us...> - 2006-06-08 03:22:40
|
Update of /cvsroot/wxlua/wxLua/bindings/wxstc In directory sc8-pr-cvs9.sourceforge.net:/tmp/cvs-serv13925/wxLua/bindings/wxstc Modified Files: wxstc_rules.lua Log Message: add hook_cpp_binding_post_includes to the genwxbind rules files to appending arbitrary C code to the bindings Index: wxstc_rules.lua =================================================================== RCS file: /cvsroot/wxlua/wxLua/bindings/wxstc/wxstc_rules.lua,v retrieving revision 1.16 retrieving revision 1.17 diff -C2 -d -r1.16 -r1.17 *** wxstc_rules.lua 25 May 2006 01:19:07 -0000 1.16 --- wxstc_rules.lua 8 Jun 2006 03:22:07 -0000 1.17 *************** *** 58,62 **** -- Set any #includes or other C++ code to be placed verbatim at the top of -- every generated cpp file or "" for none ! hook_cpp_binding_includes = "#include \"wx/wxprec.h\"\n" ------------------------------------------------------------------------------- --- 58,67 ---- -- Set any #includes or other C++ code to be placed verbatim at the top of -- every generated cpp file or "" for none ! hook_cpp_binding_includes = "" ! ! ------------------------------------------------------------------------------- ! -- Set any #includes or other C++ code to be placed verbatim below the ! -- #includes of every generated cpp file or "" for none ! hook_cpp_binding_post_includes = "" ------------------------------------------------------------------------------- |