[LOCALSPL]
[reactos.git] / reactos / win32ss / printing / include / prtprocenv.h
1 /*
2 * PROJECT: ReactOS Printing Include files
3 * LICENSE: GNU LGPL v2.1 or any later version as published by the Free Software Foundation
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