Merge pull request #7816 from pi1024e/headers

Replace deprecated C headers with their C++ equivalent
This commit is contained in:
Clint Rutkas 2020-11-06 09:00:23 -08:00 коммит произвёл GitHub
Родитель 8a55d327b6 859e674c11
Коммит 5b85e942f1
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
2 изменённых файлов: 4 добавлений и 4 удалений

Просмотреть файл

@ -2,8 +2,8 @@
// Do not define WIN32_LEAN_AND_MEAN as WinUI doesn't work when it is defined
#include <unknwn.h>
#include <windows.h>
#include <stdlib.h>
#include <string.h>
#include <cstdlib>
#include <cstring>
#include <thread>
#include <winrt/Windows.system.h>
#include <winrt/windows.ui.xaml.hosting.h>

Просмотреть файл

@ -1,6 +1,6 @@
#include <windows.h>
#include <stdlib.h>
#include <string.h>
#include <cstdlib>
#include <cstring>
#include <shlwapi.h>
#include <shlobj.h>