mirror of
https://github.com/ziglang/zig.git
synced 2025-12-08 23:33:07 +00:00
also start prefering NtDll API. so far: * NtQueryInformationFile * NtClose adds a performance workaround for windows unicode conversion. but that should probably be removed before merging
13 lines
226 B
C
13 lines
226 B
C
/* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */
|
|
#ifndef _CAN_VXCAN_H
|
|
#define _CAN_VXCAN_H
|
|
|
|
enum {
|
|
VXCAN_INFO_UNSPEC,
|
|
VXCAN_INFO_PEER,
|
|
|
|
__VXCAN_INFO_MAX
|
|
#define VXCAN_INFO_MAX (__VXCAN_INFO_MAX - 1)
|
|
};
|
|
|
|
#endif |