drsuapi_SupportedExtensionsExt
[wireshark-sm.git] / epan / media_params.h
blobc06812236c77bbbe22e9734a0398bd4f008c7454
1 /** @file
2 * Routines for parsing media type parameters as per RFC 822 and RFC 2045
3 * Copyright 2004, Anders Broman.
4 * Copyright 2004, Olivier Biot.
6 * Refer to the AUTHORS file or the AUTHORS section in the man page
7 * for contacting the author(s) of this file.
9 * Wireshark - Network traffic analyzer
10 * By Gerald Combs <gerald@wireshark.org>
11 * Copyright 1998 Gerald Combs
13 * SPDX-License-Identifier: GPL-2.0-or-later
16 #ifndef __MEDIA_PARAMS_H__
17 #define __MEDIA_PARAMS_H__
19 #include <epan/wmem_scopes.h>
21 #include "ws_symbol_export.h"
23 #ifdef __cplusplus
24 extern "C" {
25 #endif /* __cplusplus */
27 WS_DLL_PUBLIC char *
28 ws_find_media_type_parameter(wmem_allocator_t *scope, const char *parameters, const char *key);
30 #ifdef __cplusplus
32 #endif /* __cplusplus */
34 #endif /* media_params.h */