Originally posted by sean345
You just do this:
Code:
LoadLibrary("Riched20.dll");
or what ever DLL you want. This registers the window class for you.

- Sean
Err...not really....it loads the dll into your address space (making its exported functions & data available), calls the dll's entry point with a DLL_PROCESS_ATTACH message and returns a handle to the module...