1
0
mirror of https://github.com/nmap/nmap.git synced 2025-12-07 13:11:28 +00:00
Files
nmap/nse_nmaplib.h
david 20cf487b33 Replace the mix of spaces and tabs in the main NSE files with uniform two-space
indents, which seems to be the dominant style.
2008-11-18 21:11:27 +00:00

19 lines
280 B
C++

#ifndef NSE_NMAPLIB
#define NSE_NMAPLIB
extern "C" {
#include "lua.h"
#include "lualib.h"
#include "lauxlib.h"
}
class Target;
class Port;
int luaopen_nmap(lua_State* l);
void set_hostinfo(lua_State* l, Target* currenths);
void set_portinfo(lua_State* l, Port* port);
#endif