-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathProject.h
59 lines (43 loc) · 1.79 KB
/
Project.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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
/*
8888888b. 888 888 d8b
888 Y88b 888 888 Y8P
888 888 888 888
888 d88P 888d888 .d88b. Y88b d88P 888 .d88b. 888 888 888
8888888P" 888P" d88""88b Y88b d88P 888 d8P Y8b 888 888 888
888 888 888 888 Y88o88P 888 88888888 888 888 888
888 888 Y88..88P Y888P 888 Y8b. Y88b 888 d88P
888 888 "Y88P" Y8P 888 "Y8888 "Y8888888P"
PE Editor & Dissasembler & File Identifier
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Written by Shany Golan.
In januar, 2003.
I have investigated P.E. file format as thoroughly as possible,
But I cannot claim that I am an expert yet, so some of its information
May give you wrong results.
Language used: Visual C++ 6.0
Date of creation: July 06, 2002
Date of first release: unknown ??, 2003
You can contact me: e-mail address: [email protected]
Copyright (C) 2011. By Shany Golan.
Permission is granted to make and distribute verbatim copies of this
Program provided the copyright notice and this permission notice are
Preserved on all copies.
File: Project.h (main)
This program was written by Shany Golan, Student at :
Ruppin, department of computer science and engineering University.
*/
#ifndef _PROJECT_H_
#define _PROJECT_H_
#include "Functions.h"
#include "CDisasmData.h"
#include "Disasm.h"
#include <assert.h>
// STL
#include <vector>
#include <map>
//////////////////////////////////////////////////////////////////////////
// PROTOTYPES //
//////////////////////////////////////////////////////////////////////////
void SaveProject ( );
void LoadProject ( );
#endif