php-src/win32/winutil.h

32 lines
1.5 KiB
C
Raw Normal View History

2001-12-02 13:34:40 +00:00
/*
+----------------------------------------------------------------------+
2014-09-19 16:33:14 +00:00
| PHP Version 7 |
2001-12-02 13:34:40 +00:00
+----------------------------------------------------------------------+
2017-01-04 17:14:55 +00:00
| Copyright (c) 1997-2017 The PHP Group |
2001-12-02 13:34:40 +00:00
+----------------------------------------------------------------------+
2006-01-01 12:51:34 +00:00
| This source file is subject to version 3.01 of the PHP license, |
2001-12-02 13:34:40 +00:00
| that is bundled with this package in the file LICENSE, and is |
| available through the world-wide-web at the following url: |
2006-01-01 12:51:34 +00:00
| http://www.php.net/license/3_01.txt |
2001-12-02 13:34:40 +00:00
| If you did not receive a copy of the PHP license and are unable to |
| obtain it through the world-wide-web, please send a note to |
| license@php.net so we can mail you a copy immediately. |
+----------------------------------------------------------------------+
| Author: |
+----------------------------------------------------------------------+
*/
PHPAPI char *php_win32_error_to_msg(HRESULT error);
2001-12-02 13:34:40 +00:00
#define php_win_err() php_win32_error_to_msg(GetLastError())
int php_win32_check_trailing_space(const char * path, const int path_len);
2014-11-13 11:31:29 +00:00
PHPAPI int php_win32_get_random_bytes(unsigned char *buf, size_t size);
#ifdef ZTS
void php_win32_init_rng_lock();
void php_win32_free_rng_lock();
#else
#define php_win32_init_rng_lock();
#define php_win32_free_rng_lock();
#endif