1
0
mirror of https://github.com/wolfpld/tracy.git synced 2025-03-20 07:40:02 +08:00

Move TRACY_UWP define to own header

This commit is contained in:
Balazs Kovacsics
2022-02-10 20:26:45 +01:00
parent 7169f5f30a
commit a0a56eaf9e
5 changed files with 33 additions and 32 deletions
+11
View File
@@ -0,0 +1,11 @@
#ifndef __TRACYUWP_HPP__
#define __TRACYUWP_HPP__
#ifdef _WIN32
# include <winapifamily.h>
# if WINAPI_FAMILY_PARTITION(WINAPI_PARTITION_APP) && !WINAPI_FAMILY_PARTITION(WINAPI_PARTITION_DESKTOP)
# define TRACY_UWP
# endif
#endif
#endif