CLASS_NAME[]

const wchar_t CLASS_NAME[] = L"Sample Window Class";

Why is CLASS_NAME[] there and what is it doing?

Thank you,
Sep
That would be the name of an array of wchar_ts. The [] indicates an array, CLASS_NAME is the name.

-Albatross
Last edited on
Topic archived. No new replies allowed.