1
0
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:
Nick Briggs
2021-03-29 12:34:32 -07:00
committed by GitHub
parent 36ccd9a5f5
commit 01a8948a7d
3 changed files with 6 additions and 7 deletions

View File

@@ -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;

View File

@@ -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();

View File

@@ -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>