00001 /* 00002 FALCON - The Falcon Programming Language. 00003 FILE: vm_sys_win.h 00004 00005 System specifics for the falcon VM - POSIX compliant systems. 00006 ------------------------------------------------------------------- 00007 Author: Giancarlo Niccolai 00008 Begin: Fri, 25 Apr 2008 17:30:00 +0200 00009 00010 ------------------------------------------------------------------- 00011 (C) Copyright 2004: the FALCON developers (see list in AUTHORS file) 00012 00013 See LICENSE file for licensing details. 00014 */ 00015 00016 #ifndef FLC_VM_SYS_WIN_H 00017 #define FLC_VM_SYS_WIN_H 00018 00019 #include <windows.h> 00020 00021 namespace Falcon { 00022 namespace Sys { 00023 00024 struct VM_SYS_DATA 00025 { 00026 HANDLE evtInterrupt; 00027 }; 00028 00029 } 00030 } 00031 00032 #endif 00033 00034 /* end of vm_sys_win.h */