summaryrefslogtreecommitdiff
path: root/Kernel/types.h
diff options
context:
space:
mode:
authorAndreas Kling <awesomekling@gmail.com>2018-10-16 11:06:35 +0200
committerAndreas Kling <awesomekling@gmail.com>2018-10-16 11:06:35 +0200
commit72bb80a9ae3bf1c705e7a31f54409d84a4fb1e3b (patch)
tree70fbb2103889a031f389aaf05fd3ac96597dff0a /Kernel/types.h
parent87d41bdca44ab4bf2958b9979e7a48dc7868200b (diff)
downloadserenity-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.h5
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;