Blender  V3.3
wm_window_private.h
Go to the documentation of this file.
1 /* SPDX-License-Identifier: GPL-2.0-or-later
2  * Copyright 2019 Blender Foundation. All rights reserved. */
3 
7 #pragma once
8 
9 #include "BLI_sys_types.h"
10 #include "GHOST_Types.h"
11 
12 /* *************** Message box *************** */
13 /* `WM_ghost_show_message_box` is implemented in `wm_windows.c` it is
14  * defined here as it was implemented to be used for showing
15  * a message to the user when the platform is not (fully) supported.
16  *
17  * In all other cases this message box should not be used. */
18 void WM_ghost_show_message_box(const char *title,
19  const char *message,
20  const char *help_label,
21  const char *continue_label,
22  const char *link,
23  GHOST_DialogOptions dialog_options);
GHOST_DialogOptions
Definition: GHOST_Types.h:67
void WM_ghost_show_message_box(const char *title, const char *message, const char *help_label, const char *continue_label, const char *link, GHOST_DialogOptions dialog_options)
Definition: wm_window.c:2392