1
0
mirror of https://github.com/gryf/wmaker.git synced 2025-12-19 04:20:27 +01:00

wmaker: Added 'const' attribute to most global functions

Signed-off-by: Christophe CURIS <christophe.curis@free.fr>
This commit is contained in:
Christophe CURIS
2013-06-16 17:57:48 +02:00
committed by Carlos R. Mafra
parent f0c1dc9fc3
commit 9b5db31d95
22 changed files with 65 additions and 64 deletions

View File

@@ -30,15 +30,15 @@ enum {
};
int wMessageDialog(WScreen *scr, char *title, char *message,
char *defBtn, char *altBtn, char *othBtn);
int wAdvancedInputDialog(WScreen *scr, char *title, char *message, char *name, char **text);
int wInputDialog(WScreen *scr, char *title, char *message, char **text);
int wMessageDialog(WScreen *scr, const char *title, const char *message,
const char *defBtn, const char *altBtn, const char *othBtn);
int wAdvancedInputDialog(WScreen *scr, const char *title, const char *message, const char *name, char **text);
int wInputDialog(WScreen *scr, const char *title, const char *message, char **text);
int wExitDialog(WScreen *scr, char *title, char *message, char *defBtn,
char *altBtn, char *othBtn);
int wExitDialog(WScreen *scr, const char *title, const char *message, const char *defBtn,
const char *altBtn, const char *othBtn);
Bool wIconChooserDialog(WScreen *scr, char **file, char *instance, char *class);
Bool wIconChooserDialog(WScreen *scr, char **file, const char *instance, const char *class);
void wShowInfoPanel(WScreen *scr);
void wShowLegalPanel(WScreen *scr);