2018-05-17 19:23:39 +03: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 15:41:24 +03:00
|
|
|
#ifndef WIN_DUMP_H
|
|
|
|
#define WIN_DUMP_H
|
2018-05-17 19:23:39 +03:00
|
|
|
|
2023-02-24 01:56:46 +03:00
|
|
|
#include "sysemu/dump.h"
|
2018-05-17 19:23:39 +03:00
|
|
|
|
2023-02-24 01:58:16 +03:00
|
|
|
/* Check Windows dump availability for the current target */
|
|
|
|
bool win_dump_available(Error **errp);
|
|
|
|
|
2018-05-17 19:23:39 +03:00
|
|
|
void create_win_dump(DumpState *s, Error **errp);
|
|
|
|
|
2018-08-29 15:41:24 +03:00
|
|
|
#endif /* WIN_DUMP_H */
|