diff options
Diffstat (limited to 'libs/iwinfo/src/iwinfo_lualib.h')
-rw-r--r-- | libs/iwinfo/src/iwinfo_lualib.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/libs/iwinfo/src/iwinfo_lualib.h b/libs/iwinfo/src/iwinfo_lualib.h index ca1a4421c9..909080bb45 100644 --- a/libs/iwinfo/src/iwinfo_lualib.h +++ b/libs/iwinfo/src/iwinfo_lualib.h @@ -66,5 +66,12 @@ type##_get_assoclist); \ } +#define LUA_WRAP_TXPWRLIST(type) \ + static int iwinfo_L_##type##_txpwrlist(lua_State *L)\ + { \ + return iwinfo_L_txpwrlist(L, \ + type##_get_txpwrlist); \ + } + #endif |