summaryrefslogtreecommitdiffstatshomepage
path: root/src/osd/modules/lib/osdlib_win32.cpp
diff options
context:
space:
mode:
author Miodrag Milanovic <mmicko@gmail.com>2016-11-11 16:20:19 +0100
committer Miodrag Milanovic <mmicko@gmail.com>2016-11-11 16:20:19 +0100
commit172cadfd3ef97bb3c9dac695d1a0459393f5df88 (patch)
tree7b6197b51a992ad1b9abe33986a2c409bbe65fa6 /src/osd/modules/lib/osdlib_win32.cpp
parent8dfbb3e6d1ce57517791895fc404c8931b56ae9b (diff)
removed not used macros (nw)
Diffstat (limited to 'src/osd/modules/lib/osdlib_win32.cpp')
-rw-r--r--src/osd/modules/lib/osdlib_win32.cpp21
1 files changed, 0 insertions, 21 deletions
diff --git a/src/osd/modules/lib/osdlib_win32.cpp b/src/osd/modules/lib/osdlib_win32.cpp
index a6c1180f2a3..907889f37ba 100644
--- a/src/osd/modules/lib/osdlib_win32.cpp
+++ b/src/osd/modules/lib/osdlib_win32.cpp
@@ -31,27 +31,6 @@
#endif
//============================================================
-// MACROS
-//============================================================
-
-// presumed size of a page of memory
-#define PAGE_SIZE 4096
-
-// align allocations to start or end of the page?
-#define GUARD_ALIGN_START 0
-
-#if defined(__BIGGEST_ALIGNMENT__)
-#define MAX_ALIGNMENT __BIGGEST_ALIGNMENT__
-#elif defined(__AVX__)
-#define MAX_ALIGNMENT 32
-#elif defined(__SSE__) || defined(__x86_64__) || defined(_M_X64)
-#define MAX_ALIGNMENT 16
-#else
-#define MAX_ALIGNMENT sizeof(int64_t)
-#endif
-
-
-//============================================================
// GLOBAL VARIABLES
//============================================================