We are trying to embed dll inside exe.
Could please provide steps to embed dll inside exe?
Is it required to create separate dll project and we need to add reference?
We are trying to embed dll inside exe.
Could please provide steps to embed dll inside exe?
Is it required to create separate dll project and we need to add reference?
As you tagged C++,
in C++, you just add it as binary resource.
Then FindResource, CreateFile, LoadResource, LockResource, WriteFile, CloseHandle
to extract it
6 people are following this question.