
how do I register my dll with NT operating system using VC++5
With such a simple dll, there is no need to register it. It can be called
by any application that is aware it exists and had linked to it either
statically (at compile time) or dynamically (at run time).
Registering a dll (or any other component) is only necessary if you have
written it as an ActiveX component (meaning you have provided a
DllRegisterServer() function, among other things).
-Paul
___
Paul Little, Software Engineer
Quote:
>I have written a very very basic dll written (contains a dllmain and a
>getvalue() function - just returns the number 99)
<snip>
Quote:
>I then try to use the 'Register control' tool but it reports that my
>'...dll was loaded but the DllRegisterServer entry point was not found.