Add license info on startup

This commit is contained in:
Zephyr Lykos 2024-03-31 17:23:16 +08:00
parent 17ff33169b
commit be34405154
No known key found for this signature in database
GPG Key ID: D3E9D31E2F77F04D

19
even.c
View File

@ -401,6 +401,25 @@ NTSTATUS __stdcall DriverEntry(IN PDRIVER_OBJECT DriverObject, IN PUNICODE_STRIN
ANSI_STRING DeviceNameA;
ANSI_STRING SymbolicLinkNameA;
DbgPrint("even.sys"
#ifdef EVEN_VERSION
" (" EVEN_VERSION ") "
#else
" "
#endif
"- a stub for Htsysm7679\r\n"
"Copyright (C) 2024 Zephyr Lykos <self@mochaa.ws>\r\n"
"\r\n"
"This program is free software; you can redistribute it and/or modify\r\n"
"it under the terms of the GNU General Public License as published by\r\n"
"the Free Software Foundation; either version 2 of the License, or\r\n"
"(at your option) any later version.\r\n"
"\r\n"
"This program is distributed in the hope that it will be useful,\r\n"
"but WITHOUT ANY WARRANTY; without even the implied warranty of\r\n"
"MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\r\n"
"GNU General Public License for more details.\r\n");
DbgPrint("Even Htsysm7679: DriverEntry Called\r\n"); // catch this using DBGVIEW from www.sysinternals.com
/* support for service stopping */