123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- #ifndef PHP_WIN32_CONSOLE_H
- #define PHP_WIN32_CONSOLE_H
- #ifndef PHP_WINUTIL_API
- #ifdef PHP_EXPORTS
- # define PHP_WINUTIL_API __declspec(dllexport)
- #else
- # define PHP_WINUTIL_API __declspec(dllimport)
- #endif
- #endif
- #include "php.h"
- #include "php_streams.h"
- #include <windows.h>
- #ifndef ENABLE_VIRTUAL_TERMINAL_PROCESSING
- #define ENABLE_VIRTUAL_TERMINAL_PROCESSING 0x0004
- #endif
- PHP_WINUTIL_API BOOL php_win32_console_fileno_is_console(zend_long fileno);
- PHP_WINUTIL_API BOOL php_win32_console_fileno_has_vt100(zend_long fileno);
- PHP_WINUTIL_API BOOL php_win32_console_fileno_set_vt100(zend_long fileno, BOOL enable);
- PHP_WINUTIL_API BOOL php_win32_console_is_own(void);
- PHP_WINUTIL_API BOOL php_win32_console_is_cli_sapi(void);
- #endif
|