summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorVladislav Vaintroub <wlad@mariadb.com>2021-09-24 12:29:57 +0200
committerVladislav Vaintroub <wlad@mariadb.com>2021-09-24 12:29:57 +0200
commit25a5ce367b6a553c6563adfd8869d5961f71b2cd (patch)
treed1b8b94756d8921c3467f34bdac90eb5e3a360d0 /include
parentd5bd704f4be776df00e3f2e629936bb60d6b10a1 (diff)
parent8221708e389728aef799046eef3c49b1eec2e400 (diff)
downloadmariadb-git-25a5ce367b6a553c6563adfd8869d5961f71b2cd.tar.gz
Merge branch '10.3' into 10.4
Diffstat (limited to 'include')
-rw-r--r--include/my_minidump.h25
1 files changed, 25 insertions, 0 deletions
diff --git a/include/my_minidump.h b/include/my_minidump.h
new file mode 100644
index 00000000000..0c0e843be8c
--- /dev/null
+++ b/include/my_minidump.h
@@ -0,0 +1,25 @@
+/* Copyright (c) 2021, MariaDB Corporation
+
+ This program is free software; you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation; version 2 of the License.
+
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with this program; if not, write to the Free Software
+ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1335 USA */
+
+#include <windows.h>
+#ifdef __cplusplus
+extern "C" {
+#endif
+
+BOOL my_create_minidump(DWORD pid, BOOL verbose);
+
+#ifdef __cplusplus
+}
+#endif