2018-05-17 18:23:39 +02:00
|
|
|
/*
|
|
|
|
* Windows crashdump
|
|
|
|
*
|
|
|
|
* Copyright (c) 2018 Virtuozzo International GmbH
|
|
|
|
*
|
|
|
|
* This work is licensed under the terms of the GNU GPL, version 2 or later.
|
|
|
|
* See the COPYING file in the top-level directory.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2018-08-29 14:41:24 +02:00
|
|
|
#ifndef WIN_DUMP_H
|
|
|
|
#define WIN_DUMP_H
|
2018-05-17 18:23:39 +02:00
|
|
|
|
2023-02-23 23:56:46 +01:00
|
|
|
#include "sysemu/dump.h"
|
2018-05-17 18:23:39 +02:00
|
|
|
|
2023-02-23 23:58:16 +01:00
|
|
|
/* Check Windows dump availability for the current target */
|
|
|
|
bool win_dump_available(Error **errp);
|
|
|
|
|
2018-05-17 18:23:39 +02:00
|
|
|
void create_win_dump(DumpState *s, Error **errp);
|
|
|
|
|
2018-08-29 14:41:24 +02:00
|
|
|
#endif /* WIN_DUMP_H */
|