What is the semantics of langtypes C and STDCALL for .MODEL in MASM assembly?
.MODEL memorymodel [[, langtype]] [[, stackoption]]
https://msdn.microsoft.com/en-us/library/ss9fh0d6.aspx
I notice that I can only call a .asm function from C++ code, if the .MODEL includes the C langtype.
But what does these langtypes mean?
I've tried Googling around, but even thus the above link mentions the possible langtypes, no description is provided.
Can someone clarify the semantics of langtypes and provide a link for proper documentation?