- If I have a DLL file...how can I see functions are built as __stdcall or __cdecl?
- I want to create a DLL to export functions as __stdcall without DEF file and decorated function names with Visual Studio like:
__declspec(dllexport) int __stdcall TestFunktion(void) { return 0; }
Is there any easy way to create the functions without decoration without DEF file in Visual Studio?

__cdecl? - ssbssa