Oct 28, 2001 #1 curbelo Programmer Oct 28, 2001 1 US How i can create a dll in Visual c++ and after use it in Delphi
Oct 29, 2001 #2 crux Programmer Nov 29, 2000 13 NL creation of DLL: create a project with MFC AppWizard (dll) in the .def file you name your entry's without arguments: FUNCTION1 FUNCTION2 etc. in the .cpp file write the functions: int FUNCTION1( char* a , etc ) { } or if this does not work, try: int __stdcall FUNCTION1( ) { } to minimize problems: Use only capitals in your fuction names. Link MFC staticly. Upvote 0 Downvote
creation of DLL: create a project with MFC AppWizard (dll) in the .def file you name your entry's without arguments: FUNCTION1 FUNCTION2 etc. in the .cpp file write the functions: int FUNCTION1( char* a , etc ) { } or if this does not work, try: int __stdcall FUNCTION1( ) { } to minimize problems: Use only capitals in your fuction names. Link MFC staticly.
Dec 8, 2001 #3 Guest_imported New member Jan 1, 1970 0 how to create dll ,shared library,use in java program Upvote 0 Downvote