cfg.c
来自「Windows CE 6.0 BSP for the Beagle Board.」· C语言 代码 · 共 54 行
C
54 行
//
// Copyright (c) Special Computing. All rights reserved.
// Copyright (c) Microsoft Corporation. All rights reserved.
//
//------------------------------------------------------------------------------
//
// File: cfg.c
//
// This file implements functions used to load/save EBOOT configuration info.
// This is a RAM based version of EBOOT therefor mostly stubs.
//
//------------------------------------------------------------------------------
#include <eboot.h>
//------------------------------------------------------------------------------
BOOL BLReadBootCfg(BOOT_CFG *pBootCfg)
{
return FALSE;
}
//------------------------------------------------------------------------------
BOOL BLWriteBootCfg(BOOT_CFG *pBootCfg)
{
return FALSE;
}
BOOL LANReadEEPROM(UINT8 *pAddress, UINT16 EEPROMAddress , UINT16 *pwVal)
{
return FALSE;
}
BOOL LANWriteEEPROM(UINT8 *pAddress, UINT16 EEPROMAddress, UINT16 Data )
{
return FALSE;
}
//------------------------------------------------------------------------------
BOOL BLReadMAC(BOOT_CFG *pConfig, UINT16 *pMAC)
{
return FALSE;
}
//------------------------------------------------------------------------------
BOOL BLWriteMAC(BOOT_CFG *pConfig, UINT16 MAC[3])
{
return FALSE;
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?