HyperDbg/hyperdbg/include/platform/kernel/header/PlatformModuleInfo.h

18 lines
320 B
C
Raw Permalink Normal View History

2026-02-12 21:20:46 +03:30
// PlatformModuleInfo.h
2026-01-05 00:52:22 +03:30
#if defined(__linux__)
2026-01-05 00:52:22 +03:30
# ifndef MODULE_INFO_H
# define MODULE_INFO_H
# include <linux/module.h>
2026-01-05 00:52:22 +03:30
MODULE_LICENSE("GPL");
MODULE_AUTHOR("Alish");
MODULE_DESCRIPTION("Linux Kernel module Mock");
MODULE_VERSION("0.1");
# endif // _MODULE_INFO_H_
#endif // defined(__linux__)