From: Damian Yerrick Newsgroups: comp.os.msdos.djgpp Subject: Re: Problem with .O file Organization: Pin Eight Software http://pineight.8m.com/ Message-ID: <15hfts4plrcsoapu9rfd8bs5p448dv05fc@4ax.com> References: X-Newsreader: Forte Agent 1.7/32.534 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Lines: 29 X-Trace: /KDWjckOzjK39l/fJUW/dnYyGRfyG/Ug53K9EhMaj9JpvI+3JMm1QlRPCo7BWGuBK9X+DJxhDjWq!kQWGanq1BkbUciNJd3mQuwRPwZbajuSUJD+bsNf5Mrdb58HMhg5guShZ6/z8WBmcWEJTABc7hZLp!2diRvw== X-Complaints-To: abuse AT gte DOT net X-Abuse-Info: Please be sure to forward a copy of ALL headers X-Abuse-Info: Otherwise we will be unable to process your complaint properly NNTP-Posting-Date: Sun, 01 Oct 2000 23:13:30 GMT Distribution: world Date: Sun, 01 Oct 2000 23:13:30 GMT To: djgpp AT delorie DOT com DJ-Gateway: from newsgroup comp.os.msdos.djgpp Reply-To: djgpp AT delorie DOT com On Sun, 01 Oct 2000 22:55:27 GMT, "Wim Cools" wrote: >I see the keyword _DoSomething__Fv instead of _DoSomething when I >compile it in C-mode. Because I'm using a Dynamic Link library DJGPP doesn't support DLLs. Are you creating a static library (*.a)? >Does anybody knowwhat this "__Fv" means It's C++ name mangling. >and how I can prevent the compiler from adding __Fv extern "C" void blah() { ... } The `extern "C"' will compile the function using C language calling conventions. --