mirror of
https://github.com/php/php-src.git
synced 2025-08-18 15:08:55 +02:00
Add a messagebox style that's safe to use from an ISAPI filter
This commit is contained in:
parent
930b212c23
commit
b3b67b04b7
1 changed files with 11 additions and 0 deletions
|
@ -73,4 +73,15 @@ typedef unsigned int uint;
|
||||||
|
|
||||||
#define ZEND_DLEXPORT __declspec(dllexport)
|
#define ZEND_DLEXPORT __declspec(dllexport)
|
||||||
|
|
||||||
|
/* 0x00200000L is MB_SERVICE_NOTIFICATION, which is only supported under Windows NT
|
||||||
|
* (and requires _WIN32_WINNT to be defined, which prevents the resulting executable
|
||||||
|
* from running under Windows 9x
|
||||||
|
* Windows 9x should silently ignore it, so it's being used here directly
|
||||||
|
*/
|
||||||
|
#ifndef MB_SERVICE_NOTIFICATION
|
||||||
|
#define MB_SERVICE_NOTIFICATION 0x00200000L
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#define ZEND_SERVICE_MB_STYLE (MB_TOPMOST|MB_SERVICE_NOTIFICATION)
|
||||||
|
|
||||||
#endif /* _ZEND_CONFIG_W32_H */
|
#endif /* _ZEND_CONFIG_W32_H */
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue