4
0
mirror of git://sourceware.org/git/newlib-cygwin.git synced 2025-01-22 15:07:43 +08:00
Ken Brown 2126f966ae Cygwin: remove regparm.h
This file defines the macros __reg1, __reg2, and __reg3, which are
defined to be empty on 64-bit Cygwin.  Remove all occurrences of these
macros.
2022-05-29 17:45:52 -04:00

23 lines
438 B
C++

/* wininfo.h: main Cygwin header file.
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. */
class muto;
class wininfo
{
HWND hwnd;
static muto _lock;
public:
operator HWND ();
int process (HWND, UINT, WPARAM, LPARAM);
void lock ();
void release ();
DWORD WINAPI winthread ();
};
extern wininfo winmsg;