even/even_peb.h

36 lines
1.0 KiB
C
Raw Normal View History

2024-03-31 20:23:11 +02:00
/*
* even.sys - a stub for Htsysm7679
* Copyright (C) 2024 Zephyr Lykos <self@mochaa.ws>
*
* 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.
*
* 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.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*
*/
2024-03-30 07:28:40 +01:00
#ifndef _EVEN_PEB_H_
#define _EVEN_PEB_H_ 1
2024-03-31 11:16:22 +02:00
#include <ntdef.h>
2024-03-30 07:28:40 +01:00
2024-03-31 11:16:22 +02:00
typedef struct even_peb
2024-03-30 07:30:08 +01:00
{
2024-03-30 07:28:40 +01:00
HANDLE pid;
int refcnt;
2024-03-31 11:16:22 +02:00
char fake_peb[0x1000];
struct even_peb *next, *prev;
} even_peb_t;
2024-03-30 07:28:40 +01:00
2024-03-31 20:23:11 +02:00
#endif /* _EVEN_PEB_H_ */
2024-03-30 07:28:40 +01:00
// vim: sw=4 et