diff options
author | Adam Megacz <adam@xwt.org> | 2002-02-07 05:26:42 +0000 |
---|---|---|
committer | Adam Megacz <megacz@gcc.gnu.org> | 2002-02-07 05:26:42 +0000 |
commit | b8fe3c1e06a23f89a66d280c157fb44c738edbf2 (patch) | |
tree | db9c18a5924f33eb9b557f63d50e0b0489bc296d /libjava/include/win32.h | |
parent | df79080e5f5fb9339dbeaa8b51416b25a055d122 (diff) | |
download | gcc-b8fe3c1e06a23f89a66d280c157fb44c738edbf2.zip gcc-b8fe3c1e06a23f89a66d280c157fb44c738edbf2.tar.gz gcc-b8fe3c1e06a23f89a66d280c157fb44c738edbf2.tar.bz2 |
configure.in: Changed mingw) to *mingw*).
2002-02-06 Adam Megacz <adam@xwt.org>
* configure.in: Changed mingw) to *mingw*).
* win32.cc: Created this file.
* win32.h: Created this file.
* win32.cc, prims.cc, win32.h (win32_exception_handler): Moved
win32_exception_handler from prims.cc to win32.cc, added
header in win32.h.
* prims.cc: removed some #ifdef-WIN32'd headers which are no
longer needed now that we have platform.h
From-SVN: r49566
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__ */ |