Programming Tips - What's the .def file for an .ocx look like?

Date: 2008aug26 Platform: win32 Keywords: COM Q. What's the .def file for an .ocx look like? A. All .ocx's (ActiveX) files have the same .def file:
LIBRARY "<YourName>.OCX" EXPORTS DllCanUnloadNow @1 PRIVATE DllGetClassObject @2 PRIVATE DllRegisterServer @3 PRIVATE DllUnregisterServer @4 PRIVATE