1
0
mirror of https://github.com/nmap/nmap.git synced 2025-12-15 20:29:03 +00:00

Added mutex code.

This commit is contained in:
batrick
2008-06-20 07:19:37 +00:00
parent 00c55e7e42
commit f117619044
3 changed files with 83 additions and 6 deletions

View File

@@ -1,6 +1,12 @@
#ifndef NMAP_LUA_H
#define NMAP_LUA_H
extern "C" {
#include "lua.h"
#include "lualib.h"
#include "lauxlib.h"
}
#include <vector>
#include <list>
#include <string>
@@ -20,5 +26,7 @@ int script_updatedb();
//parses the arguments provided to scripts via nmap's --script-args option
int script_check_args();
int process_waiting2running(lua_State *, int);
#endif