sktypes.h

来自「这是Marvell Technology Group Ltd. 4355 (re」· C头文件 代码 · 共 51 行

H
51
字号
/****************************************************************************** * * Name:	sktypes.h * Project:	GEnesis, PCI Gigabit Ethernet Adapter * Version:	$Revision: 1.3.4.1 $ * Date:	$Date: 2007/10/31 14:17:33 $ * Purpose:	Define data types for Linux * ******************************************************************************//****************************************************************************** * *      LICENSE: *      (C)Copyright Marvell. *       *      This program is free software; you can redistribute it and/or modify *      it under the terms of the GNU General Public License as published by *      the Free Software Foundation; either version 2 of the License, or *      (at your option) any later version. *       *      The information in this file is provided "AS IS" without warranty. *      /LICENSE * ******************************************************************************/#ifndef __INC_SKTYPES_H#define __INC_SKTYPES_H#define SK_I8    s8    /* 8 bits (1 byte) signed       */#define SK_U8    u8    /* 8 bits (1 byte) unsigned     */#define SK_I16  s16    /* 16 bits (2 bytes) signed     */#define SK_U16  u16    /* 16 bits (2 bytes) unsigned   */#define SK_I32  s32    /* 32 bits (4 bytes) signed     */#define SK_U32  u32    /* 32 bits (4 bytes) unsigned   */#define SK_I64  s64    /* 64 bits (8 bytes) signed     */#define SK_U64  u64    /* 64 bits (8 bytes) unsigned   */#define SK_UPTR	ulong  /* casting pointer <-> integral */#define SK_BOOL   SK_U8#define SK_FALSE  0#define SK_TRUE   (!SK_FALSE)#endif	/* __INC_SKTYPES_H *//******************************************************************************* * * End of file * ******************************************************************************/

⌨️ 快捷键说明

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