mirror of
git://sourceware.org/git/newlib-cygwin.git
synced 2025-01-17 12:01:53 +08:00
6e623e9320
Bump GPLv2+ to GPLv3+ for some files, clarify BSD 2-clause. Everything else stays under GPLv3+. New Linking Exception exempts resulting executables from LGPLv3 section 4. Add CONTRIBUTORS file to keep track of licensing. Remove 'Copyright Red Hat Inc' comments. Signed-off-by: Corinna Vinschen <corinna@vinschen.de>
20 lines
562 B
C
20 lines
562 B
C
/* wow64.h
|
|
|
|
This file is part of Cygwin.
|
|
|
|
This software is a copyrighted work licensed under the terms of the
|
|
Cygwin license. Please consult the file "CYGWIN_LICENSE" for
|
|
details. */
|
|
|
|
#ifndef __x86_64__
|
|
/* WOW64 only plays a role in the 32 bit version. Don't use any of this
|
|
in the 64 bit version. */
|
|
|
|
extern bool NO_COPY wow64_needs_stack_adjustment;
|
|
|
|
extern bool wow64_test_for_64bit_parent ();
|
|
extern PVOID wow64_revert_to_original_stack (PVOID &allocationbase);
|
|
extern void wow64_respawn_process () __attribute__ ((noreturn));
|
|
|
|
#endif /* !__x86_64__ */
|