EXPORTS DllCanUnloadNow @1 PRIVATE DllGetClassObject @2 PRIVATE DllRegisterServer @3 PRIVATE DllUnregisterServer @4 PRIVATE

 

This file is mostly boilerplate. All you need define is the LIBRARY name, which is optional as you really do not need the .lib file for a COM dll. The export names are always the same. You do need to name the file itself so a standard .dll compile and link bat file may find it.

 

 

CONCLUSION

--------------------------------------------------------------------------------------------------------------------