#ifndef REGISTRY_H #define REGISTRY_H /////////////////////////////////////////////////////////////// // registry.h - create registry entries for server // // // // Platform: Micron Dual Pentium 200, WinNT 4.0, SP3 // // Application: Demonstration for CSE791 - Distrib. Objs // // Authors: Eddon & Eddon, Inside Distributed COM, // // Microsoft Press, 1998 // // Modified: Jim Fawcett, Syracuse Univ, CST 2-187 // // (315) 443-3948, fawcett@ecs.syr.edu // /////////////////////////////////////////////////////////////// // This function will register a component. HRESULT RegisterServer( const char* szModuleName, REFCLSID clsid, const char* szFriendlyName, const char* szVerIndProgID, const char* szProgID, const char* szThreadingModel ); // This function will unregister a component. HRESULT UnregisterServer( REFCLSID clsid, const char* szVerIndProgID, const char* szProgID ); #endif