diff options
author | Andreas Kling <awesomekling@gmail.com> | 2018-10-16 11:06:35 +0200 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2018-10-16 11:06:35 +0200 |
commit | 72bb80a9ae3bf1c705e7a31f54409d84a4fb1e3b (patch) | |
tree | 70fbb2103889a031f389aaf05fd3ac96597dff0a /Kernel/types.h | |
parent | 87d41bdca44ab4bf2958b9979e7a48dc7868200b (diff) | |
download | serenity-72bb80a9ae3bf1c705e7a31f54409d84a4fb1e3b.zip |
These changes were lying around uncommitted in the old repo.
I'm just gonna commit them without too much thinking and then take
it from there.
Diffstat (limited to 'Kernel/types.h')
-rw-r--r-- | Kernel/types.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Kernel/types.h b/Kernel/types.h index 168960ccae..b69b2af662 100644 --- a/Kernel/types.h +++ b/Kernel/types.h @@ -63,3 +63,8 @@ typedef DWORD gid_t; typedef int pid_t; typedef DWORD time_t; typedef DWORD size_t; + +struct FarPtr { + DWORD offset { 0 }; + WORD selector { 0 }; +} PACKED; |