Add Chromium-only Blender WebEngine parity work
This commit is contained in:
31
blender-5.2.0/intern/utfconv/utf_winfunc.hh
Normal file
31
blender-5.2.0/intern/utfconv/utf_winfunc.hh
Normal file
@@ -0,0 +1,31 @@
|
||||
/* SPDX-FileCopyrightText: 2012 Blender Authors
|
||||
*
|
||||
* SPDX-License-Identifier: GPL-2.0-or-later */
|
||||
|
||||
/** \file
|
||||
* \ingroup intern_utf_conv
|
||||
*/
|
||||
|
||||
#ifndef __UTF_WINFUNC_H__
|
||||
#define __UTF_WINFUNC_H__
|
||||
|
||||
#ifndef WIN32
|
||||
# error "This file can only compile on windows"
|
||||
#endif
|
||||
|
||||
#include <cstdio>
|
||||
|
||||
FILE *ufopen(const char *filename, const char *mode);
|
||||
int uopen(const char *filename, int oflag, int pmode);
|
||||
int uaccess(const char *filename, int mode);
|
||||
int urename(const char *oldname, const char *newname, const bool do_replace);
|
||||
|
||||
char *u_alloc_getenv(const char *varname);
|
||||
void u_free_getenv(char *val);
|
||||
|
||||
int uput_getenv(const char *varname, char *value, size_t buffsize);
|
||||
int uputenv(const char *name, const char *value);
|
||||
|
||||
int umkdir(const char *pathname);
|
||||
|
||||
#endif /* __UTF_WINFUNC_H__ */
|
||||
Reference in New Issue
Block a user