⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 registry.c

📁 Windows CE 6.0 BSP for VOIPAC Board (PXA270) Version 2b.
💻 C
字号:
//
// Copyright (c) Microsoft Corporation.  All rights reserved.
//
//
// Use of this source code is subject to the terms of the Microsoft end-user
// license agreement (EULA) under which you licensed this SOFTWARE PRODUCT.
// If you did not accept the terms of the EULA, you are not authorized to use
// this source code. For a copy of the EULA, please see the LICENSE.RTF on your
// install media.
//
//------------------------------------------------------------------------------
//
//  File:  registry.c
//
#include <windows.h>
#include <ceddk.h>
#include <oal.h>

//------------------------------------------------------------------------------
//
//  Function:  OALKitlInitRegistry
//
//  This function is called as part of IOCTL_HAL_INITREGISTRY to update
//  registry with information about KITL device. This must be done to avoid
//  loading Windows CE driver in case that it is part of image. On image
//  without KITL is this function replaced with empty stub.
//
//  This implementation works only for PCI KITL devices. It probably should
//  be replaced with platform specific code if KITL device is on internal
//  bus.
//
VOID OALKitlInitRegistry()
{
    DEVICE_LOCATION devLoc;
    
    OALMSG(OAL_KITL&&OAL_FUNC, (L"+OALKitlInitRegistry\r\n"));

    if (!OALKitlGetDevLoc(&devLoc)) goto cleanUp;
    
    switch (devLoc.IfcType) {
#ifdef KITL_PCI        
    case PCIBus:
        OALPCIRegisterAsUsed(
            devLoc.BusNumber, *(OAL_PCI_LOCATION*)&devLoc.LogicalLoc
        );
        break;
#endif
    }        

cleanUp:
    OALMSG(OAL_KITL&&OAL_FUNC, (L"-OALKitlInitRegistry\r\n"));
}

//------------------------------------------------------------------------------

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -