terminal/src/interactivity/base/precomp.h
N d09fdd61cb
Change backslashes in include statements to forward slashes (#8205)
Many include statements use forward slashes, while others use backwards
slashes. This is inconsistent formatting. For this reason, I changed the
backward slashes to forward slashes since that is the standard.
2020-11-25 21:02:10 +00:00

24 lines
453 B
C

// Copyright (c) Microsoft Corporation.
// Licensed under the MIT license.
#include "../../host/precomp.h"
#ifdef BUILD_ONECORE_INTERACTIVITY
// From ntdef.h and winnt.h
typedef char CCHAR;
typedef short CSHORT;
typedef ULONG CLONG;
typedef CCHAR* PCCHAR;
typedef CSHORT* PCSHORT;
typedef CLONG* PCLONG;
typedef ULONG LOGICAL;
typedef ULONG* PLOGICAL;
// End ntdef.h and winnt.h
#include <ntlpcapi.h>
#endif
#pragma hdrstop