diff options
Diffstat (limited to 'libjava/include/win32.h')
-rw-r--r-- | libjava/include/win32.h | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/libjava/include/win32.h b/libjava/include/win32.h new file mode 100644 index 0000000..677f5d3 --- /dev/null +++ b/libjava/include/win32.h @@ -0,0 +1,22 @@ +// win32.h -- Helper functions for Microsoft-flavored OSs. + +/* Copyright (C) 2002 Free Software Foundation + + This file is part of libgcj. + +This software is copyrighted work licensed under the terms of the +Libgcj License. Please consult the file "LIBGCJ_LICENSE" for +details. */ + +#ifndef __JV_WIN32_H__ +#define __JV_WIN32_H__ + +#include <windows.h> +#undef STRICT + +#undef __INSIDE_CYGWIN__ +#include <winsock.h> + +LONG CALLBACK win32_exception_handler (LPEXCEPTION_POINTERS e); + +#endif /* __JV_WIN32_H__ */ |