在VC编译期间打印输出

////////////////////////////////////////////////////////////////////////////////////////
/*
    来源 Jeffrey Richter 的《Windows 核心编程》(中文)第四版 (机械工业出版社)Page 681.
*/
#define chSTR2_ZXY(x) #x
#define chSTR_ZXY(x) chSTR2_ZXY(x)
#define PRA_MSG(desc) message(__FILE__ "(" chSTR_ZXY(__LINE__) "):" #desc)

////////////////////////////////////////////////////////////////////////////////////////

 

用例:

#pragma PRA_MSG(Hello World)

你可能感兴趣的:(编程,windows,File,出版)