13 lines
274 B
C
13 lines
274 B
C
|
|
// Copyright (c) 2022 Sentry. All Rights Reserved.
|
||
|
|
|
||
|
|
#pragma once
|
||
|
|
|
||
|
|
#include "HAL/Platform.h"
|
||
|
|
|
||
|
|
#if PLATFORM_WINDOWS
|
||
|
|
#include "Windows/AllowWindowsPlatformTypes.h"
|
||
|
|
#include "sentry.h"
|
||
|
|
#include "Windows/HideWindowsPlatformTypes.h"
|
||
|
|
#elif PLATFORM_LINUX
|
||
|
|
#include "sentry.h"
|
||
|
|
#endif
|