Ai
0 Star 0 Fork 0

m1rr0rs/nmap

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
nse_lua.h 752 Bytes
一键复制 编辑 原始数据 按行查看 历史
#ifndef NSE_LUA_H
#define NSE_LUA_H
#ifdef HAVE_CONFIG_H
#include "nmap_config.h"
#else
#ifdef WIN32
#include "nmap_winconfig.h"
#endif /* WIN32 */
#endif /* HAVE_CONFIG_H */
#ifdef __cplusplus
extern "C" {
#endif
#ifdef HAVE_LUA5_3_LUA_H
#include <lua5.3/lua.h>
#include <lua5.3/lauxlib.h>
#include <lua5.3/lualib.h>
#elif defined HAVE_LUA_5_3_LUA_H
#include <lua/5.3/lua.h>
#include <lua/5.3/lauxlib.h>
#include <lua/5.3/lualib.h>
#elif defined HAVE_LUA_H || defined LUA_INCLUDED
#include <lua.h>
#include <lauxlib.h>
#include <lualib.h>
#elif defined HAVE_LUA_LUA_H
#include <lua/lua.h>
#include <lua/lauxlib.h>
#include <lua/lualib.h>
#endif
#ifdef __cplusplus
} /* End of 'extern "C"' */
#endif
#endif /* NSE_LUA_H */
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C++
1
https://gitee.com/m1rr0rs/nmap.git
git@gitee.com:m1rr0rs/nmap.git
m1rr0rs
nmap
nmap
master

搜索帮助