VirtualBox

source: vbox/trunk/src/VBox/Devices/Graphics/shaderlib/wine/include/inaddr.h@ 53201

最後變更 在這個檔案從53201是 53201,由 vboxsync 提交於 10 年 前

Devices/Main: vmsvga updates

  • 屬性 svn:eol-style 設為 native
  • 屬性 svn:keywords 設為 Author Date Id Revision
檔案大小: 1.6 KB
 
1/*
2 * Copyright 2010 Detlef Riekenberg
3 *
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Lesser General Public
6 * License as published by the Free Software Foundation; either
7 * version 2.1 of the License, or (at your option) any later version.
8 *
9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Lesser General Public License for more details.
13 *
14 * You should have received a copy of the GNU Lesser General Public
15 * License along with this library; if not, write to the Free Software
16 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
17 *
18 */
19
20#ifndef __INADDR_H__
21#define __INADDR_H__
22
23#ifdef USE_WS_PREFIX
24#define WS(x) WS_##x
25#else
26#define WS(x) x
27#endif
28
29typedef struct WS(in_addr)
30{
31 union {
32 struct {
33 UCHAR s_b1,s_b2,s_b3,s_b4;
34 } S_un_b;
35 struct {
36 USHORT s_w1,s_w2;
37 } S_un_w;
38 ULONG S_addr;
39 } S_un;
40} IN_ADDR, *PIN_ADDR, *LPIN_ADDR;
41
42#undef WS
43
44#ifndef USE_WS_PREFIX
45#define s_addr S_un.S_addr
46#define s_net S_un.S_un_b.s_b1
47#define s_host S_un.S_un_b.s_b2
48#define s_lh S_un.S_un_b.s_b3
49#define s_impno S_un.S_un_b.s_b4
50#define s_imp S_un.S_un_w.s_w2
51#else
52#define WS_s_addr S_un.S_addr
53#define WS_s_net S_un.S_un_b.s_b1
54#define WS_s_host S_un.S_un_b.s_b2
55#define WS_s_lh S_un.S_un_b.s_b3
56#define WS_s_impno S_un.S_un_b.s_b4
57#define WS_s_imp S_un.S_un_w.s_w2
58#endif /* USE_WS_PREFIX */
59
60#endif /* __INADDR_H__ */
注意: 瀏覽 TracBrowser 來幫助您使用儲存庫瀏覽器

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