脚本 lua,lua脚本使用教程

  脚本 lua,lua脚本使用教程

  文章目录方法一创建VS dll项目左上臂脚本垃圾箱查看导出函数效果方法一创建VS dll项目#ifndef CPP_DLL_API_H

  #定义CPP_DLL_API_H

  #ifdef __cplusplus

  #define EXTERN_C extern C

  #否则

  #define EXTERN_C extern C

  #endif

  #ifndef EXPORT_API

  # define EXPORT _ API EXTERN _ C _ _ declspec(dll导出)

  #否则

  # define EXPORT _ API EXTERN _ C _ _ declspec(dllimport)

  #endif

  # endif # include CPP _ dll _ lib _ API。 h

  外部C{

  #包含lua.h

  #包含劳克斯利布

  #包含标准视频

  #包含标准库

  #包含标准数据

  #包含lualib.h

  #包含数学。h

  }

  #包含Windows.h

  EXPORT_API int Add(lua_State *L){

  int param _ count=Lua _ gettop(L);

  if (param_count!=2) {

  Lua _ push nil(L);

  lua_pushstring(L, show messagebox:param num error );

  return 2;

  }

  int arg1=luaL_checknumber(L,1);

  int arg2=luaL_checknumber(L,2);

  lua_pushnumber(L,arg 1 arg 2);

  返回1;

  }

  EXPORT _ API int show messagebox(Lua _ State * L)

  {

  int param _ count=Lua _ gettop(L);

  if (param_count!=2) {

  Lua _ push nil(L);

  lua_pushstring(L, show messagebox:param num error );

  return 2;

  }

  const char * sTitle=luaL _ checkstring(L,1);

  const char * sText=luaL _ checkstring(L,2);

  if(sTitle==NULL strlen(sTitle)==0 sText==NULL strlen(sText)==0){

  Lua _ push nil(L);

  lua_pushstring(L, show messagebox:param error );

  return 2;

  }

  int ret=MessageBoxA(NULL,sTitle,sText,0);

  lua_pushnumber(L,ret);

  返回1;

  }Lua脚本将动态链接库放到lua/clib中

  本地pf=包。loadlib( CPP _ dll _ lib。dll , ShowMessageBox )

  打印(pf)

  pf(你好,再次)垃圾箱查看导出函数dumpbin.exe/出口. dll \ CPP _ dll _ lib . dll

  垃圾箱在(不同版本相对不同路径我这里是vs2013的)

  c:\ Program Files(x86)\ Microsoft Visual Studio 12.0 \ VC \ bin

  效果

郑重声明:本文由网友发布,不代表盛行IT的观点,版权归原作者所有,仅为传播更多信息之目的,如有侵权请联系,我们将第一时间修改或删除,多谢。

相关文章阅读

  • office2010激活密钥大全 怎么永久激活office2010
  • project2010产品密钥免费_project2010激活密钥永久激活码
  • c语言调用退出函数 c语言退出整个程序怎么写
  • c语言中怎么给函数初始化 c语言的初始化语句
  • c语言编写函数计算平均值 c语言求平均函数
  • chatgpt是什么?为什么这么火?
  • ChatGPT为什么注册不了?OpenAI ChatGPT的账号哪里可以注册?
  • OpenAI ChatGPT怎么注册账号?ChatGPT账号注册教程
  • chatgpt什么意思,什么是ChatGPT ?
  • CAD中怎么复制图形标注尺寸不变,CAD中怎么复制图形线性不变
  • cad中怎么创建并使用脚本文件,cad怎么运行脚本
  • cad中快速计算器的功能,cad怎么快速计算
  • cad中快速修改单位的方法有哪些,cad中快速修改单位的方法是
  • cad中心点画椭圆怎么做,cad轴测图怎么画椭圆
  • CAD中常用的快捷键,cad各种快捷键的用法
  • 留言与评论(共有 条评论)
       
    验证码: