Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How has Windows API changed in the last 10 years? [closed]

I am interested in how Windows API has changed in the last 10 years since Windows 98 and Windows 2000? What interesting API calls have been added that you know? Also do people still write anything in API?

I am now learning everything I can about Windows programming and I am really curious about this. Because books don't explain everything, they just explain small subset of all API. And I want to know about the most modern things in Windows API.

So, my general question is where I can find a detailed WinAPI diff report for 98, 200, Xp, Vista and 7 versions?

like image 629
bodacydo Avatar asked Jun 25 '10 21:06

bodacydo


1 Answers

There has been considerable change in the Win32 API in the past ten years. This link gives you API changes between XP & Vista and Vista & Windows 7. It's a large list.

All applications on Windows use the API, either directly (C/C++ calling into the existing Win32 API's and COM objects), or indirectly via a framework like MFC or .NET.

like image 69
Michael Avatar answered Nov 07 '22 17:11

Michael