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
9 lines
254 B
C
9 lines
254 B
C
/* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */
|
|
#ifndef _LINUX_MODULE_H
|
|
#define _LINUX_MODULE_H
|
|
|
|
/* Flags for sys_finit_module: */
|
|
#define MODULE_INIT_IGNORE_MODVERSIONS 1
|
|
#define MODULE_INIT_IGNORE_VERMAGIC 2
|
|
|
|
#endif /* _LINUX_MODULE_H */ |