hi,
I have created a simple dll using MSVC. But after building, its size becomes more than 200Kb.
I have included windows.h and <cstring>
is there any way I can make it smaller?
thanks in advance.
Printable View
hi,
I have created a simple dll using MSVC. But after building, its size becomes more than 200Kb.
I have included windows.h and <cstring>
is there any way I can make it smaller?
thanks in advance.
Try compiling in Release mode. Unfortunately, the STL tends to inflate code a bit because it's all included mostly-inline for speed.
You could change to using Multithreaded DLL as your compile type (Project Settings).
thanks parksie,
it works fine.
abhid