开发者

Windows API functions

开发者 https://www.devze.com 2023-02-05 17:57 出处:网络
Are they开发者_如何学C standard code c or c++ code? what are they?The original Win32 API is C-based.There are however a substantial number of services within Windows that are COM based.Good examples a

Are they开发者_如何学C standard code c or c++ code? what are they?


The original Win32 API is C-based. There are however a substantial number of services within Windows that are COM based. Good examples are the clipboard, drag+drop, the shell, the user mode driver framework, DirectX. While it is technically possible to write COM code in C, it is excruciatingly painful to do so.

Realistically you use C++ there. And a C++ class library to make the original C-based API less painful, especially for GUI code.


They're standard C code, if you're programming against pure Windows API.

A C++ based wrapper called MFC is available.

All of this is being pushed out in favor of .NET framework.


The standard Windows API is a C library. Wrappers exist for other languages (C++, etc).

Just read it on wikipedia.


Windows API is langugage neutral. It is neither C nor C++. Microsoft says that Windows itself is written mainly in C++, but you don't need any classes for vast majority of the API and even classes in API (e.g. in Direct X) can be used in pure C without classes.

Although some C programmers think it is a C library, compiler of a programming language must support proprietary Windows calling model, it is not a classic C calling convention. (Obviously almost each real world C compiler supports it nowadays.)

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号