共用方式為


AfxOleUnregisterTypeLib

呼叫此函式來移除 Windows 註冊資料庫中的型別程式庫項目。

BOOL AFXAPI AfxOleUnregisterTypeLib(
   REFGUID tlID 
);

參數

  • tlID
    型別程式庫的唯一識別碼。

傳回值

型別程式庫已成功取消註冊 ; 如果非零值 否則 0。

範例

// Type library GUID, corresponds to the uuid attribute of the library
// section in the .odl file.
const GUID CDECL BASED_CODE _tlid =
        { 0xA44774E8, 0xAE00, 0x451F, { 0x96, 0x1D, 0xC7, 0xD2, 0xD2, 0x58, 0xA0, 0x75 } };

// Type library major version number, number on the left of decimal
// point, in version attribute of the library section in .odl file.
const WORD _wVerMajor = 1;

// Type library minor version number, number on the right of decimal
// point, in version attribute of the library section in .odl file.
const WORD _wVerMinor = 0;

STDAPI DllUnregisterServer(void)
{
    AFX_MANAGE_STATE(_afxModuleAddrThis);

    if (!AfxOleUnregisterTypeLib(_tlid, _wVerMajor, _wVerMinor))
        return ResultFromScode(SELFREG_E_TYPELIB);

    if (!COleObjectFactoryEx::UpdateRegistryAll(FALSE))
        return ResultFromScode(SELFREG_E_CLASS);

    return NOERROR;
}

需求

標頭: afxdisp.h

請參閱

參考

AfxOleUnregisterClass

AfxOleRegisterTypeLib

概念

MFC 巨集和全域變數