How is WinRT implemented beneath the hood? Uses NT directly kernel directly or is it implemented on top of Win32/64?

link|improve this question

Not sure what programming problem this question solves. It's implemented the same way as Win32 OS features are implemented. I believe this was stated multiple times at the //build keynotes. – Raymond Chen Nov 25 '11 at 14:37
1  
God forbid you actually have some understanding of the system you are using... :-P At least me it helps while programming, to have some idea of how the system works. – Amigable Clark Kant Nov 25 '11 at 14:42
And according to @LarryOsterman below it's not ONLY implemented the same way as Win32 features are implemented, it's a bit of both. – Amigable Clark Kant Nov 25 '11 at 14:44
Um, Win32 is also written with parts that talk to kernel services and parts that talk to other parts of Win32. It's a bit of both. – Raymond Chen Nov 25 '11 at 15:05
2  
Raymond's comment is 100% correct. He and I are saying the exact same thing - parts of Win32 are written directly on kernel services and parts aren't. – Larry Osterman Nov 25 '11 at 17:43
feedback

1 Answer

up vote 6 down vote accepted

Both - some parts of the Windows runtime are new top-to-bottom (and thus interact directly with kernel services), other parts of the Windows runtime (WinRT) use existing services in Windows.

link|improve this answer
Thanks a lot! Straight from the horses mouth right? – Amigable Clark Kant Nov 24 '11 at 18:31
3  
I'm eagerly awaiting more truthful architecture diagrams that show the actual dependencies among the various application API stacks. – Bob Riemersma Nov 25 '11 at 15:09
1  
I'm not sure that any of that matters (architectural diagrams showing the actual dependencies). – Larry Osterman Nov 25 '11 at 17:47
1  
@Bob I think it would count as an implementation detail. Today some of it is on top of Win32, tomorrow is something else - why would the API client actually care? – Pavel Minaev Nov 28 '11 at 19:10
2  
I think this has become another point of confusion for the press, like the one conflating Win32 and x86. The only issue here is clarity, in the interest of defusing ongoing and pointless discussion by having the facts stated by those who know. I would hope devs know IE, CLR, etc. do not bypass Win32 either, but those diagrams gave people other ideas. – Bob Riemersma Nov 29 '11 at 18:41
show 2 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.