* include/winuser.h (AllowSetForegroundWindow,
LockSetForegroundWindow) Add prototypes. (ASFW_ANY, LSFW_LOCK, LSFW_UNLOCK) Add defines. Thanks to: Pat Thoyts <patthoyts@users.sourceforge.net> * lib/winuser.def (AllowSetForegroundWindow, LockSetForegroundWindow): Add stubs.
This commit is contained in:
parent
2cc2e4e5ea
commit
e57ba5d3cd
@ -1,3 +1,12 @@
|
||||
2002-12-07 Danny Smith <dannysmith@users.sourveforge.net>
|
||||
|
||||
* include/winuser.h (AllowSetForegroundWindow,
|
||||
LockSetForegroundWindow) Add prototypes.
|
||||
(ASFW_ANY, LSFW_LOCK, LSFW_UNLOCK) Add defines.
|
||||
Thanks to: Pat Thoyts <patthoyts@users.sourceforge.net>
|
||||
* lib/winuser.def (AllowSetForegroundWindow,
|
||||
LockSetForegroundWindow): Add stubs.
|
||||
|
||||
2002-12-06 Ken Fitlike <kenfitlike@users.sourceforge.net>
|
||||
|
||||
* include/commctrl.h (TN_GETDISPINFO[AW]): Add defines and
|
||||
|
@ -1935,6 +1935,11 @@ extern "C" {
|
||||
#define OBJID_CURSOR 0xFFFFFFF7
|
||||
#define OBJID_ALERT 0xFFFFFFF6
|
||||
#define OBJID_SOUND 0xFFFFFFF5
|
||||
#if(WINVER >= 0x0500)
|
||||
#define ASFW_ANY ((DWORD)-1)
|
||||
#define LSFW_LOCK 1
|
||||
#define LSFW_UNLOCK 2
|
||||
#endif
|
||||
|
||||
#ifndef RC_INVOKED
|
||||
typedef BOOL(CALLBACK *DLGPROC)(HWND,UINT,WPARAM,LPARAM);
|
||||
@ -3271,6 +3276,10 @@ int WINAPIV wsprintfA(LPSTR,LPCSTR,...);
|
||||
int WINAPIV wsprintfW(LPWSTR,LPCWSTR,...);
|
||||
int WINAPI wvsprintfA(LPSTR,LPCSTR,va_list arglist);
|
||||
int WINAPI wvsprintfW(LPWSTR,LPCWSTR,va_list arglist);
|
||||
#if(WINVER >= 0x0500)
|
||||
BOOL WINAPI AllowSetForegroundWindow(DWORD);
|
||||
BOOL WINAPI LockSetForegroundWindow(UINT);
|
||||
#endif
|
||||
|
||||
#ifdef UNICODE
|
||||
#define EDITWORDBREAKPROC EDITWORDBREAKPROCW
|
||||
|
@ -3,6 +3,7 @@ EXPORTS
|
||||
ActivateKeyboardLayout@8
|
||||
AdjustWindowRect@12
|
||||
AdjustWindowRectEx@16
|
||||
AllowSetForegroundWindow@4
|
||||
AnyPopup@0
|
||||
AppendMenuA@16
|
||||
AppendMenuW@16
|
||||
@ -384,6 +385,7 @@ LoadMenuIndirectW@4
|
||||
LoadMenuW@8
|
||||
LoadStringA@16
|
||||
LoadStringW@16
|
||||
LockSetForegroundWindow@4
|
||||
LockWindowUpdate@4
|
||||
LookupIconIdFromDirectory@8
|
||||
LookupIconIdFromDirectoryEx@20
|
||||
|
Loading…
Reference in New Issue
Block a user