wireshark/epan/app_mem_usage.h
Dario Lombardo 55c68ee69c epan: use SPDX indentifiers.
Skipping dissectors dir for now.

Change-Id: I717b66bfbc7cc81b83f8c2cbc011fcad643796aa
Reviewed-on: https://code.wireshark.org/review/25694
Petri-Dish: Dario Lombardo <lomato@gmail.com>
Tested-by: Petri Dish Buildbot
Reviewed-by: Anders Broman <a.broman58@gmail.com>
2018-02-08 19:29:45 +00:00

29 lines
604 B
C

/*
* app_mem_usage.h
*
* Wireshark - Network traffic analyzer
* By Gerald Combs <gerald@wireshark.org>
* Copyright 1998 Gerald Combs
*
* SPDX-License-Identifier: GPL-2.0-or-later
*/
#ifndef __APP_MEM_USAGE_H__
#define __APP_MEM_USAGE_H__
#include "ws_symbol_export.h"
typedef struct {
const char *name;
gsize (*fetch)(void);
void (*gc)(void);
} ws_mem_usage_t;
WS_DLL_PUBLIC void memory_usage_component_register(const ws_mem_usage_t *component);
WS_DLL_PUBLIC void memory_usage_gc(void);
WS_DLL_PUBLIC const char *memory_usage_get(guint idx, gsize *value);
#endif /* APP_MEM_USAGE_H */