ioctl_tab.h

来自「老外的一个开源项目」· C头文件 代码 · 共 30 行

H
30
字号
// Copyright (c) David Vescovi.  All rights reserved.
// Part of Project DrumStix
// Windows Embedded Developers Interest Group (WE-DIG) community project.
// http://www.we-dig.org
// Copyright (c) Microsoft Corporation.  All rights reserved.
//------------------------------------------------------------------------------
//
//  File:  ioctl_tab.h
//
//  Configuration file for the OAL IOCTL component.
//
//  This file is included by the platform's ioctl.c file and defines the 
//  global IOCTL table, g_oalIoCtlTable[]. Therefore, this file may ONLY
//  define OAL_IOCTL_HANDLER entries. 
//
// IOCTL CODE,                          Flags   Handler Function
//------------------------------------------------------------------------------

{ IOCTL_HAL_POSTINIT,                       0, OALIoCtlHalPostInit         },
{ IOCTL_HAL_PHYADR,							0, OALIoCtlHalPhyAdr           },	
{ IOCTL_HAL_FCS,							0, OALIoCtlHalFcs	           },	
{ IOCTL_HAL_BOOTLOADER_VER,					0, OALIoCtlHalBootloaderVer    },	
{ IOCTL_HAL_HARDWARE_CNFG,					0, OALIoCtlHalHardwareConfig   },	
{ IOCTL_HAL_BOOTFLAGS,						0, OALIoCtlHalBootFlags        },	

#include <oal_ioctl_tab.h>

// Required Termination
{ 0,                                        0,  NULL                        }

⌨️ 快捷键说明

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