functions that do not modify data take const char* as argument
git-svn-id: svn://svn.cc65.org/cc65/trunk@848 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
@@ -9,18 +9,18 @@
|
||||
#ifndef _GDLGBOX_H
|
||||
#define _GDLGBOX_H
|
||||
|
||||
char __fastcall__ DoDlgBox(char *dboxstring);
|
||||
char __fastcall__ DoDlgBox(const char *dboxstring);
|
||||
char __fastcall__ RstrFrmDialogue(void);
|
||||
|
||||
/* These are custom, predefined dialog boxes, I'm sure you'll find them usable
|
||||
Most of them show 2 lines of text */
|
||||
|
||||
char __fastcall__ DlgBoxYesNo(char *line1, char *line2);
|
||||
char __fastcall__ DlgBoxOkCancel(char *line1, char *line2);
|
||||
void __fastcall__ DlgBoxOk(char *line1, char *line2);
|
||||
char __fastcall__ DlgBoxYesNo(const char *line1, const char *line2);
|
||||
char __fastcall__ DlgBoxOkCancel(const char *line1, const char *line2);
|
||||
void __fastcall__ DlgBoxOk(const char *line1, const char *line2);
|
||||
char __fastcall__ DlgBoxGetString(char *myString, char strLength,
|
||||
char *line1, char *line2);
|
||||
char __fastcall__ DlgBoxFileSelect(char *classtxt, char ftype,
|
||||
const char *line1, const char *line2);
|
||||
char __fastcall__ DlgBoxFileSelect(const char *classtxt, char ftype,
|
||||
char *fname);
|
||||
|
||||
/* Now the command string type */
|
||||
|
||||
Reference in New Issue
Block a user