Mercurial > games > semicongine
view fuhtark_test/include/winapi/ipinfoid.h @ 1501:f40d9d814c08 default tip
did: correct vulkan-api generator
| author | sam <sam@basx.dev> |
|---|---|
| date | Wed, 26 Nov 2025 23:34:29 +0700 |
| parents | 91c8c3b7cbf0 |
| children |
line wrap: on
line source
/** * This file has no copyright assigned and is placed in the Public Domain. * This file is part of the w64 mingw-runtime package. * No warranty is given; refer to the file DISCLAIMER within this package. */ #ifndef __ROUTING_IPINFOID_H__ #define __ROUTING_IPINFOID_H__ #ifdef __cplusplus extern "C" { #endif #define IP_ROUTER_MANAGER_VERSION 1 #define IP_GENERAL_INFO_BASE 0xffff0000 #define IP_IN_FILTER_INFO IP_GENERAL_INFO_BASE + 1 #define IP_OUT_FILTER_INFO IP_GENERAL_INFO_BASE + 2 #define IP_GLOBAL_INFO IP_GENERAL_INFO_BASE + 3 #define IP_INTERFACE_STATUS_INFO IP_GENERAL_INFO_BASE + 4 #define IP_ROUTE_INFO IP_GENERAL_INFO_BASE + 5 #define IP_PROT_PRIORITY_INFO IP_GENERAL_INFO_BASE + 6 #define IP_ROUTER_DISC_INFO IP_GENERAL_INFO_BASE + 7 #define IP_DEMAND_DIAL_FILTER_INFO IP_GENERAL_INFO_BASE + 9 #define IP_MCAST_HEARBEAT_INFO IP_GENERAL_INFO_BASE + 10 #define IP_MCAST_BOUNDARY_INFO IP_GENERAL_INFO_BASE + 11 #define IP_IPINIP_CFG_INFO IP_GENERAL_INFO_BASE + 12 #define IP_IFFILTER_INFO IP_GENERAL_INFO_BASE + 13 #define IP_MCAST_LIMIT_INFO IP_GENERAL_INFO_BASE + 14 #ifdef __cplusplus } #endif #endif
