|
From: KJK::Hyperion <no...@li...> - 2002-05-27 23:29:48
|
At 13.43 27/05/2002, you wrote:
>3) Microsoft seems to have a policy that constants are only mentioned by
>name in the Windows DDK documentation, and they are defined in the header
>files, so I have copy/pasted them from there.
can they stop you from writing something like:
#define printconst(__x__) printf("%s = %d\n", #__x__, (__x__))
printconst(UNDOCUMENTED_CONSTANT_1);
printconst(UNDOCUMENTED_CONSTANT_2);
/* etc. */
|