mirror of
https://github.com/simh/simh.git
synced 2026-04-17 00:36:00 +00:00
ALL: Massive 'const' cleanup
These changes facilitate more robust parameter type checking and helps to identify unexpected coding errors. Most simulators can now also be compiled with a C++ compiler without warnings. Additionally, these changes have also been configured to facilitate easier backporting of simulator and device simulation modules to run under the simh v3.9+ SCP framework.
This commit is contained in:
@@ -31,7 +31,7 @@
|
||||
|
||||
/* unless you're writing a new driver, you shouldn't be looking here! */
|
||||
|
||||
extern int ws_init(char *, int, int, int, void *);
|
||||
extern int ws_init(const char *, int, int, int, void *);
|
||||
void ws_shutdown(void);
|
||||
extern void *ws_color_rgb(int, int, int);
|
||||
extern void *ws_color_black(void);
|
||||
|
||||
Reference in New Issue
Block a user