Skip to content

Commit 2fa0a57

Browse files
committed
Add RPG_RT.exe stub source code made by Ghabry
1 parent a265db7 commit 2fa0a57

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

src/RPG_RT.txt

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
.386
2+
.MODEL FLAT, STDCALL
3+
option casemap:none
4+
5+
include d:\masm32\include\user32.inc
6+
includelib kernel32.lib
7+
includelib user32.lib
8+
9+
MessageBoxA PROTO :Dword
10+
ExitProcess PROTO :Dword
11+
12+
.DATA
13+
MsgBoxTitle db "RPG_RT Stub",0
14+
MsgBoxText db "This RPG_RT.exe is a stub. Without this file the RPG Maker editor doesn't find the project.",0
15+
16+
.CODE
17+
18+
start:
19+
invoke MessageBoxA, 0, addr MsgBoxText, addr MsgBoxTitle, 0
20+
invoke ExitProcess, 0
21+
END start

0 commit comments

Comments
 (0)