license: split as multiple messages

This commit is contained in:
Zephyr Lykos 2024-03-31 17:41:32 +08:00
parent da753e9668
commit 189aac97a0
No known key found for this signature in database
GPG Key ID: D3E9D31E2F77F04D

28
even.c
View File

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