home *** CD-ROM | disk | FTP | other *** search
/ Chip 2011 November / CHIP_2011_11.iso / Programy / Inne / Gry / Enigma / Enigma-1.01-w7.exe / data / security.lua < prev    next >
Text File  |  2009-12-13  |  4KB  |  66 lines

  1. ------------------------------------------------------------------------
  2. -- Copyright (C) 2006 Ronald Lamprecht
  3. --
  4. -- This program is free software; you can redistribute it and/or
  5. -- modify it under the terms of the GNU General Public License
  6. -- as published by the Free Software Foundation; either version 2
  7. -- of the License, or (at your option) any later version.
  8. --
  9. -- This program is distributed in the hope that it will be useful,
  10. -- but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. -- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  12. -- GNU General Public License for more details.
  13. --
  14. -- You should have received a copy of the GNU General Public License along
  15. -- with this program; if not, write to the Free Software Foundation, Inc.,
  16. -- 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
  17. --
  18. ------------------------------------------------------------------------
  19.  
  20. -- basic security
  21. dofile = function () error ("security error: dofile not supported", 2) end
  22.  
  23. -- module security
  24. module = function () error ("security error: module not supported", 2) end
  25. require = function () error ("security error: require not supported", 2) end
  26. package.cpath = function () error ("security error: package.cpath not supported", 2) end
  27. package.loadlib = function () error ("security error: package.loadlib not supported", 2) end
  28. package.path = function () error ("security error: package.path not supported", 2) end
  29. package.preload = function () error ("security error: package.preload not supported", 2) end
  30. package.seeall = function () error ("security error: package.seeall not supported", 2) end
  31.  
  32. -- io security
  33. io.close = function () error ("security error: io.close not supported", 2) end
  34. io.flush = function () error ("security error: io.flush not supported", 2) end
  35. io.input = function () error ("security error: io.input not supported", 2) end
  36. io.lines = function () error ("security error: io.lines not supported", 2) end
  37. io.open = function () error ("security error: io.open not supported", 2) end
  38. io.output = function () error ("security error: io.output not supported", 2) end
  39. io.popen = function () error ("security error: io.popen not supported", 2) end
  40. io.read = function () error ("security error: io.read not supported", 2) end
  41. io.tmpfile = function () error ("security error: io.tmpfile not supported", 2) end
  42. io.type = function () error ("security error: io.type not supported", 2) end
  43. io.write = function () error ("security error: io.write not supported", 2) end
  44. -- io 4.0 compatibility security
  45. readfrom = function () error ("security error: readfrom not supported", 2) end
  46. writeto = function () error ("security error: writeto not supported", 2) end
  47. appendto = function () error ("security error: appendto not supported", 2) end
  48. flush = function () error ("security error: flush not supported", 2) end
  49. seek = function () error ("security error: seek not supported", 2) end
  50. read = function () error ("security error: read not supported", 2) end
  51. write = function () error ("security error: write not supported", 2) end
  52.  
  53. -- os security
  54. os.clock = function () error ("security error: os.clock not supported", 2) end
  55. os.date = function () error ("security error: os.date not supported", 2) end
  56. os.difftime = function () error ("security error: os.difftime not supported", 2) end
  57. os.time = function () error ("security error: os.time not supported", 2) end
  58. os.execute = function () error ("security error: os.execute not supported", 2) end
  59. os.exit = function () error ("security error: os.exit not supported", 2) end
  60. os.getenv = function () error ("security error: os.getenv not supported", 2) end
  61. os.remove = function () error ("security error: os.remove not supported", 2) end
  62. os.rename = function () error ("security error: os.rename not supported", 2) end
  63. os.setlocale = function () error ("security error: os.setlocale not supported", 2) end
  64. os.tmpname = function () error ("security error: os.tmpname not supported", 2) end
  65.  
  66.