Blender  V2.93
wm_window_private.h
Go to the documentation of this file.
1 /*
2  * This program is free software; you can redistribute it and/or
3  * modify it under the terms of the GNU General Public License
4  * as published by the Free Software Foundation; either version 2
5  * of the License, or (at your option) any later version.
6  *
7  * This program is distributed in the hope that it will be useful,
8  * but WITHOUT ANY WARRANTY; without even the implied warranty of
9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
10  * GNU General Public License for more details.
11  *
12  * You should have received a copy of the GNU General Public License
13  * along with this program; if not, write to the Free Software Foundation,
14  * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
15  *
16  * The Original Code is Copyright (C) 2019 Blender Foundation.
17  * All rights reserved.
18  */
19 
23 #pragma once
24 
25 #include "BLI_sys_types.h"
26 #include "GHOST_Types.h"
27 
28 /* *************** Message box *************** */
29 /* `WM_ghost_show_message_box` is implemented in `wm_windows.c` it is
30  * defined here as it was implemented to be used for showing
31  * a message to the user when the platform is not (fully) supported.
32  *
33  * In all other cases this message box should not be used. */
34 void WM_ghost_show_message_box(const char *title,
35  const char *message,
36  const char *help_label,
37  const char *continue_label,
38  const char *link,
39  GHOST_DialogOptions dialog_options);
GHOST_DialogOptions
Definition: GHOST_Types.h:76
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:2455