diff options
| author | Charles Forsyth <charles.forsyth@gmail.com> | 2013-06-04 14:57:30 +0000 |
|---|---|---|
| committer | Charles Forsyth <charles.forsyth@gmail.com> | 2013-06-04 14:57:30 +0000 |
| commit | d6154a09c1e3139c728a8df6bb0fc3cc90fdba64 (patch) | |
| tree | 8196ff87c4c4a3d9a0ac630e2ef2381a137c3df5 /emu/Nt/os.c | |
| parent | a7053ac4b096681d5ae89a863c1b81811e7716a4 (diff) | |
distinguish 16-bit runes from Inferno definition
Diffstat (limited to 'emu/Nt/os.c')
| -rw-r--r-- | emu/Nt/os.c | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/emu/Nt/os.c b/emu/Nt/os.c index dfa69493..82e12d2f 100644 --- a/emu/Nt/os.c +++ b/emu/Nt/os.c @@ -9,6 +9,8 @@ #include "fns.h" #include "error.h" +#include "r16.h" + int SYS_SLEEP = 2; int SOCK_SELECT = 3; #define MAXSLEEPERS 1500 @@ -24,14 +26,6 @@ static HANDLE errh = INVALID_HANDLE_VALUE; static int donetermset = 0; static int sleepers = 0; - wchar_t *widen(char *s); - char *narrowen(wchar_t *ws); - int widebytes(wchar_t *ws); - int runeslen(Rune*); - Rune* runesdup(Rune*); - Rune* utftorunes(Rune*, char*, int); - char* runestoutf(char*, Rune*, int); - int runescmp(Rune*, Rune*); __declspec(thread) Proc *up; |
