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

« back to all changes in this revision

Viewing changes to lib-src/lua/ldebug.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
 
/*
2
 
** $Id: ldebug.h,v 1.1 2003/02/09 21:30:32 dheck Exp $
3
 
** Auxiliary functions from Debug Interface module
4
 
** See Copyright Notice in lua.h
5
 
*/
6
 
 
7
 
#ifndef ldebug_h
8
 
#define ldebug_h
9
 
 
10
 
 
11
 
#include "lstate.h"
12
 
#include "luadebug.h"
13
 
 
14
 
 
15
 
void luaG_typeerror (lua_State *L, StkId o, const char *op);
16
 
void luaG_binerror (lua_State *L, StkId p1, int t, const char *op);
17
 
int luaG_getline (int *lineinfo, int pc, int refline, int *refi);
18
 
void luaG_ordererror (lua_State *L, StkId top);
19
 
 
20
 
 
21
 
#endif