Skip to content

Commit 656cb1f

Browse files
committed
fix: Move exports retonly to bottom
Needed for ps2dev/ps2sdk#817
1 parent 45875da commit 656cb1f

File tree

5 files changed

+25
-22
lines changed

5 files changed

+25
-22
lines changed
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
void _retonly(void) {}
2-
31
DECLARE_EXPORT_TABLE(udptty, 1, 1)
42
DECLARE_EXPORT(_start)
53
DECLARE_EXPORT(_retonly)
64
DECLARE_EXPORT(_shutdown)
75
DECLARE_EXPORT(_retonly)
86
DECLARE_EXPORT(_retonly)
97
END_EXPORT_TABLE
8+
9+
void _retonly(void) {}
Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,3 @@
1-
void _retonly(void) {}
2-
3-
int _dummy(void) {
4-
return 0;
5-
}
61

72
// cdvdfsv export table
83
DECLARE_EXPORT_TABLE(cdvdfsv, 1, 1)
@@ -14,3 +9,8 @@ DECLARE_EXPORT_TABLE(cdvdfsv, 1, 1)
149
DECLARE_EXPORT(sceCdChangeThreadPriority)
1510
END_EXPORT_TABLE
1611

12+
void _retonly(void) {}
13+
14+
int _dummy(void) {
15+
return 0;
16+
}

modules/iopcore/cdvdman/exports.tab

Lines changed: 10 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,3 @@
1-
void _retonly(void) {}
2-
3-
int _ret0(void) {
4-
return 0;
5-
}
6-
7-
int _dummy(void) {
8-
return 1;
9-
}
101

112
// cdvdman export table
123
DECLARE_EXPORT_TABLE(cdvdman, 1, 1)
@@ -238,3 +229,13 @@ DECLARE_EXPORT_TABLE(oplsmb, 1, 1)
238229
DECLARE_EXPORT(smb_NegotiateProt)
239230
END_EXPORT_TABLE
240231
#endif
232+
233+
void _retonly(void) {}
234+
235+
int _ret0(void) {
236+
return 0;
237+
}
238+
239+
int _dummy(void) {
240+
return 1;
241+
}
Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
1-
void _funcret(){};
21

32
DECLARE_EXPORT_TABLE(httpc, 1, 1)
43
DECLARE_EXPORT(_start)
54
DECLARE_EXPORT(_exit)
6-
DECLARE_EXPORT(_funcret)
7-
DECLARE_EXPORT(_funcret)
5+
DECLARE_EXPORT(_retonly)
6+
DECLARE_EXPORT(_retonly)
87
DECLARE_EXPORT(HttpEstabConnection)
98
DECLARE_EXPORT(HttpCloseConnection)
109
DECLARE_EXPORT(HttpSendGetRequest)
1110
END_EXPORT_TABLE
11+
12+
void _retonly(){};

modules/network/nbns/exports.tab

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
1-
void _funcret(){};
21

32
DECLARE_EXPORT_TABLE(nbnsman, 1, 1)
43
DECLARE_EXPORT(_start)
54
DECLARE_EXPORT(_exit)
6-
DECLARE_EXPORT(_funcret)
7-
DECLARE_EXPORT(_funcret)
5+
DECLARE_EXPORT(_retonly)
6+
DECLARE_EXPORT(_retonly)
87
DECLARE_EXPORT(nbnsFindName)
98
END_EXPORT_TABLE
9+
10+
void _retonly(){};

0 commit comments

Comments
 (0)