aboutsummaryrefslogtreecommitdiff
path: root/engines/glk/windows.h
diff options
context:
space:
mode:
authorPaul Gilbert2018-12-09 14:46:57 -0800
committerPaul Gilbert2018-12-09 14:47:15 -0800
commite232d024c5e20436fa64c25bfb506d8e2ece9a50 (patch)
tree4d6b80b950dd6298b3a4c65a61ad29a4128d6346 /engines/glk/windows.h
parentfc8b55578b7a88fe1a9d2523e5b71b185532a8a9 (diff)
downloadscummvm-rg350-e232d024c5e20436fa64c25bfb506d8e2ece9a50.tar.gz
scummvm-rg350-e232d024c5e20436fa64c25bfb506d8e2ece9a50.tar.bz2
scummvm-rg350-e232d024c5e20436fa64c25bfb506d8e2ece9a50.zip
GLK: Standardizing uint vs uint32 usage
Diffstat (limited to 'engines/glk/windows.h')
-rw-r--r--engines/glk/windows.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/engines/glk/windows.h b/engines/glk/windows.h
index 8ba2f2ac0c..ed9b777814 100644
--- a/engines/glk/windows.h
+++ b/engines/glk/windows.h
@@ -396,12 +396,12 @@ public:
gidispatch_rock_t _dispRock;
public:
- static bool checkTerminator(uint ch);
+ static bool checkTerminator(uint32 ch);
public:
/**
* Constructor
*/
- Window(Windows *windows, uint32 rock);
+ Window(Windows *windows, uint rock);
/**
* Destructor
@@ -430,7 +430,7 @@ public:
/**
* Write a character
*/
- virtual void putCharUni(uint ch) {}
+ virtual void putCharUni(uint32 ch) {}
/**
* Unput a unicode character
@@ -467,7 +467,7 @@ public:
/**
* Prepare for inputing a line
*/
- virtual void requestLineEventUni(uint *buf, uint maxlen, uint initlen);
+ virtual void requestLineEventUni(uint32 *buf, uint maxlen, uint initlen);
/**
* Cancel an input line event
@@ -498,9 +498,9 @@ public:
int acceptScroll(uint arg);
- void setTerminatorsLineEvent(uint *keycodes, uint count);
+ void setTerminatorsLineEvent(const uint32 *keycodes, uint count);
- virtual void acceptReadLine(uint arg);
+ virtual void acceptReadLine(uint32 arg);
virtual void acceptReadChar(uint arg);
@@ -543,7 +543,7 @@ public:
/**
* Constructor
*/
- BlankWindow(Windows *windows, uint32 rock);
+ BlankWindow(Windows *windows, uint rock);
};
} // End of namespace Glk