1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071 |
- #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);
- #endif
|