converting win32 exe to win32 dll
-
Hi.. I have a Win32 Console EXE project, which has many .cpp and .h files, I want to convert this Win32 Console EXE project from an EXE to a DLL, so that i would be able to use it as an DLL(i.e. by exporting this DLL's classses) in some other Win32 EXE application ^_^ Is anybody there to guide me how to convert an Win32 EXE into Win32 DLL, and how to export Win32 DLL's classes ? Thanks in advance :-D. Regards, ADARSH
-
Hi.. I have a Win32 Console EXE project, which has many .cpp and .h files, I want to convert this Win32 Console EXE project from an EXE to a DLL, so that i would be able to use it as an DLL(i.e. by exporting this DLL's classses) in some other Win32 EXE application ^_^ Is anybody there to guide me how to convert an Win32 EXE into Win32 DLL, and how to export Win32 DLL's classes ? Thanks in advance :-D. Regards, ADARSH
-
Hi, Now, by researching on this conversion (exe to dll), i got to know how to convert from Win32 exe to Win32 dll. basically, for that u have to export each and every class or function by using __declspec(dllexport), and by creating one .h header file which will contain the declerations of all the functions or classes followed by __declspec(dllexport) keyword. any further queries are welcome! bye, Regards, ADARSH