I'm creating a DLL file that has a reference to another DLL file.
Is it possible to create a DLL file with the other one inside (thus not referring to another DLL file somewhere outside, but referring to itself).

Eg: I've a.dll referring to b.dll.
I want to include b inside a, hence having one dll file instead of 2.

I know this is not the purpose of dynamic link libraries, but my libraries are about 15kb and with not page fault so often. So it doesn't really matter.

Thank you.