We knew that Microsoft Office has a Mac version.
Just curious, who knows which compiler is used to produce Microsoft Office for Mac?
When I looked at the title of the Windows SDK "Windows.h", I found the following code snippet:
#ifndef _MAC
#if defined(_68K_) || defined(_MPPC_)
#define _MAC
#endif
#endif
Does Microsoft have its own C ++ compiler for Mac? If so, I think the compiler should support COM (Component Object Model), while gcc is not. ("Support" means a product is a COM-compatible C ++ object)
source
share