1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- #ifndef PHP_WIN32_WINUTIL_H
- #define PHP_WIN32_WINUTIL_H
- #ifdef PHP_EXPORTS
- # define PHP_WINUTIL_API __declspec(dllexport)
- #else
- # define PHP_WINUTIL_API __declspec(dllimport)
- #endif
- PHP_WINUTIL_API char *php_win32_error_to_msg(HRESULT error);
- #define php_win_err() php_win32_error_to_msg(GetLastError())
- int php_win32_check_trailing_space(const char * path, const size_t path_len);
- PHP_WINUTIL_API int php_win32_get_random_bytes(unsigned char *buf, size_t size);
- #ifdef PHP_EXPORTS
- BOOL php_win32_init_random_bytes(void);
- BOOL php_win32_shutdown_random_bytes(void);
- #endif
- #if !defined(ECURDIR)
- # define ECURDIR EACCES
- #endif
- #if !defined(ENOSYS)
- # define ENOSYS EPERM
- #endif
- PHP_WINUTIL_API int php_win32_code_to_errno(unsigned long w32Err);
- #define SET_ERRNO_FROM_WIN32_CODE(err) \
- do { \
- int ern = php_win32_code_to_errno(err); \
- SetLastError(err); \
- _set_errno(ern); \
- } while (0)
- PHP_WINUTIL_API char *php_win32_get_username(void);
- #endif
|