Skip to content

Commit

Permalink
add extension crosstalk support
Browse files Browse the repository at this point in the history
  • Loading branch information
omicronrex committed Dec 30, 2024
1 parent 68cdde0 commit b6255ba
Show file tree
Hide file tree
Showing 3 changed files with 27 additions and 3 deletions.
2 changes: 1 addition & 1 deletion build.bat
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
del build\src\release\gm82net.dll

cmake -B build -T v141_xp -A Win32 -DINSTALL_GEX=ON && cmake --build build --config Release
cmake -B build -A Win32 -DINSTALL_GEX=ON && cmake --build build --config Release

pause
23 changes: 21 additions & 2 deletions gm82net.gej
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
{
"name": "Game Maker 8.2 Network",
"folder": "gm82",
"version": "1.3",
"version": "1.3.1",
"author": "Maarten Baert, renex, Floogle, nik, and Lovey01",
"date": "17/07/2023",
"date": "30/12/2024",
"license": "Free to use, also for commercial games.",
"description": "Part of the standard Game Maker 8.2 distribution. This extension package includes buffer, networking, hash and cryptography functions.",
"helpfile": "",
Expand Down Expand Up @@ -1709,6 +1709,25 @@
"hidden": false
}
]
},
{
"filename": "gm82net.gml",
"origname": "src\\gm82net.gml",
"kind": 2,
"init": "__gm82net_init",
"final": "",
"functions": [
{
"name": "__gm82net_init",
"extname": "",
"calltype": 2,
"helpline": "",
"hidden": true,
"argtypes": null,
"returntype": 2
}
],
"constants": []
}
]
}
5 changes: 5 additions & 0 deletions src/gm82net.gml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
#define __gm82net_init
globalvar __gm82net_version;
__gm82net_version=131
//
//

0 comments on commit b6255ba

Please sign in to comment.