kol
kol

Reputation: 28698

Which parts of the Windows API are not accessible from ANSI C code?

Before 2000, I have been using ANSI C for Windows programming. Later I changed to C++ and MFC, then to Delphi, and nowadays I prefer C#, but I'm curious if it is still possible to use plain C to access every API of the modern editions of Windows.

For example, even COM/OLE objects can be dealt with from C.

Upvotes: 1

Views: 395

Answers (1)

Lior Kogan
Lior Kogan

Reputation: 20628

The Windows APIs list is described here.

Most of the APIs are C-based (structures and functions). However, few are C++ based (classes):

Upvotes: 5

Related Questions