BaseLua.lua
上传用户:cccombo
上传日期:2021-01-31
资源大小:16445k
文件大小:2k
源码类别:

MySQL数据库

开发平台:

SQL

  1. -- ----------------------------------------------------------------------------------------
  2. -- Copyright (C) 2004 MySQL AB
  3. --
  4. -- This program is free software; you can redistribute it and/or modify
  5. -- it under the terms of the GNU General Public License as published by
  6. -- the Free Software Foundation; either version 2 of the License, or
  7. -- (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
  15. -- along with this program; if not, write to the Free Software
  16. -- Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
  17. -- ----------------------------------------------------------------------------------------
  18. -- ----------------------------------------------------------------------------------------
  19. -- @file BaseLua.lua
  20. -- @brief Module that contains base functionality for Lua
  21. -- ----------------------------------------------------------------------------------------
  22. -- ----------------------------------------------------------------------------------------
  23. -- @brief Returns the information about this module
  24. --
  25. --   Every Grt module has to implement this function to return information about the 
  26. -- module. Note that new functions that should be exposed to the Grt have to be listed 
  27. -- here. Function that are not exposed should start with a underscore.
  28. --
  29. -- @return A dict that contains the name and the function names of the module
  30. -- ----------------------------------------------------------------------------------------
  31. function getModuleInfo()
  32.   local moduleInfo= 
  33.     {
  34.       name= 'BaseLua', 
  35.       functions= {
  36.         'engineVersion::'
  37.       }, 
  38.       extends= ''
  39.     }
  40.   return moduleInfo
  41. end
  42. -- ----------------------------------------------------------------------------------------
  43. -- @brief Returns the version of the used engine
  44. --
  45. --   Returns the version of the used engine
  46. --
  47. -- @return the Lua version string
  48. -- ----------------------------------------------------------------------------------------
  49. function engineVersion(args)
  50.   local lua_version= _G["_VERSION"]
  51.   return grt.success(lua_version)
  52. end