~ubuntu-branches/ubuntu/intrepid/enigma/intrepid

« back to all changes in this revision

Viewing changes to lib-src/lua/tolua_tt.h

  • Committer: Bazaar Package Importer
  • Author(s): Erich Schubert
  • Date: 2005-08-28 15:30:09 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20050828153009-sky64kb6tcq37xt5
Tags: 0.92.1-1
* New upstream subversion checkout
* Remove menu.s3m, which we are allowed to distributed but not to modify
  also copyright notice is confusing... (Closes: #321669)
* Rebuild with new libzipios (Closes: #325405)
  I hope this works without a versioned build-dependency
* Added "enigma replaces enigma-data" for upgrades (Closes: #308558)
* Added notes about the fonts copyright.
* updated to policy 3.6.2.1 (no changes)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/* tolua: type & tag manipulation.
2
 
** Support code for Lua bindings.
3
 
** Written by Waldemar Celes
4
 
** TeCGraf/PUC-Rio
5
 
** Jul 1998
6
 
** $Id: tolua_tt.h,v 1.2 2003/05/19 12:12:43 reallysoft Exp $
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
 
#ifndef tolua_tt_h
17
 
#define tolua_tt_h
18
 
 
19
 
void  toluaI_tt_init (lua_State* L);
20
 
void  toluaI_tt_register (lua_State* L, int tag, const char* type);
21
 
void  toluaI_tt_class (lua_State* L, int lo, const char* derived, const char* base);
22
 
void  toluaI_tt_sethierarchy (lua_State* L, int tag, int btag);
23
 
int   toluaI_tt_isusertype (lua_State* L, int lo);
24
 
int   toluaI_tt_gettag (lua_State* L, const char* type);
25
 
const char* toluaI_tt_getobjtype (lua_State* L, int lo);
26
 
char* toluaI_tt_concat (const char* s1, const char* s2);
27
 
 
28
 
 
29
 
 
30
 
 
31
 
#endif