1
0
mirror of https://github.com/nmap/nmap.git synced 2025-12-24 00:19:01 +00:00

Updated NSE's bit library to no longer be a shared library.

See this thread: http://seclists.org/nmap-dev/2008/q3/0404.html
This commit is contained in:
batrick
2008-08-27 22:23:50 +00:00
parent 37402de4e1
commit 8a44c9432d
5 changed files with 108 additions and 15 deletions

14
nse_bit.h Normal file
View File

@@ -0,0 +1,14 @@
#ifndef BITLIB
#define BITLIB
#define BITLIBNAME "bit"
extern "C" {
#include "lauxlib.h"
#include "lua.h"
}
LUALIB_API int luaopen_bit(lua_State *L);
#endif