1.0.22.22: (SETF FIND-CLASSOID) to drop DEFTYPE lambda-lists and source-locations
[sbcl/tcr.git] / src / runtime / x86-win32-os.h
blobe703338a79a351ecd53f6502dde1c102a7d1f4e9
1 #ifndef _X86_WIN32_OS_H
2 #define _X86_WIN32_OS_H
4 typedef CONTEXT os_context_t;
5 typedef long os_context_register_t;
7 static inline os_context_t *arch_os_get_context(void **void_context)
9 return (os_context_t *) *void_context;
12 unsigned long os_context_fp_control(os_context_t *context);
13 void os_restore_fp_control(os_context_t *context);
15 #endif /* _X86_WIN32_OS_H */