summaryrefslogtreecommitdiff
path: root/ThirdParty/tolua-5.2.4/src/tests/tpeer.cpp
blob: 1cc263ad0f1059491778c56ed6834d4c2c6b3a52 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24

extern "C" {
#include "lua.h"
#include "lualib.h"
#include "lauxlib.h"
}

#include "tpeer.h"

int main ()
{
  int  tolua_tpeer_open (lua_State*);

  lua_State* L = luaL_newstate();
  luaL_openlibs(L);
  tolua_tpeer_open(L);
  if (luaL_dofile(L,"tpeer.lua")) {
    printf("Error: %s\n",lua_tostring(L,-1));
  }
  lua_close(L);

  return 0;
}