mirror of
https://dev.iopsys.eu/bbf/bbfdm.git
synced 2026-03-14 21:20:28 +01:00
This commit makes all symbols that are not part of the API Interface, or used only in the object files where they are defined, static. Causing the following benefits: - The compiler can resolve functions for better performance - The library size is decreased NOTE: Spec file generators need to be adjusted for newer spec's to not do the same mistakes again Signed-off-by: Daniel Danzberger <daniel@dd-wrt.com>
47 lines
1.6 KiB
C
47 lines
1.6 KiB
C
/*
|
|
* Copyright (C) 2019 iopsys Software Solutions AB
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU Lesser General Public License version 2.1
|
|
* as published by the Free Software Foundation
|
|
*
|
|
* Author: Anis Ellouze <anis.ellouze@pivasoftware.com>
|
|
* Author: Amin Ben Ramdhane <amin.benramdhane@pivasoftware.com>
|
|
*
|
|
*/
|
|
|
|
#ifndef __WIFI_H
|
|
#define __WIFI_H
|
|
|
|
#include <libbbf_api/dmcommon.h>
|
|
|
|
extern DMOBJ tWiFiObj[];
|
|
extern DMLEAF tWiFiParams[];
|
|
extern DMOBJ tWiFiRadioObj[];
|
|
extern DMOBJ tWiFiAccessPointObj[];
|
|
extern DMOBJ tWiFiSSIDObj[];
|
|
extern DMLEAF tWiFiAccessPointParams[];
|
|
extern DMLEAF tWiFiSSIDParams[];
|
|
extern DMLEAF tWiFiRadioParams[];
|
|
extern DMLEAF tWiFiAccessPointSecurityParams[];
|
|
extern DMLEAF tWiFiAccessPointAssociatedDeviceParams[];
|
|
extern DMLEAF tWiFiAcessPointIEEE80211rParams[];
|
|
extern DMOBJ tWiFiAccessPointAssociatedDeviceObj[];
|
|
extern DMLEAF tWiFiAccessPointAssociatedDeviceStatsParams[];
|
|
extern DMLEAF tWiFiRadioStatsParams[];
|
|
extern DMLEAF tWiFiSSIDStatsParams[];
|
|
extern DMOBJ tWiFiNeighboringWiFiDiagnosticObj[];
|
|
extern DMLEAF tWiFiNeighboringWiFiDiagnosticParams[];
|
|
extern DMLEAF tWiFiNeighboringWiFiDiagnosticResultParams[];
|
|
extern DMLEAF tWiFiAccessPointWPSParams[];
|
|
extern DMLEAF tWiFiAccessPointAccountingParams[];
|
|
extern DMOBJ tWiFiEndPointObj[];
|
|
extern DMLEAF tWiFiEndPointParams[];
|
|
extern DMLEAF tWiFiEndPointStatsParams[];
|
|
extern DMLEAF tWiFiEndPointSecurityParams[];
|
|
extern DMLEAF tWiFiEndPointWPSParams[];
|
|
extern DMOBJ tWiFiEndPointProfileObj[];
|
|
extern DMLEAF tWiFiEndPointProfileParams[];
|
|
extern DMLEAF tWiFiEndPointProfileSecurityParams[];
|
|
|
|
#endif
|