VirtualBox

source: vbox/trunk/src/VBox/Devices/PC/Etherboot-src/include/big_bswap.h@ 20295

最後變更 在這個檔案從20295是 1,由 vboxsync 提交於 55 年 前

import

  • 屬性 svn:eol-style 設為 native
  • 屬性 svn:keywords 設為 Author Date Id Revision
檔案大小: 441 位元組
 
1#ifndef ETHERBOOT_BIG_BSWAP_H
2#define ETHERBOOT_BIG_BSWAP_H
3
4#define ntohl(x) (x)
5#define htonl(x) (x)
6#define ntohs(x) (x)
7#define htons(x) (x)
8#define cpu_to_le32(x) __bswap_32(x)
9#define cpu_to_le16(x) __bswap_16(x)
10#define cpu_to_be32(x) (x)
11#define cpu_to_be16(x) (x)
12#define le32_to_cpu(x) __bswap_32(x)
13#define le16_to_cpu(x) __bswap_16(x)
14#define be32_to_cpu(x) (x)
15#define be16_to_cpu(x) (x)
16
17#endif /* ETHERBOOT_BIG_BSWAP_H */
注意: 瀏覽 TracBrowser 來幫助您使用儲存庫瀏覽器

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette