-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathupdate.txt
More file actions
33 lines (25 loc) · 762 Bytes
/
update.txt
File metadata and controls
33 lines (25 loc) · 762 Bytes
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
12/11/2014
Created new functions:
void OpenProcessById(){}
- reads process id
- opens process
HANDLE GetThreadByID(DWORD processId){}
- takes real process id
- opens thread of the process
- returns this thread
string getStringByPointer(TCHAR * _str){}
- takes a TCHAR pointer, and deallocates the memory block pointed by _str
- returns string
Rewritten:
ostream & operator<<(ostream & stream, const Process * Obj)
- TCHAR replaced with string
Added:
#define USE_STRING_DESPITE_TCHAR
- in some cases TCHAR could be replaced with string if we use USE_STRING_DESPITE_TCHAR
- examples in such functions as:
- incoming_data (functions.h)
- printUpdate
- OpenProcessById
- OnProcessStarted
- OnProcessRestart
- OnProcessResumed