The MASM Forum

Specialised Projects => Compiler Based Assembler => Topic started by: Zen on October 19, 2014, 05:05:29 AM

Title: DLL Exports Explained
Post by: Zen on October 19, 2014, 05:05:29 AM
This is a common problem for novice MASM programmers,...how to correctly import a function from a DLL (often written in another language),...or, how to write a DLL function export that will interoperate with programs written in other programming languages. Also, explains function name mangling (which is different in different languages), and, how to unmangle and undecorate function names.
DllExports, Common Problems and Solutions, Code Project, Aug 2014 (http://www.codeproject.com/Articles/778255/DllExports-Common-Problems-and-Solutions)
Title: Re: DLL Exports Explained
Post by: Gunther on October 19, 2014, 10:40:43 PM
Very good article, Zen. Thank you for sharing it.  :t

Gunther