CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 4 of 4

Threaded View

  1. #4
    Join Date
    Mar 2002
    Location
    Izhevsk, Udmurtia, Russia
    Posts
    930
    I think you should use the DEF-file and specify your function there.
    Code:
    EXPORTS
    	DllMain	@1	PRIVATE
    	fnTest	@2	PRIVATE
    Otherwise you must use something like "fnTest@8" or "_fnTest@8" or "_fnTest". I do not know precisely.
    Last edited by Vi2; May 23rd, 2002 at 06:15 AM.
    With best wishes,
    Vita
    -----------------------
    Russian Software Development Network -- http://www.rsdn.ru

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured