Tempated class instantiation

2009-12-15 Thread Mike L.
I'm making a class template that only works with strings, so I thought it'd be good to instantiate each template with char, wchar, and dchar right in the template's module so that when it's compiled it'll be part of the .obj file and won't have to compile it for every other project that uses it.

Re: Making a DLL with a static library dependency

2009-12-15 Thread Kagamin
Trass3r Wrote: > I'm not sure if the Windows loader does such chained DLL loading. > But you can always use LoadLibrary & GetProcAddress for that purpose. Well... dll that can't call any function from kernel32.dll is practically useless.

Re: Making a DLL with a static library dependency

2009-12-15 Thread Phil Deets
On Tue, 15 Dec 2009 07:06:49 -0500, Trass3r wrote: Phil Deets schrieb: Actually, it depends on another DLL. The static library I need to link to is an import library for that DLL. I'll work on loading that DLL without the .lib file using the Windows API while I wait for an answer here.

Re: Making a DLL with a static library dependency

2009-12-15 Thread Trass3r
Phil Deets schrieb: Actually, it depends on another DLL. The static library I need to link to is an import library for that DLL. I'll work on loading that DLL without the .lib file using the Windows API while I wait for an answer here. I'm not sure if the Windows loader does such chained DLL