mirror of
https://github.com/Interlisp/maiko.git
synced 2026-01-29 04:51:28 +00:00
Rename _curXXX structures to curXXX to avoid leading underscore (#376)
This commit is contained in:
@@ -21,9 +21,8 @@
|
||||
#include "dspifdefs.h"
|
||||
#include "xinitdefs.h"
|
||||
|
||||
DspInterfaceRec _curdsp;
|
||||
|
||||
DspInterface currentdsp = &_curdsp;
|
||||
DspInterfaceRec curdsp;
|
||||
DspInterface currentdsp = &curdsp;
|
||||
|
||||
#ifdef XWINDOW
|
||||
extern int LispDisplayRequestedWidth;
|
||||
|
||||
@@ -16,8 +16,8 @@
|
||||
#include "dbprint.h"
|
||||
#include "devif.h"
|
||||
|
||||
KbdInterfaceRec _curkbd;
|
||||
KbdInterface currentkbd = &_curkbd;
|
||||
KbdInterfaceRec curkbd;
|
||||
KbdInterface currentkbd = &curkbd;
|
||||
|
||||
#ifdef DOS
|
||||
extern void Kbd_event();
|
||||
|
||||
@@ -17,8 +17,8 @@
|
||||
#include "dbprint.h"
|
||||
#include "devif.h"
|
||||
|
||||
MouseInterfaceRec _curmouse;
|
||||
MouseInterface currentmouse = &_curmouse;
|
||||
MouseInterfaceRec curmouse;
|
||||
MouseInterface currentmouse = &curmouse;
|
||||
|
||||
#ifdef DOS
|
||||
#include <dos.h>
|
||||
|
||||
Reference in New Issue
Block a user