summaryrefslogtreecommitdiff
path: root/src/w32common.h
diff options
context:
space:
mode:
authorDaniel Colascione <dancol@dancol.org>2012-10-08 04:53:18 -0800
committerDaniel Colascione <dancol@dancol.org>2012-10-08 04:53:18 -0800
commit501199a3dbccc83f91a561c6664ae4c1d3dde20a (patch)
treec9b24607e5e44b61fad483b10a0c77862d4d2661 /src/w32common.h
parentc54ebba4e076caeb6105c6bb682252b139a169fa (diff)
downloademacs-501199a3dbccc83f91a561c6664ae4c1d3dde20a.tar.gz
emacs-501199a3dbccc83f91a561c6664ae4c1d3dde20a.tar.bz2
emacs-501199a3dbccc83f91a561c6664ae4c1d3dde20a.zip
Code cleanup for cygw32
Diffstat (limited to 'src/w32common.h')
-rw-r--r--src/w32common.h53
1 files changed, 53 insertions, 0 deletions
diff --git a/src/w32common.h b/src/w32common.h
new file mode 100644
index 00000000000..50724e5553c
--- /dev/null
+++ b/src/w32common.h
@@ -0,0 +1,53 @@
+/* Common functions for Microsoft Windows builds of Emacs
+ Copyright (C) 2012 Free Software Foundation, Inc.
+
+This file is part of GNU Emacs.
+
+GNU Emacs is free software: you can redistribute it and/or modify
+it under the terms of the GNU General Public License as published by
+the Free Software Foundation, either version 3 of the License, or
+(at your option) any later version.
+
+GNU Emacs is distributed in the hope that it will be useful,
+but WITHOUT ANY WARRANTY; without even the implied warranty of
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+GNU General Public License for more details.
+
+You should have received a copy of the GNU General Public License
+along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
+
+*/
+
+#ifndef W32COMMON_H
+#define W32COMMON_H
+
+#include <windows.h>
+
+#define ROUND_UP(p, align) (((DWORD_PTR)(p) + (align)-1) & ~((DWORD_PTR)(align)-1))
+#define ROUND_DOWN(p, align) ((DWORD_PTR)(p) & ~((DWORD_PTR)(align)-1))
+
+#define get_page_size() sysinfo_cache.dwPageSize
+#define get_allocation_unit() sysinfo_cache.dwAllocationGranularity
+#define get_processor_type() sysinfo_cache.dwProcessorType
+#define get_w32_major_version() w32_major_version
+#define get_w32_minor_version() w32_minor_version
+
+extern SYSTEM_INFO sysinfo_cache;
+extern OSVERSIONINFO osinfo_cache;
+extern unsigned long syspage_mask;
+
+extern int w32_major_version;
+extern int w32_minor_version;
+extern int w32_build_number;
+
+enum {
+ OS_9X = 1,
+ OS_NT
+};
+
+extern int os_subtype;
+
+/* Cache system info, e.g., the NT page size. */
+extern void cache_system_info (void);
+
+#endif /* W32COMMON_H */