1 /*
2  * PROJECT:     ReactOS Printing Include files
3  * LICENSE:     GPL-2.0+ (https://spdx.org/licenses/GPL-2.0+)
4  * PURPOSE:     Provide a constant for the current Printing Processor Environment based on the architecture
5  * COPYRIGHT:   Copyright 2016 Colin Finck (colin@reactos.org)
6  */
7 
8 #ifndef _REACTOS_PRTPROCENV_H
9 #define _REACTOS_PRTPROCENV_H
10 
11 const WCHAR wszCurrentEnvironment[] =
12 #if defined(_X86_)
13     L"Windows NT x86";
14 #elif defined(_AMD64_)
15     L"Windows x64";
16 #elif defined(_ARM_)
17     L"Windows ARM";
18 #else
19     #error Unsupported architecture
20 #endif
21 
22 const DWORD cbCurrentEnvironment = sizeof(wszCurrentEnvironment);
23 
24 #endif
25