├── .gitignore ├── .vscode └── tasks.json ├── GmlCppExtFuncs.hxproj ├── GmlCppExtFuncsJS.hxproj ├── GmlCppExtFuncsNET.hxproj ├── Package.bat ├── README.md ├── Run.bat ├── bin ├── index.html └── test.cpp ├── export ├── interop_test.dmd ├── interop_test.html ├── pack-legacy.bat ├── thumb.svg └── thumbs.bat ├── extraParams.hxml ├── haxelib.json ├── interop_test.gmx ├── Configs │ └── Default.config.gmx ├── extensions │ ├── interop_test.extension.gmx │ └── interop_test │ │ ├── autogen.gml │ │ └── interop_test.gml ├── fonts │ ├── fnt_test.font.gmx │ └── fnt_test.png ├── interop_test.project.gmx ├── objects │ └── obj_test.object.gmx ├── rooms │ └── rm_test.room.gmx └── scripts │ └── trace.gml ├── interop_test.sln ├── interop_test ├── README.md ├── YYRunnerInterface.h ├── autogen.cpp ├── dllmain.cpp ├── gml_ext.h ├── gml_extm.h ├── interop_test.APS ├── interop_test.h ├── interop_test.rc ├── interop_test.vcxproj ├── interop_test.vcxproj.filters ├── interop_test.vcxproj.user ├── postBuild.bat ├── preBuild.bat ├── resource1.h ├── stdafx.cpp ├── stdafx.h ├── targetver.h ├── test_basics.cpp ├── test_buffer.cpp ├── test_gml_id.cpp ├── test_gml_ptr.cpp ├── test_hwnd.cpp ├── test_inout.cpp ├── test_struct.cpp ├── test_tuple.cpp ├── test_vector.cpp └── test_yyri.cpp ├── interop_test_23 ├── #config │ └── properties.json ├── extensions │ └── interop_test │ │ ├── autogen.gml │ │ ├── interop_test.gml │ │ └── interop_test.yy ├── fonts │ └── fnt_test │ │ ├── fnt_test.png │ │ └── fnt_test.yy ├── interop_test_23.yyp ├── objects │ └── obj_test │ │ ├── Create_0.gml │ │ ├── Draw_0.gml │ │ ├── Step_0.gml │ │ └── obj_test.yy ├── options │ ├── amazonfire │ │ └── options_amazonfire.yy │ ├── android │ │ └── options_android.yy │ ├── extensions │ │ └── interop_test.json │ ├── html5 │ │ └── options_html5.yy │ ├── ios │ │ └── options_ios.yy │ ├── linux │ │ └── options_linux.yy │ ├── mac │ │ └── options_mac.yy │ ├── main │ │ ├── inherited │ │ │ └── options_main.inherited.yy │ │ └── options_main.yy │ ├── operagx │ │ └── options_operagx.yy │ ├── tvos │ │ └── options_tvos.yy │ └── windows │ │ └── options_windows.yy ├── rooms │ └── rm_test │ │ └── rm_test.yy └── scripts │ ├── assert │ ├── assert.gml │ └── assert.yy │ ├── interop_test_23 │ ├── interop_test_23.gml │ └── interop_test_23.yy │ ├── is_equal │ ├── is_equal.gml │ └── is_equal.yy │ ├── scr_test │ ├── scr_test.gml │ └── scr_test.yy │ ├── scr_test_basics │ ├── scr_test_basics.gml │ └── scr_test_basics.yy │ ├── scr_test_buffer │ ├── scr_test_buffer.gml │ └── scr_test_buffer.yy │ ├── scr_test_gml_id │ ├── scr_test_gml_id.gml │ └── scr_test_gml_id.yy │ ├── scr_test_gml_ptr │ ├── scr_test_gml_ptr.gml │ └── scr_test_gml_ptr.yy │ ├── scr_test_hwnd │ ├── scr_test_hwnd.gml │ └── scr_test_hwnd.yy │ ├── scr_test_inout │ ├── scr_test_inout.gml │ └── scr_test_inout.yy │ ├── scr_test_struct │ ├── scr_test_struct.gml │ └── scr_test_struct.yy │ ├── scr_test_tuple │ ├── scr_test_tuple.gml │ └── scr_test_tuple.yy │ ├── scr_test_vector │ ├── scr_test_vector.gml │ └── scr_test_vector.yy │ ├── scr_test_yyri │ ├── scr_test_yyri.gml │ └── scr_test_yyri.yy │ ├── sfmt │ ├── sfmt.gml │ └── sfmt.yy │ └── trace │ ├── trace.gml │ └── trace.yy ├── interop_test_yy ├── extensions │ └── interop_test │ │ ├── autogen.gml │ │ ├── interop_test.gml │ │ └── interop_test.yy ├── fonts │ └── fnt_test │ │ ├── fnt_test.gms1.png │ │ ├── fnt_test.gms1.yy │ │ ├── fnt_test.png │ │ └── fnt_test.yy ├── interop_test.yyp ├── objects │ └── obj_test │ │ ├── Create_0.gml │ │ ├── Draw_0.gml │ │ ├── Step_0.gml │ │ └── obj_test.yy ├── options │ ├── amazonfire │ │ └── options_amazonfire.yy │ ├── android │ │ └── options_android.yy │ ├── html5 │ │ └── options_html5.yy │ ├── ios │ │ └── options_ios.yy │ ├── linux │ │ └── options_linux.yy │ ├── mac │ │ └── options_mac.yy │ ├── main │ │ └── inherited │ │ │ └── options_main.inherited.yy │ ├── switch │ │ └── options_switch.yy │ ├── tvos │ │ └── options_tvos.yy │ └── windows │ │ └── options_windows.yy ├── rooms │ └── rm_test │ │ └── rm_test.yy ├── scripts │ └── trace │ │ ├── trace.gml │ │ └── trace.yy └── views │ ├── 1a1012ca-9702-4cd0-870a-3101ca12fddb.yy │ ├── 4f96784b-1ebd-4fc6-8c5b-10ee426a2840.yy │ ├── 504c1931-39ad-4f48-b783-4eb537b963d6.yy │ ├── 690caa00-bb5f-4c7f-b921-6fd3330a6bc3.yy │ ├── 6e9a4a1b-fa39-4f06-94c9-1a7f8822216a.yy │ ├── 81be6123-f045-42c2-ad8f-dd97676ed387.yy │ ├── 8c638ff8-1abe-4e11-bc32-7ef6af8b7b4f.yy │ ├── 9878a9d0-ce0a-4455-91a7-89de6e4976a2.yy │ ├── 9fdcc299-adf8-4729-b2f3-076ababf81ed.yy │ ├── c583b9bc-76c2-490f-a077-1eeafac7f5ec.yy │ ├── c9dcc6e5-46f1-4578-8543-9af4f6a4f7de.yy │ ├── e5b1e8fe-f417-43e8-b65f-8a518d723aea.yy │ ├── e5bc0382-83e6-4bfa-b68f-c702a7545129.yy │ ├── f2ec9b0e-c3fe-4297-a78d-fa6f418fd827.yy │ ├── f664cd6f-a19b-470a-8b94-844b0367b313.yy │ └── f8edfe34-8789-4236-b7e4-741b59e181b8.yy └── src ├── CppConfig.hx ├── CppGen.hx ├── CppGenParser.hx ├── CppType.hx ├── CppTypeHelper.hx ├── CppTypeMacroHelper.hx ├── GmlExtMacro.hx ├── func ├── CppFunc.hx ├── CppFuncArg.hx ├── CppFuncGmlDoc.hx ├── CppFuncMangled.hx └── CppFuncReader.hx ├── misc └── GmlConstructor.hx ├── proc ├── CppTypeProc.hx ├── CppTypeProcAssetIndexOf.hx ├── CppTypeProcCond.hx ├── CppTypeProcCustom.hx ├── CppTypeProcEnum.hx ├── CppTypeProcError.hx ├── CppTypeProcGameHwnd.hx ├── CppTypeProcGmlBuffer.hx ├── CppTypeProcGmlInOut.hx ├── CppTypeProcGmlInOutVector.hx ├── CppTypeProcGmlPointer.hx ├── CppTypeProcOptional.hx ├── CppTypeProcSimple.hx ├── CppTypeProcString.hx ├── CppTypeProcStruct.hx ├── CppTypeProcTuple.hx └── CppTypeProcVector.hx ├── struct ├── CppStruct.hx ├── CppStructField.hx ├── CppStructIO.hx └── GmlStructIO.hx └── tools ├── CharCode.hx ├── CppBuf.hx ├── CppReader.hx ├── GmkGen.hx └── GmlConditionalComments.hx /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GmlCppExtFuncs/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GmlCppExtFuncs/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /GmlCppExtFuncs.hxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GmlCppExtFuncs/HEAD/GmlCppExtFuncs.hxproj -------------------------------------------------------------------------------- /GmlCppExtFuncsJS.hxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GmlCppExtFuncs/HEAD/GmlCppExtFuncsJS.hxproj -------------------------------------------------------------------------------- /GmlCppExtFuncsNET.hxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GmlCppExtFuncs/HEAD/GmlCppExtFuncsNET.hxproj -------------------------------------------------------------------------------- /Package.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GmlCppExtFuncs/HEAD/Package.bat -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GmlCppExtFuncs/HEAD/README.md -------------------------------------------------------------------------------- /Run.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GmlCppExtFuncs/HEAD/Run.bat -------------------------------------------------------------------------------- /bin/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GmlCppExtFuncs/HEAD/bin/index.html -------------------------------------------------------------------------------- /bin/test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GmlCppExtFuncs/HEAD/bin/test.cpp -------------------------------------------------------------------------------- /export/interop_test.dmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GmlCppExtFuncs/HEAD/export/interop_test.dmd -------------------------------------------------------------------------------- /export/interop_test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GmlCppExtFuncs/HEAD/export/interop_test.html -------------------------------------------------------------------------------- /export/pack-legacy.bat: -------------------------------------------------------------------------------- 1 | cd legacy 2 | cmd /C 7z a "../interop_test-for-GM8.1-or-older.zip" * 3 | pause -------------------------------------------------------------------------------- /export/thumb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GmlCppExtFuncs/HEAD/export/thumb.svg -------------------------------------------------------------------------------- /export/thumbs.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GmlCppExtFuncs/HEAD/export/thumbs.bat -------------------------------------------------------------------------------- /extraParams.hxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GmlCppExtFuncs/HEAD/extraParams.hxml -------------------------------------------------------------------------------- /haxelib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GmlCppExtFuncs/HEAD/haxelib.json -------------------------------------------------------------------------------- /interop_test.gmx/Configs/Default.config.gmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GmlCppExtFuncs/HEAD/interop_test.gmx/Configs/Default.config.gmx -------------------------------------------------------------------------------- /interop_test.gmx/extensions/interop_test.extension.gmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GmlCppExtFuncs/HEAD/interop_test.gmx/extensions/interop_test.extension.gmx -------------------------------------------------------------------------------- /interop_test.gmx/extensions/interop_test/autogen.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GmlCppExtFuncs/HEAD/interop_test.gmx/extensions/interop_test/autogen.gml -------------------------------------------------------------------------------- /interop_test.gmx/extensions/interop_test/interop_test.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GmlCppExtFuncs/HEAD/interop_test.gmx/extensions/interop_test/interop_test.gml -------------------------------------------------------------------------------- /interop_test.gmx/fonts/fnt_test.font.gmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GmlCppExtFuncs/HEAD/interop_test.gmx/fonts/fnt_test.font.gmx -------------------------------------------------------------------------------- /interop_test.gmx/fonts/fnt_test.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GmlCppExtFuncs/HEAD/interop_test.gmx/fonts/fnt_test.png -------------------------------------------------------------------------------- /interop_test.gmx/interop_test.project.gmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GmlCppExtFuncs/HEAD/interop_test.gmx/interop_test.project.gmx -------------------------------------------------------------------------------- /interop_test.gmx/objects/obj_test.object.gmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GmlCppExtFuncs/HEAD/interop_test.gmx/objects/obj_test.object.gmx -------------------------------------------------------------------------------- /interop_test.gmx/rooms/rm_test.room.gmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GmlCppExtFuncs/HEAD/interop_test.gmx/rooms/rm_test.room.gmx -------------------------------------------------------------------------------- /interop_test.gmx/scripts/trace.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GmlCppExtFuncs/HEAD/interop_test.gmx/scripts/trace.gml -------------------------------------------------------------------------------- /interop_test.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GmlCppExtFuncs/HEAD/interop_test.sln -------------------------------------------------------------------------------- /interop_test/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GmlCppExtFuncs/HEAD/interop_test/README.md -------------------------------------------------------------------------------- /interop_test/YYRunnerInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GmlCppExtFuncs/HEAD/interop_test/YYRunnerInterface.h -------------------------------------------------------------------------------- /interop_test/autogen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GmlCppExtFuncs/HEAD/interop_test/autogen.cpp -------------------------------------------------------------------------------- /interop_test/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GmlCppExtFuncs/HEAD/interop_test/dllmain.cpp -------------------------------------------------------------------------------- /interop_test/gml_ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GmlCppExtFuncs/HEAD/interop_test/gml_ext.h -------------------------------------------------------------------------------- /interop_test/gml_extm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GmlCppExtFuncs/HEAD/interop_test/gml_extm.h -------------------------------------------------------------------------------- /interop_test/interop_test.APS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GmlCppExtFuncs/HEAD/interop_test/interop_test.APS -------------------------------------------------------------------------------- /interop_test/interop_test.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | using iq_id = int; 3 | -------------------------------------------------------------------------------- /interop_test/interop_test.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GmlCppExtFuncs/HEAD/interop_test/interop_test.rc -------------------------------------------------------------------------------- /interop_test/interop_test.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GmlCppExtFuncs/HEAD/interop_test/interop_test.vcxproj -------------------------------------------------------------------------------- /interop_test/interop_test.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GmlCppExtFuncs/HEAD/interop_test/interop_test.vcxproj.filters -------------------------------------------------------------------------------- /interop_test/interop_test.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GmlCppExtFuncs/HEAD/interop_test/interop_test.vcxproj.user -------------------------------------------------------------------------------- /interop_test/postBuild.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GmlCppExtFuncs/HEAD/interop_test/postBuild.bat -------------------------------------------------------------------------------- /interop_test/preBuild.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GmlCppExtFuncs/HEAD/interop_test/preBuild.bat -------------------------------------------------------------------------------- /interop_test/resource1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GmlCppExtFuncs/HEAD/interop_test/resource1.h -------------------------------------------------------------------------------- /interop_test/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GmlCppExtFuncs/HEAD/interop_test/stdafx.cpp -------------------------------------------------------------------------------- /interop_test/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GmlCppExtFuncs/HEAD/interop_test/stdafx.h -------------------------------------------------------------------------------- /interop_test/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GmlCppExtFuncs/HEAD/interop_test/targetver.h -------------------------------------------------------------------------------- /interop_test/test_basics.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GmlCppExtFuncs/HEAD/interop_test/test_basics.cpp -------------------------------------------------------------------------------- /interop_test/test_buffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GmlCppExtFuncs/HEAD/interop_test/test_buffer.cpp -------------------------------------------------------------------------------- /interop_test/test_gml_id.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GmlCppExtFuncs/HEAD/interop_test/test_gml_id.cpp -------------------------------------------------------------------------------- /interop_test/test_gml_ptr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GmlCppExtFuncs/HEAD/interop_test/test_gml_ptr.cpp -------------------------------------------------------------------------------- /interop_test/test_hwnd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GmlCppExtFuncs/HEAD/interop_test/test_hwnd.cpp -------------------------------------------------------------------------------- /interop_test/test_inout.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GmlCppExtFuncs/HEAD/interop_test/test_inout.cpp -------------------------------------------------------------------------------- /interop_test/test_struct.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GmlCppExtFuncs/HEAD/interop_test/test_struct.cpp -------------------------------------------------------------------------------- /interop_test/test_tuple.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GmlCppExtFuncs/HEAD/interop_test/test_tuple.cpp -------------------------------------------------------------------------------- /interop_test/test_vector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GmlCppExtFuncs/HEAD/interop_test/test_vector.cpp -------------------------------------------------------------------------------- /interop_test/test_yyri.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GmlCppExtFuncs/HEAD/interop_test/test_yyri.cpp -------------------------------------------------------------------------------- /interop_test_23/#config/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GmlCppExtFuncs/HEAD/interop_test_23/#config/properties.json -------------------------------------------------------------------------------- /interop_test_23/extensions/interop_test/autogen.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GmlCppExtFuncs/HEAD/interop_test_23/extensions/interop_test/autogen.gml -------------------------------------------------------------------------------- /interop_test_23/extensions/interop_test/interop_test.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GmlCppExtFuncs/HEAD/interop_test_23/extensions/interop_test/interop_test.gml -------------------------------------------------------------------------------- /interop_test_23/extensions/interop_test/interop_test.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GmlCppExtFuncs/HEAD/interop_test_23/extensions/interop_test/interop_test.yy -------------------------------------------------------------------------------- /interop_test_23/fonts/fnt_test/fnt_test.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GmlCppExtFuncs/HEAD/interop_test_23/fonts/fnt_test/fnt_test.png -------------------------------------------------------------------------------- /interop_test_23/fonts/fnt_test/fnt_test.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GmlCppExtFuncs/HEAD/interop_test_23/fonts/fnt_test/fnt_test.yy -------------------------------------------------------------------------------- /interop_test_23/interop_test_23.yyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GmlCppExtFuncs/HEAD/interop_test_23/interop_test_23.yyp -------------------------------------------------------------------------------- /interop_test_23/objects/obj_test/Create_0.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GmlCppExtFuncs/HEAD/interop_test_23/objects/obj_test/Create_0.gml -------------------------------------------------------------------------------- /interop_test_23/objects/obj_test/Draw_0.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GmlCppExtFuncs/HEAD/interop_test_23/objects/obj_test/Draw_0.gml -------------------------------------------------------------------------------- /interop_test_23/objects/obj_test/Step_0.gml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /interop_test_23/objects/obj_test/obj_test.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GmlCppExtFuncs/HEAD/interop_test_23/objects/obj_test/obj_test.yy -------------------------------------------------------------------------------- /interop_test_23/options/amazonfire/options_amazonfire.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GmlCppExtFuncs/HEAD/interop_test_23/options/amazonfire/options_amazonfire.yy -------------------------------------------------------------------------------- /interop_test_23/options/android/options_android.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GmlCppExtFuncs/HEAD/interop_test_23/options/android/options_android.yy -------------------------------------------------------------------------------- /interop_test_23/options/extensions/interop_test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GmlCppExtFuncs/HEAD/interop_test_23/options/extensions/interop_test.json -------------------------------------------------------------------------------- /interop_test_23/options/html5/options_html5.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GmlCppExtFuncs/HEAD/interop_test_23/options/html5/options_html5.yy -------------------------------------------------------------------------------- /interop_test_23/options/ios/options_ios.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GmlCppExtFuncs/HEAD/interop_test_23/options/ios/options_ios.yy -------------------------------------------------------------------------------- /interop_test_23/options/linux/options_linux.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GmlCppExtFuncs/HEAD/interop_test_23/options/linux/options_linux.yy -------------------------------------------------------------------------------- /interop_test_23/options/mac/options_mac.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GmlCppExtFuncs/HEAD/interop_test_23/options/mac/options_mac.yy -------------------------------------------------------------------------------- /interop_test_23/options/main/inherited/options_main.inherited.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GmlCppExtFuncs/HEAD/interop_test_23/options/main/inherited/options_main.inherited.yy -------------------------------------------------------------------------------- /interop_test_23/options/main/options_main.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GmlCppExtFuncs/HEAD/interop_test_23/options/main/options_main.yy -------------------------------------------------------------------------------- /interop_test_23/options/operagx/options_operagx.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GmlCppExtFuncs/HEAD/interop_test_23/options/operagx/options_operagx.yy -------------------------------------------------------------------------------- /interop_test_23/options/tvos/options_tvos.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GmlCppExtFuncs/HEAD/interop_test_23/options/tvos/options_tvos.yy -------------------------------------------------------------------------------- /interop_test_23/options/windows/options_windows.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GmlCppExtFuncs/HEAD/interop_test_23/options/windows/options_windows.yy -------------------------------------------------------------------------------- /interop_test_23/rooms/rm_test/rm_test.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GmlCppExtFuncs/HEAD/interop_test_23/rooms/rm_test/rm_test.yy -------------------------------------------------------------------------------- /interop_test_23/scripts/assert/assert.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GmlCppExtFuncs/HEAD/interop_test_23/scripts/assert/assert.gml -------------------------------------------------------------------------------- /interop_test_23/scripts/assert/assert.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GmlCppExtFuncs/HEAD/interop_test_23/scripts/assert/assert.yy -------------------------------------------------------------------------------- /interop_test_23/scripts/interop_test_23/interop_test_23.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GmlCppExtFuncs/HEAD/interop_test_23/scripts/interop_test_23/interop_test_23.gml -------------------------------------------------------------------------------- /interop_test_23/scripts/interop_test_23/interop_test_23.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GmlCppExtFuncs/HEAD/interop_test_23/scripts/interop_test_23/interop_test_23.yy -------------------------------------------------------------------------------- /interop_test_23/scripts/is_equal/is_equal.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GmlCppExtFuncs/HEAD/interop_test_23/scripts/is_equal/is_equal.gml -------------------------------------------------------------------------------- /interop_test_23/scripts/is_equal/is_equal.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GmlCppExtFuncs/HEAD/interop_test_23/scripts/is_equal/is_equal.yy -------------------------------------------------------------------------------- /interop_test_23/scripts/scr_test/scr_test.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GmlCppExtFuncs/HEAD/interop_test_23/scripts/scr_test/scr_test.gml -------------------------------------------------------------------------------- /interop_test_23/scripts/scr_test/scr_test.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GmlCppExtFuncs/HEAD/interop_test_23/scripts/scr_test/scr_test.yy -------------------------------------------------------------------------------- /interop_test_23/scripts/scr_test_basics/scr_test_basics.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GmlCppExtFuncs/HEAD/interop_test_23/scripts/scr_test_basics/scr_test_basics.gml -------------------------------------------------------------------------------- /interop_test_23/scripts/scr_test_basics/scr_test_basics.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GmlCppExtFuncs/HEAD/interop_test_23/scripts/scr_test_basics/scr_test_basics.yy -------------------------------------------------------------------------------- /interop_test_23/scripts/scr_test_buffer/scr_test_buffer.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GmlCppExtFuncs/HEAD/interop_test_23/scripts/scr_test_buffer/scr_test_buffer.gml -------------------------------------------------------------------------------- /interop_test_23/scripts/scr_test_buffer/scr_test_buffer.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GmlCppExtFuncs/HEAD/interop_test_23/scripts/scr_test_buffer/scr_test_buffer.yy -------------------------------------------------------------------------------- /interop_test_23/scripts/scr_test_gml_id/scr_test_gml_id.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GmlCppExtFuncs/HEAD/interop_test_23/scripts/scr_test_gml_id/scr_test_gml_id.gml -------------------------------------------------------------------------------- /interop_test_23/scripts/scr_test_gml_id/scr_test_gml_id.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GmlCppExtFuncs/HEAD/interop_test_23/scripts/scr_test_gml_id/scr_test_gml_id.yy -------------------------------------------------------------------------------- /interop_test_23/scripts/scr_test_gml_ptr/scr_test_gml_ptr.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GmlCppExtFuncs/HEAD/interop_test_23/scripts/scr_test_gml_ptr/scr_test_gml_ptr.gml -------------------------------------------------------------------------------- /interop_test_23/scripts/scr_test_gml_ptr/scr_test_gml_ptr.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GmlCppExtFuncs/HEAD/interop_test_23/scripts/scr_test_gml_ptr/scr_test_gml_ptr.yy -------------------------------------------------------------------------------- /interop_test_23/scripts/scr_test_hwnd/scr_test_hwnd.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GmlCppExtFuncs/HEAD/interop_test_23/scripts/scr_test_hwnd/scr_test_hwnd.gml -------------------------------------------------------------------------------- /interop_test_23/scripts/scr_test_hwnd/scr_test_hwnd.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GmlCppExtFuncs/HEAD/interop_test_23/scripts/scr_test_hwnd/scr_test_hwnd.yy -------------------------------------------------------------------------------- /interop_test_23/scripts/scr_test_inout/scr_test_inout.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GmlCppExtFuncs/HEAD/interop_test_23/scripts/scr_test_inout/scr_test_inout.gml -------------------------------------------------------------------------------- /interop_test_23/scripts/scr_test_inout/scr_test_inout.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GmlCppExtFuncs/HEAD/interop_test_23/scripts/scr_test_inout/scr_test_inout.yy -------------------------------------------------------------------------------- /interop_test_23/scripts/scr_test_struct/scr_test_struct.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GmlCppExtFuncs/HEAD/interop_test_23/scripts/scr_test_struct/scr_test_struct.gml -------------------------------------------------------------------------------- /interop_test_23/scripts/scr_test_struct/scr_test_struct.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GmlCppExtFuncs/HEAD/interop_test_23/scripts/scr_test_struct/scr_test_struct.yy -------------------------------------------------------------------------------- /interop_test_23/scripts/scr_test_tuple/scr_test_tuple.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GmlCppExtFuncs/HEAD/interop_test_23/scripts/scr_test_tuple/scr_test_tuple.gml -------------------------------------------------------------------------------- /interop_test_23/scripts/scr_test_tuple/scr_test_tuple.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GmlCppExtFuncs/HEAD/interop_test_23/scripts/scr_test_tuple/scr_test_tuple.yy -------------------------------------------------------------------------------- /interop_test_23/scripts/scr_test_vector/scr_test_vector.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GmlCppExtFuncs/HEAD/interop_test_23/scripts/scr_test_vector/scr_test_vector.gml -------------------------------------------------------------------------------- /interop_test_23/scripts/scr_test_vector/scr_test_vector.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GmlCppExtFuncs/HEAD/interop_test_23/scripts/scr_test_vector/scr_test_vector.yy -------------------------------------------------------------------------------- /interop_test_23/scripts/scr_test_yyri/scr_test_yyri.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GmlCppExtFuncs/HEAD/interop_test_23/scripts/scr_test_yyri/scr_test_yyri.gml -------------------------------------------------------------------------------- /interop_test_23/scripts/scr_test_yyri/scr_test_yyri.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GmlCppExtFuncs/HEAD/interop_test_23/scripts/scr_test_yyri/scr_test_yyri.yy -------------------------------------------------------------------------------- /interop_test_23/scripts/sfmt/sfmt.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GmlCppExtFuncs/HEAD/interop_test_23/scripts/sfmt/sfmt.gml -------------------------------------------------------------------------------- /interop_test_23/scripts/sfmt/sfmt.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GmlCppExtFuncs/HEAD/interop_test_23/scripts/sfmt/sfmt.yy -------------------------------------------------------------------------------- /interop_test_23/scripts/trace/trace.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GmlCppExtFuncs/HEAD/interop_test_23/scripts/trace/trace.gml -------------------------------------------------------------------------------- /interop_test_23/scripts/trace/trace.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GmlCppExtFuncs/HEAD/interop_test_23/scripts/trace/trace.yy -------------------------------------------------------------------------------- /interop_test_yy/extensions/interop_test/autogen.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GmlCppExtFuncs/HEAD/interop_test_yy/extensions/interop_test/autogen.gml -------------------------------------------------------------------------------- /interop_test_yy/extensions/interop_test/interop_test.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GmlCppExtFuncs/HEAD/interop_test_yy/extensions/interop_test/interop_test.gml -------------------------------------------------------------------------------- /interop_test_yy/extensions/interop_test/interop_test.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GmlCppExtFuncs/HEAD/interop_test_yy/extensions/interop_test/interop_test.yy -------------------------------------------------------------------------------- /interop_test_yy/fonts/fnt_test/fnt_test.gms1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GmlCppExtFuncs/HEAD/interop_test_yy/fonts/fnt_test/fnt_test.gms1.png -------------------------------------------------------------------------------- /interop_test_yy/fonts/fnt_test/fnt_test.gms1.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GmlCppExtFuncs/HEAD/interop_test_yy/fonts/fnt_test/fnt_test.gms1.yy -------------------------------------------------------------------------------- /interop_test_yy/fonts/fnt_test/fnt_test.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GmlCppExtFuncs/HEAD/interop_test_yy/fonts/fnt_test/fnt_test.png -------------------------------------------------------------------------------- /interop_test_yy/fonts/fnt_test/fnt_test.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GmlCppExtFuncs/HEAD/interop_test_yy/fonts/fnt_test/fnt_test.yy -------------------------------------------------------------------------------- /interop_test_yy/interop_test.yyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GmlCppExtFuncs/HEAD/interop_test_yy/interop_test.yyp -------------------------------------------------------------------------------- /interop_test_yy/objects/obj_test/Create_0.gml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /interop_test_yy/objects/obj_test/Draw_0.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GmlCppExtFuncs/HEAD/interop_test_yy/objects/obj_test/Draw_0.gml -------------------------------------------------------------------------------- /interop_test_yy/objects/obj_test/Step_0.gml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /interop_test_yy/objects/obj_test/obj_test.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GmlCppExtFuncs/HEAD/interop_test_yy/objects/obj_test/obj_test.yy -------------------------------------------------------------------------------- /interop_test_yy/options/amazonfire/options_amazonfire.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GmlCppExtFuncs/HEAD/interop_test_yy/options/amazonfire/options_amazonfire.yy -------------------------------------------------------------------------------- /interop_test_yy/options/android/options_android.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GmlCppExtFuncs/HEAD/interop_test_yy/options/android/options_android.yy -------------------------------------------------------------------------------- /interop_test_yy/options/html5/options_html5.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GmlCppExtFuncs/HEAD/interop_test_yy/options/html5/options_html5.yy -------------------------------------------------------------------------------- /interop_test_yy/options/ios/options_ios.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GmlCppExtFuncs/HEAD/interop_test_yy/options/ios/options_ios.yy -------------------------------------------------------------------------------- /interop_test_yy/options/linux/options_linux.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GmlCppExtFuncs/HEAD/interop_test_yy/options/linux/options_linux.yy -------------------------------------------------------------------------------- /interop_test_yy/options/mac/options_mac.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GmlCppExtFuncs/HEAD/interop_test_yy/options/mac/options_mac.yy -------------------------------------------------------------------------------- /interop_test_yy/options/main/inherited/options_main.inherited.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GmlCppExtFuncs/HEAD/interop_test_yy/options/main/inherited/options_main.inherited.yy -------------------------------------------------------------------------------- /interop_test_yy/options/switch/options_switch.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GmlCppExtFuncs/HEAD/interop_test_yy/options/switch/options_switch.yy -------------------------------------------------------------------------------- /interop_test_yy/options/tvos/options_tvos.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GmlCppExtFuncs/HEAD/interop_test_yy/options/tvos/options_tvos.yy -------------------------------------------------------------------------------- /interop_test_yy/options/windows/options_windows.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GmlCppExtFuncs/HEAD/interop_test_yy/options/windows/options_windows.yy -------------------------------------------------------------------------------- /interop_test_yy/rooms/rm_test/rm_test.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GmlCppExtFuncs/HEAD/interop_test_yy/rooms/rm_test/rm_test.yy -------------------------------------------------------------------------------- /interop_test_yy/scripts/trace/trace.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GmlCppExtFuncs/HEAD/interop_test_yy/scripts/trace/trace.gml -------------------------------------------------------------------------------- /interop_test_yy/scripts/trace/trace.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GmlCppExtFuncs/HEAD/interop_test_yy/scripts/trace/trace.yy -------------------------------------------------------------------------------- /interop_test_yy/views/1a1012ca-9702-4cd0-870a-3101ca12fddb.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GmlCppExtFuncs/HEAD/interop_test_yy/views/1a1012ca-9702-4cd0-870a-3101ca12fddb.yy -------------------------------------------------------------------------------- /interop_test_yy/views/4f96784b-1ebd-4fc6-8c5b-10ee426a2840.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GmlCppExtFuncs/HEAD/interop_test_yy/views/4f96784b-1ebd-4fc6-8c5b-10ee426a2840.yy -------------------------------------------------------------------------------- /interop_test_yy/views/504c1931-39ad-4f48-b783-4eb537b963d6.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GmlCppExtFuncs/HEAD/interop_test_yy/views/504c1931-39ad-4f48-b783-4eb537b963d6.yy -------------------------------------------------------------------------------- /interop_test_yy/views/690caa00-bb5f-4c7f-b921-6fd3330a6bc3.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GmlCppExtFuncs/HEAD/interop_test_yy/views/690caa00-bb5f-4c7f-b921-6fd3330a6bc3.yy -------------------------------------------------------------------------------- /interop_test_yy/views/6e9a4a1b-fa39-4f06-94c9-1a7f8822216a.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GmlCppExtFuncs/HEAD/interop_test_yy/views/6e9a4a1b-fa39-4f06-94c9-1a7f8822216a.yy -------------------------------------------------------------------------------- /interop_test_yy/views/81be6123-f045-42c2-ad8f-dd97676ed387.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GmlCppExtFuncs/HEAD/interop_test_yy/views/81be6123-f045-42c2-ad8f-dd97676ed387.yy -------------------------------------------------------------------------------- /interop_test_yy/views/8c638ff8-1abe-4e11-bc32-7ef6af8b7b4f.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GmlCppExtFuncs/HEAD/interop_test_yy/views/8c638ff8-1abe-4e11-bc32-7ef6af8b7b4f.yy -------------------------------------------------------------------------------- /interop_test_yy/views/9878a9d0-ce0a-4455-91a7-89de6e4976a2.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GmlCppExtFuncs/HEAD/interop_test_yy/views/9878a9d0-ce0a-4455-91a7-89de6e4976a2.yy -------------------------------------------------------------------------------- /interop_test_yy/views/9fdcc299-adf8-4729-b2f3-076ababf81ed.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GmlCppExtFuncs/HEAD/interop_test_yy/views/9fdcc299-adf8-4729-b2f3-076ababf81ed.yy -------------------------------------------------------------------------------- /interop_test_yy/views/c583b9bc-76c2-490f-a077-1eeafac7f5ec.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GmlCppExtFuncs/HEAD/interop_test_yy/views/c583b9bc-76c2-490f-a077-1eeafac7f5ec.yy -------------------------------------------------------------------------------- /interop_test_yy/views/c9dcc6e5-46f1-4578-8543-9af4f6a4f7de.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GmlCppExtFuncs/HEAD/interop_test_yy/views/c9dcc6e5-46f1-4578-8543-9af4f6a4f7de.yy -------------------------------------------------------------------------------- /interop_test_yy/views/e5b1e8fe-f417-43e8-b65f-8a518d723aea.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GmlCppExtFuncs/HEAD/interop_test_yy/views/e5b1e8fe-f417-43e8-b65f-8a518d723aea.yy -------------------------------------------------------------------------------- /interop_test_yy/views/e5bc0382-83e6-4bfa-b68f-c702a7545129.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GmlCppExtFuncs/HEAD/interop_test_yy/views/e5bc0382-83e6-4bfa-b68f-c702a7545129.yy -------------------------------------------------------------------------------- /interop_test_yy/views/f2ec9b0e-c3fe-4297-a78d-fa6f418fd827.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GmlCppExtFuncs/HEAD/interop_test_yy/views/f2ec9b0e-c3fe-4297-a78d-fa6f418fd827.yy -------------------------------------------------------------------------------- /interop_test_yy/views/f664cd6f-a19b-470a-8b94-844b0367b313.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GmlCppExtFuncs/HEAD/interop_test_yy/views/f664cd6f-a19b-470a-8b94-844b0367b313.yy -------------------------------------------------------------------------------- /interop_test_yy/views/f8edfe34-8789-4236-b7e4-741b59e181b8.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GmlCppExtFuncs/HEAD/interop_test_yy/views/f8edfe34-8789-4236-b7e4-741b59e181b8.yy -------------------------------------------------------------------------------- /src/CppConfig.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GmlCppExtFuncs/HEAD/src/CppConfig.hx -------------------------------------------------------------------------------- /src/CppGen.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GmlCppExtFuncs/HEAD/src/CppGen.hx -------------------------------------------------------------------------------- /src/CppGenParser.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GmlCppExtFuncs/HEAD/src/CppGenParser.hx -------------------------------------------------------------------------------- /src/CppType.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GmlCppExtFuncs/HEAD/src/CppType.hx -------------------------------------------------------------------------------- /src/CppTypeHelper.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GmlCppExtFuncs/HEAD/src/CppTypeHelper.hx -------------------------------------------------------------------------------- /src/CppTypeMacroHelper.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GmlCppExtFuncs/HEAD/src/CppTypeMacroHelper.hx -------------------------------------------------------------------------------- /src/GmlExtMacro.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GmlCppExtFuncs/HEAD/src/GmlExtMacro.hx -------------------------------------------------------------------------------- /src/func/CppFunc.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GmlCppExtFuncs/HEAD/src/func/CppFunc.hx -------------------------------------------------------------------------------- /src/func/CppFuncArg.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GmlCppExtFuncs/HEAD/src/func/CppFuncArg.hx -------------------------------------------------------------------------------- /src/func/CppFuncGmlDoc.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GmlCppExtFuncs/HEAD/src/func/CppFuncGmlDoc.hx -------------------------------------------------------------------------------- /src/func/CppFuncMangled.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GmlCppExtFuncs/HEAD/src/func/CppFuncMangled.hx -------------------------------------------------------------------------------- /src/func/CppFuncReader.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GmlCppExtFuncs/HEAD/src/func/CppFuncReader.hx -------------------------------------------------------------------------------- /src/misc/GmlConstructor.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GmlCppExtFuncs/HEAD/src/misc/GmlConstructor.hx -------------------------------------------------------------------------------- /src/proc/CppTypeProc.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GmlCppExtFuncs/HEAD/src/proc/CppTypeProc.hx -------------------------------------------------------------------------------- /src/proc/CppTypeProcAssetIndexOf.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GmlCppExtFuncs/HEAD/src/proc/CppTypeProcAssetIndexOf.hx -------------------------------------------------------------------------------- /src/proc/CppTypeProcCond.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GmlCppExtFuncs/HEAD/src/proc/CppTypeProcCond.hx -------------------------------------------------------------------------------- /src/proc/CppTypeProcCustom.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GmlCppExtFuncs/HEAD/src/proc/CppTypeProcCustom.hx -------------------------------------------------------------------------------- /src/proc/CppTypeProcEnum.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GmlCppExtFuncs/HEAD/src/proc/CppTypeProcEnum.hx -------------------------------------------------------------------------------- /src/proc/CppTypeProcError.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GmlCppExtFuncs/HEAD/src/proc/CppTypeProcError.hx -------------------------------------------------------------------------------- /src/proc/CppTypeProcGameHwnd.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GmlCppExtFuncs/HEAD/src/proc/CppTypeProcGameHwnd.hx -------------------------------------------------------------------------------- /src/proc/CppTypeProcGmlBuffer.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GmlCppExtFuncs/HEAD/src/proc/CppTypeProcGmlBuffer.hx -------------------------------------------------------------------------------- /src/proc/CppTypeProcGmlInOut.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GmlCppExtFuncs/HEAD/src/proc/CppTypeProcGmlInOut.hx -------------------------------------------------------------------------------- /src/proc/CppTypeProcGmlInOutVector.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GmlCppExtFuncs/HEAD/src/proc/CppTypeProcGmlInOutVector.hx -------------------------------------------------------------------------------- /src/proc/CppTypeProcGmlPointer.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GmlCppExtFuncs/HEAD/src/proc/CppTypeProcGmlPointer.hx -------------------------------------------------------------------------------- /src/proc/CppTypeProcOptional.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GmlCppExtFuncs/HEAD/src/proc/CppTypeProcOptional.hx -------------------------------------------------------------------------------- /src/proc/CppTypeProcSimple.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GmlCppExtFuncs/HEAD/src/proc/CppTypeProcSimple.hx -------------------------------------------------------------------------------- /src/proc/CppTypeProcString.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GmlCppExtFuncs/HEAD/src/proc/CppTypeProcString.hx -------------------------------------------------------------------------------- /src/proc/CppTypeProcStruct.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GmlCppExtFuncs/HEAD/src/proc/CppTypeProcStruct.hx -------------------------------------------------------------------------------- /src/proc/CppTypeProcTuple.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GmlCppExtFuncs/HEAD/src/proc/CppTypeProcTuple.hx -------------------------------------------------------------------------------- /src/proc/CppTypeProcVector.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GmlCppExtFuncs/HEAD/src/proc/CppTypeProcVector.hx -------------------------------------------------------------------------------- /src/struct/CppStruct.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GmlCppExtFuncs/HEAD/src/struct/CppStruct.hx -------------------------------------------------------------------------------- /src/struct/CppStructField.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GmlCppExtFuncs/HEAD/src/struct/CppStructField.hx -------------------------------------------------------------------------------- /src/struct/CppStructIO.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GmlCppExtFuncs/HEAD/src/struct/CppStructIO.hx -------------------------------------------------------------------------------- /src/struct/GmlStructIO.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GmlCppExtFuncs/HEAD/src/struct/GmlStructIO.hx -------------------------------------------------------------------------------- /src/tools/CharCode.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GmlCppExtFuncs/HEAD/src/tools/CharCode.hx -------------------------------------------------------------------------------- /src/tools/CppBuf.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GmlCppExtFuncs/HEAD/src/tools/CppBuf.hx -------------------------------------------------------------------------------- /src/tools/CppReader.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GmlCppExtFuncs/HEAD/src/tools/CppReader.hx -------------------------------------------------------------------------------- /src/tools/GmkGen.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GmlCppExtFuncs/HEAD/src/tools/GmkGen.hx -------------------------------------------------------------------------------- /src/tools/GmlConditionalComments.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-GameMaker-Tools/GmlCppExtFuncs/HEAD/src/tools/GmlConditionalComments.hx --------------------------------------------------------------------------------