mirror of
https://github.com/microsoft/PowerToys
synced 2025-08-22 01:58:04 +00:00
11 lines
383 B
C
11 lines
383 B
C
|
/***
|
||
|
* Copyright (C) Microsoft. All rights reserved.
|
||
|
* Licensed under the MIT license. See LICENSE.txt file in the project root for full license information.
|
||
|
*
|
||
|
*/
|
||
|
#define CPPREST_VERSION_MINOR 10
|
||
|
#define CPPREST_VERSION_MAJOR 2
|
||
|
#define CPPREST_VERSION_REVISION 13
|
||
|
|
||
|
#define CPPREST_VERSION (CPPREST_VERSION_MAJOR * 100000 + CPPREST_VERSION_MINOR * 100 + CPPREST_VERSION_REVISION)
|