Wireshark  4.3.0
The Wireshark network protocol analyzer
etl.h
Go to the documentation of this file.
1 
12 #ifndef __W_ETL_H__
13 #define __W_ETL_H__
14 
15 #include "wiretap/wtap.h"
16 #include "ws_symbol_export.h"
17 #include "wiretap/wtap-int.h"
18 
19 #include <glib.h>
20 #include <stdlib.h>
21 #include <tdh.h>
22 #include <guiddef.h>
23 
24 #define LOGGER_NAME L"wireshark etwdump"
25 
26 typedef struct
27 {
28  EVENT_TRACE_PROPERTIES prop;
29  char padding[64];
31 
32 wtap_open_return_val etw_dump(const char* etl_filename, const char* pcapng_filename, const char* params, int* err, char** err_info);
33 
34 #endif
35 
36 
37 /*
38  * Editor modelines - https://www.wireshark.org/tools/modelines.html
39  *
40  * Local variables:
41  * c-basic-offset: 4
42  * tab-width: 8
43  * indent-tabs-mode: nil
44  * End:
45  *
46  * vi: set shiftwidth=4 tabstop=8 expandtab:
47  * :indentSize=4:tabSize=8:noTabs=true:
48  */
Definition: etl.h:27