LuaEditDebugDLL.pas 542 B

123456789101112131415161718192021
  1. unit LuaEditDebugDLL;
  2. interface
  3. uses lua;
  4. function LuaEditDebugOpen :Plua_State;
  5. function LuaEditDebugStartFile(LuaState :Plua_State; Filename :PChar):Integer;
  6. function LuaEditDebugStart(LuaState :Plua_State; Code :PChar):Integer;
  7. procedure LuaEditDebugClose(LuaState :Plua_State);
  8. implementation
  9. function LuaEditDebugOpen; external 'LuaEditDebug.dll';
  10. function LuaEditDebugStartFile; external 'LuaEditDebug.dll';
  11. function LuaEditDebugStart; external 'LuaEditDebug.dll';
  12. procedure LuaEditDebugClose; external 'LuaEditDebug.dll';
  13. end.