You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
615 B
35 lines
615 B
/*++
|
|
|
|
Copyright (c) Microsoft Corporation
|
|
|
|
Module Name:
|
|
|
|
preprocessor.h
|
|
|
|
Abstract:
|
|
|
|
Standard C/C++ Preprocessor magic.
|
|
|
|
Author:
|
|
|
|
Jay Krell (a-JayK, JayKrell) December 2000
|
|
|
|
Environment:
|
|
|
|
|
|
Revision History:
|
|
|
|
--*/
|
|
#pragma once
|
|
|
|
#define PASTE_(x,y) x##y
|
|
#define PASTE(x,y) PASTE_(x,y)
|
|
|
|
#define STRINGIZE_(x) # x
|
|
#define STRINGIZE(x) STRINGIZE_(x)
|
|
#define STRINGIZEW(x) PASTE(L, STRINGIZE_(x))
|
|
|
|
/* Visual C++ extension, rarely needed, useful in preprocessing .rgs files */
|
|
#define CHARIZE_(x) #@ x
|
|
#define CHARIZE(x) CHARIZE_(x)
|
|
#define CHARIZEW(x) PASTE(L, CHARIZE_(x))
|