mirror of
https://github.com/HyperDbg/HyperDbg.git
synced 2026-07-10 01:29:59 +00:00
17 lines
320 B
C
17 lines
320 B
C
// PlatformModuleInfo.h
|
|
|
|
#if defined(__linux__)
|
|
|
|
# ifndef MODULE_INFO_H
|
|
# define MODULE_INFO_H
|
|
|
|
# include <linux/module.h>
|
|
|
|
MODULE_LICENSE("GPL");
|
|
MODULE_AUTHOR("Alish");
|
|
MODULE_DESCRIPTION("Linux Kernel module Mock");
|
|
MODULE_VERSION("0.1");
|
|
|
|
# endif // _MODULE_INFO_H_
|
|
|
|
#endif // defined(__linux__)
|