/
redgpu
/
CuRast
Обзор
Документация
Войти
/
redgpu
/
CuRast
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
libs/laszip/src/mydefs.cpp
46 строк
1 KB
m-schuetz
initial commit
23 апр 2026, 18:12
23 апр 2026, 18:12
04cf9f3
Код
Авторство
О чём код?
/* =============================================================================== FILE: mydefs.cpp CONTENTS: see corresponding header file PROGRAMMERS: martin.isenburg@rapidlasso.com - http://rapidlasso.com COPYRIGHT: (c) 2011-2019, martin isenburg, rapidlasso - fast tools to catch reality This is free software; you can redistribute and/or modify it under the terms of the GNU Lesser General Licence as published by the Free Software Foundation. See the LICENSE.txt file for more information. This software is distributed WITHOUT ANY WARRANTY and without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. CHANGE HISTORY: see corresponding header file =============================================================================== */ #include "mydefs.hpp" #if defined(_MSC_VER) #include <windows.h> wchar_t* UTF8toUTF16(const char* utf8) { wchar_t* utf16 = 0; int len = MultiByteToWideChar(CP_UTF8, 0, utf8, -1, 0, 0); if (len > 0) { utf16 = new wchar_t[len]; MultiByteToWideChar(CP_UTF8, 0, utf8, -1, utf16, len); } return utf16; } #endif