Skip to content
This repository has been archived by the owner on Nov 5, 2024. It is now read-only.

Commit

Permalink
Visual C++ support improved
Browse files Browse the repository at this point in the history
  • Loading branch information
PopovEvgeniy committed Apr 9, 2024
1 parent 3c701ee commit 1ee513c
Show file tree
Hide file tree
Showing 5 changed files with 70 additions and 28 deletions.
9 changes: 3 additions & 6 deletions magicswf.c
Original file line number Diff line number Diff line change
@@ -1,7 +1,4 @@
#include <stddef.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "magicswf.h"

void show_intro();
FILE *open_input_file(const char *name);
Expand Down Expand Up @@ -39,9 +36,9 @@ int main(int argc, char *argv[])
void show_intro()
{
putchar('\n');
puts("Magic swf. Version 1.4.7");
puts("Magic swf. Version 1.4.9");
puts("A simple tool for converting Adobe flash movie to self-played movie");
puts("This sofware made by Popov Evgeniy Alekseyevich,2011-2022 years");
puts("This sofware made by Popov Evgeniy Alekseyevich,2011-2024 years");
puts("This software distributed under GNU GENERAL PUBLIC LICENSE");
putchar('\n');
}
Expand Down
8 changes: 8 additions & 0 deletions magicswf.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
#if defined _MSC_VER && _MSC_VER>=1400
#pragma warning(disable : 4996)
#endif

#include <stddef.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
64 changes: 50 additions & 14 deletions magicswf.tgt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
40
42
targetIdent
0
MProject
Expand Down Expand Up @@ -53,8 +53,8 @@ WString
WINLINK
14
WString
14
?????Debug all
16
?????WLINK_d_all
1
0
15
Expand All @@ -65,8 +65,8 @@ WString
WINLINK
17
WString
13
?????Map file
15
?????WLINK_op_m
1
0
18
Expand All @@ -78,7 +78,7 @@ WVList
0
19
WPickList
2
4
20
MItem
3
Expand All @@ -98,8 +98,8 @@ WString
WCC
25
WString
29
?????No debugging information
11
?????WCG_d0
1
1
26
Expand All @@ -110,8 +110,8 @@ WString
WCC
28
WString
24
?????Full debugging info
11
?????WCG_d2
1
0
29
Expand All @@ -122,8 +122,8 @@ WString
WCC
31
WString
33
??2??80386 register-based calling
11
??2??WCG_3r
1
1
32
Expand All @@ -134,8 +134,8 @@ WString
WCC
34
WString
39
??2??Pentium Pro register-based calling
11
??2??WCG_6r
1
0
35
Expand Down Expand Up @@ -163,3 +163,39 @@ WVList
1
1
0
40
MItem
3
*.h
41
WString
3
NIL
42
WVList
0
43
WVList
0
-1
1
1
0
44
MItem
10
magicswf.h
45
WString
3
NIL
46
WVList
0
47
WVList
0
40
1
1
0
10 changes: 5 additions & 5 deletions magicswf.wpj
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
40
42
projectIdent
0
VpeMain
1
WRect
0
0
7676
9213
7668
9200
2
MProject
3
Expand All @@ -30,8 +30,8 @@ VComponent
WRect
0
0
5659
4186
5652
4173
0
0
9
Expand Down
7 changes: 4 additions & 3 deletions readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@
A simple tool for converting Adobe flash movie to self-played movie
This software made by Popov Evgeniy Alekseyevich

Version 1.4.7
Version 1.4.9

System requirement

48 kilobytes free space on storage media.
60 kilobytes free space on storage media.

Description and usage

Expand Down Expand Up @@ -53,4 +53,5 @@ Version history
1.4.2 - Small bug fixed.
1.4.3 - Small changes.
1.4.3.1 - 1.4.3.4 - Documentation updated.
1.4.4 - 1.4.7 - Small changes.
1.4.4 - 1.4.8 - Small changes.
1.4.9 - Visual C++ support improved.

0 comments on commit 1ee513c

Please sign in to comment.