Lucciefr
Lua code caving, injection and exploration framework
process.h
Go to the documentation of this file.
1 
3 #ifndef PROCESS_H
4 #define PROCESS_H
5 
6 #include <sys/types.h> // provides pid_t
7 
8 #if _WINDOWS
9  #include <windows.h>
10  #define getpid GetCurrentProcessId
11 #else
12  #include <unistd.h>
13 #endif
14 
15 #endif // PROCESS_H