-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathGlobals.inc
56 lines (40 loc) · 886 Bytes
/
Globals.inc
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
;************************
;Main function globals
;***********************
.data
AppName db "Module Injector",0
ClassName db "Injector",0
hwnd HWND ?
msg MSG <>
wnd WNDCLASSEX <>
hInst HINSTANCE ?
snapshot HANDLE ?
pHandle HANDLE ?
pEntry PROCESSENTRY32 <>
allocMem dd 0
processBuffer db 1024 DUP(0)
kernel32dll db "kernel32.dll",0
floadlibrary db "LoadLibraryA",0
error db "Error",0
error_1 db "Process not found!",0
;********************
;controls
;********************
buttonClass db "button",0
editClass db "edit",0
staticClass db "static",0
button1 HWND ?
button1Text db "Inject",0
button2 HWND ?
button2Text db "Browse",0
textbox1 HWND ?
textbox1Text db 0
textbox2 HWND ?
textbox2Text db 0
label1 HWND ?
label1Text db "Process: ",0
label2 HWND ?
label2Text db "DLL: ",0
fileDialog OPENFILENAME <>
filter db "DLL",0,"*.DLL"
buffer db 1024 DUP ( 0 )