pNKEnumExtensionDRAM

This function is a kernel global function pointer used by the kernel to enumerate multiple memory sections indicated by the OEM. The kernel calls this function to determine if additional memory is present.

Note   If using more than two extended memory sections, the OEM must first change the kernel variable. For more information, see the Remarks section.
DWORD (*pNKEnumExtensionDRAM)(
  PMEMORY_SECTION pMemSections,
  DWORD cMemSections
);
Parameters
pMemSections
[in] Pointer to an array of MEMORY_SECTION structures containing the extended memory sections.
cMemSections
[in] Size of the array specified by pMemSections. This value represents the maximum number of extended memory sections that can be reported to the kernel.
Return Values

Returns the number of extended memory sections written to the array specified by pMemSections.

Remarks

During OEMInit, the OEM must initialize pNKEnumExtensionDRAM to point to an OEM-defined OEMEnumExtensionDRAM function.

The kernel checks pNKEnumExtensionDRAM during boot. If the pointer is NULL (default), the kernel will call OEMGetExtensionDRAM. If the pointer is set, the kernel will not call OEMGetExtensionDRAM.

Example

The following example shows an OEM implementation of pNKEnumExtensionDRAM. Note how this example limits the number of sections to the number the kernel has indicated it can handle. By providing the sections in decreasing order of size, this code gives the kernel the largest possible amount of memory.

static DWORD OEMEnumExtensionDRAM(
  PMEMORY_SECTION pMemSections,
  DWORD cMemSections)
{
    DWORD cSections = 0;
    if (cSections < cMemSections)
    {
        pMemSections[cSections].dwFlags = 0;
        pMemSections[cSections].dwStart = 0x80000000;
        pMemSections[cSections].dwLen = 0x01000000;
        cSections++;
    }
    if (cSections < cMemSections)
    {
        pMemSections[cSections].dwFlags = 0;
        pMemSections[cSections].dwStart = 0x82000000;
        pMemSections[cSections].dwLen = 0x00f00000;
        cSections++;
    }
    if (cSections < cMemSections)
    {
        pMemSections[cSections].dwFlags = 0;
        pMemSections[cSections].dwStart = 0x81000000;
        pMemSections[cSections].dwLen = 0x00080000;
        cSections++;
    }
    return cSections;
}
Requirements

OS Versions: Windows CE .NET 4.0 and later.
Header: Nkintr.h.
Link Library: Coredll.lib.

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值