Hacker News new | ask | show | jobs
by pointyhats 4757 days ago
The Windows kernel is C++. From what I've seen (shared source), it's mainly C-style C++ though. I didn't see a single template or a class in my travels.
1 comments

If you read the WRK, ntoskrnl is all C...
Or a C++ subset in the near future, if the BUILD 2012 remark is true.
and most of all extern "C", possibly no exceptions, no RTTI, no global new/delete, etc. - e.g. "embedded"-C++ like (only guessing).
Most likely yes.