answersLogoWhite

0

Hi, Creating dll is pretty easy if you have Microsoft visula studio.. The basic concept is as follows: 1)Create new project and choose a win 32 - dll from the projects 2) Append the following line before every class declaration class _declspec ( dllexport ) Eg. class _declspec ( dllexport ) cComplex { public: cComplex(float a= 0.0, float b = 0.0); private: float real; float img; }; 3) Similarly if u are using any function just append _declspec ( dllexport ) before function. 4) for consuming or using that dll just mention dllimport in place of dllexport Thats all for now, anupamonu@gmail.com

User Avatar

Wiki User

18y ago

Still curious? Ask our experts.

Chat with our AI personalities

ViviVivi
Your ride-or-die bestie who's seen you through every high and low.
Chat with Vivi
FranFran
I've made my fair share of mistakes, and if I can help you avoid a few, I'd sure like to try.
Chat with Fran
RafaRafa
There's no fun in playing it safe. Why not try something a little unhinged?
Chat with Rafa
More answers

By running a compiler, assuming the text file contains a source program. The compiler translates source language into machine language.

User Avatar

Wiki User

12y ago
User Avatar

Add your answer:

Earn +20 pts
Q: How do you convert a Text file to a DLL file?
Write your answer...
Submit
Still have questions?
magnify glass
imp