File tree Expand file tree Collapse file tree 4 files changed +5
-5
lines changed Expand file tree Collapse file tree 4 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ projectfullname = SDL_net
2
2
projectshortname = SDL_net
3
3
incsubdir = include/SDL3_net
4
4
wikisubdir = SDL3_net
5
- apiprefixregex = NET_
5
+ apiprefixregex = ( NET_|SDL_NET_)
6
6
mainincludefname = SDL3_net/SDL_net.h
7
7
versionfname = include/SDL3_net/SDL_net.h
8
8
versionmajorregex = \A\#define\s+SDL_NET_MAJOR_VERSION\s+(\d+)\Z
Original file line number Diff line number Diff line change @@ -72,7 +72,7 @@ extern "C" {
72
72
*
73
73
* \since This macro is available since SDL_net 3.0.0.
74
74
*
75
- * \sa NET_GetVersion
75
+ * \sa NET_Version
76
76
*/
77
77
#define SDL_NET_VERSION \
78
78
SDL_VERSIONNUM(SDL_NET_MAJOR_VERSION, SDL_NET_MINOR_VERSION, SDL_NET_MICRO_VERSION)
@@ -95,7 +95,7 @@ extern "C" {
95
95
*
96
96
* \since This function is available since SDL_net 3.0.0.
97
97
*/
98
- extern SDL_DECLSPEC int SDLCALL NET_GetVersion (void );
98
+ extern SDL_DECLSPEC int SDLCALL NET_Version (void );
99
99
100
100
101
101
/* init/quit functions... */
Original file line number Diff line number Diff line change @@ -93,7 +93,7 @@ typedef enum NET_SocketType
93
93
} NET_SocketType ;
94
94
95
95
96
- int NET_GetVersion (void )
96
+ int NET_Version (void )
97
97
{
98
98
return SDL_NET_VERSION ;
99
99
}
Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ SDL3_net_0.0.0 {
16
16
NET_GetLocalAddresses;
17
17
NET_GetStreamSocketAddress;
18
18
NET_GetStreamSocketPendingWrites;
19
- NET_GetVersion ;
19
+ NET_Version ;
20
20
NET_Init;
21
21
NET_Quit;
22
22
NET_ReadFromStreamSocket;
You can’t perform that action at this time.
0 commit comments