About Dll Export and Import
-
Hi, I have to export a class and it's function from a dll(this dll is already exists) then i have to import that class in to my application??? So,I did as, In that dll defined a macro as DLLExport: #ifdef DllExport #define DllExport __declspec( dllexport ) #endif In the class declaration gave as, class DllExport ATL_NO_VTABLE CShockwaveFlash: What i have to do after this??? Thanks and Regards, Siddharth
-
Hi, I have to export a class and it's function from a dll(this dll is already exists) then i have to import that class in to my application??? So,I did as, In that dll defined a macro as DLLExport: #ifdef DllExport #define DllExport __declspec( dllexport ) #endif In the class declaration gave as, class DllExport ATL_NO_VTABLE CShockwaveFlash: What i have to do after this??? Thanks and Regards, Siddharth
-
Hi, I have to export a class and it's function from a dll(this dll is already exists) then i have to import that class in to my application??? So,I did as, In that dll defined a macro as DLLExport: #ifdef DllExport #define DllExport __declspec( dllexport ) #endif In the class declaration gave as, class DllExport ATL_NO_VTABLE CShockwaveFlash: What i have to do after this??? Thanks and Regards, Siddharth
-
Thank you Actually,Dll which I am using is an exising dll.So I exported and imported the class and changed the project settings according to the tutorials. Now I included the header file in my sample application ,but it is not recognizing the file??? please help me... Siddharth
-
Can you explain it better?
Press: 1500 to 2,200 messages in just 6 days? How's that possible sir? **Dr.Brad :**Well,I just replied to everything Graus did and then argued with Negus for a bit.
I am using an existing dll and I want to export class from it.And I created a sample application(mfc) to import that particular class... So I used the steps above.But how I can check whether the class is exported or not ???