mirror of
https://github.com/Kelsidavis/WoWee.git
synced 2026-03-23 07:40:14 +00:00
17 lines
356 B
C
17 lines
356 B
C
#pragma once
|
|
|
|
// Compatibility shim for building AMD FSR2 SDK sources on non-MSVC toolchains.
|
|
#include <stddef.h>
|
|
#include <wchar.h>
|
|
#include <string.h>
|
|
#include <stdio.h>
|
|
#include <locale>
|
|
#include <codecvt>
|
|
|
|
#ifndef _countof
|
|
#define _countof(x) (sizeof(x) / sizeof((x)[0]))
|
|
#endif
|
|
|
|
#ifndef wcscpy_s
|
|
#define wcscpy_s(dst, src) wcscpy((dst), (src))
|
|
#endif
|