Advertisement
Extreemhost

Untitled

Jul 14th, 2015
168
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 1.47 KB | None | 0 0
  1. #pragma once
  2.  
  3. #include "../Leadwerks.h"
  4.  
  5. namespace Leadwerks
  6. {
  7.     class XML: public Object // Lua
  8.     {
  9.         public:
  10.         static void     LoadFunctions                       ( void );
  11.  
  12.         static int      xmlCreateFile                       ( lua_State* luaVM );
  13.         static int      xmlLoadFile                         ( lua_State* luaVM );
  14.         static int      xmlCopyFile                         ( lua_State* luaVM );
  15.         static int      xmlSaveFile                         ( lua_State* luaVM );
  16.         static int      xmlUnloadFile                       ( lua_State* luaVM );
  17.  
  18.         static int      xmlCreateChild                      ( lua_State* luaVM );
  19.         static int      xmlDestroyNode                      ( lua_State* luaVM );
  20.         static int      xmlNodeFindChild                    ( lua_State* luaVM );
  21.         static int      xmlNodeGetChildren                  ( lua_State* luaVM );
  22.         static int      xmlNodeGetParent                    ( lua_State* luaVM );
  23.  
  24.         static int      xmlNodeGetValue                     ( lua_State* luaVM );
  25.         static int      xmlNodeSetValue                     ( lua_State* luaVM );
  26.         static int      xmlNodeGetAttributes                ( lua_State* luaVM );
  27.         static int      xmlNodeGetAttribute                 ( lua_State* luaVM );
  28.         static int      xmlNodeSetAttribute                 ( lua_State* luaVM );
  29.  
  30.         static int      xmlNodeGetName                      ( lua_State* luaVM );
  31.         static int      xmlNodeSetName                      ( lua_State* luaVM );
  32.     };
  33. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement