Some checks failed
cpp-template / build (Debug, aarch64-linux-gnu) (push) Failing after 27s
cpp-template / build (Release, mipsel-linux-gnu) (push) Failing after 12m45s
cpp-template / build (Release, host.gcc) (push) Failing after 12m52s
cpp-template / build (Release, arm-linux-gnueabihf) (push) Failing after 12m55s
cpp-template / build (Release, aarch64-linux-gnu) (push) Failing after 13m1s
cpp-template / build (Debug, mipsel-linux-gnu) (push) Failing after 13m6s
cpp-template / build (Debug, host.gcc) (push) Failing after 13m11s
cpp-template / build (Debug, arm-linux-gnueabihf) (push) Failing after 13m19s
17 lines
392 B
C++
17 lines
392 B
C++
#ifndef __TRACYWINFAMILY_HPP__
|
|
#define __TRACYWINFAMILY_HPP__
|
|
|
|
#ifdef _WIN32
|
|
# include <winapifamily.h>
|
|
# if !WINAPI_FAMILY_PARTITION(WINAPI_PARTITION_DESKTOP)
|
|
# define TRACY_WIN32_NO_DESKTOP
|
|
# if WINAPI_FAMILY_PARTITION(WINAPI_PARTITION_GAMES)
|
|
# define TRACY_GDK
|
|
# elif WINAPI_FAMILY_PARTITION(WINAPI_PARTITION_APP)
|
|
# define TRACY_UWP
|
|
# endif
|
|
# endif
|
|
#endif
|
|
|
|
#endif
|