forked from kavika13/RemCom
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathProcFunctions.h
37 lines (27 loc) · 969 Bytes
/
ProcFunctions.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
/*
Copyright (c) 2006 Talha Tariq [ [email protected] ]
All rights are reserved.
Permission to use, copy, modify, and distribute this software
for any purpose and without any fee is hereby granted,
provided this notice is included in its entirety in the
documentation and in the source files.
This software and any related documentation is provided "as is"
without any warranty of any kind, either express or implied,
including, without limitation, the implied warranties of
merchantibility or fitness for a particular purpose. The entire
risk arising out of use or performance of the software remains
with you.
*/
#ifndef xProcFunctions_H_INCLUDED
#define xProcFunctions_H_INCLUDED
#define UNICODE
#define _WIN32_WINNT 0x0500
#include <windows.h>
#include <stdio.h>
#include <userenv.h>
class ProcessHandler{
public:
void DisplayError(LPWSTR pszAPI);
void CreatProc(int argc, WCHAR *argv[]);
};
#endif