├── .gitignore ├── README.md ├── image ├── VMBegin.png ├── VMEnd.png ├── VMRun.gif ├── VxLang-4.png ├── antidmp-1.PNG ├── antidmp-2.PNG ├── antidmp-3.PNG ├── antidmp-4.PNG ├── o3.png ├── o4.png ├── obs1.png ├── obs2.png └── obs3.png ├── special-thanks.md └── src ├── Example ├── 01 │ ├── Readme.md │ └── tutorial │ │ ├── cxxeh.cpp │ │ ├── sdk.cpp │ │ ├── seh.cpp │ │ ├── str.cpp │ │ ├── switchcase.cpp │ │ ├── tutorial.cpp │ │ ├── tutorial.def │ │ ├── tutorial.vcxproj │ │ └── tutorial.vcxproj.filters ├── example.sln ├── rust │ ├── .gitignore │ ├── Cargo.lock │ ├── Cargo.toml │ ├── build.bat │ ├── build.rs │ ├── lib │ │ ├── vxlib32.dll │ │ ├── vxlib32.lib │ │ ├── vxlib64.dll │ │ ├── vxlib64.lib │ │ ├── vxsyslib32.lib │ │ └── vxsyslib64.lib │ └── src │ │ └── main.rs └── sdk │ ├── include │ ├── kvxlib.h │ └── vxlib.h │ └── lib │ ├── vxlib32.lib │ ├── vxlib64.lib │ ├── vxsyslib32.lib │ └── vxsyslib64.lib └── SDK ├── deploy ├── include │ ├── kvxlib.h │ ├── vxlib.h │ ├── vxlib_signature.h │ └── vxlib_signature.inc └── lib │ ├── vxlib32.dll │ ├── vxlib32.lib │ ├── vxlib64.dll │ ├── vxlib64.lib │ ├── vxsyslib64.lib │ └── vxsyslib64.sys ├── project ├── vxlib │ ├── vxlib.cpp │ ├── vxlib.def │ ├── vxlib.vcxproj │ └── vxlib.vcxproj.filters └── vxsyslib │ ├── vxsyslib.cpp │ ├── vxsyslib.def │ ├── vxsyslib.inf │ ├── vxsyslib.vcxproj │ └── vxsyslib.vcxproj.filters └── vxlib.sln /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vxlang/vxlang-page/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vxlang/vxlang-page/HEAD/README.md -------------------------------------------------------------------------------- /image/VMBegin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vxlang/vxlang-page/HEAD/image/VMBegin.png -------------------------------------------------------------------------------- /image/VMEnd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vxlang/vxlang-page/HEAD/image/VMEnd.png -------------------------------------------------------------------------------- /image/VMRun.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vxlang/vxlang-page/HEAD/image/VMRun.gif -------------------------------------------------------------------------------- /image/VxLang-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vxlang/vxlang-page/HEAD/image/VxLang-4.png -------------------------------------------------------------------------------- /image/antidmp-1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vxlang/vxlang-page/HEAD/image/antidmp-1.PNG -------------------------------------------------------------------------------- /image/antidmp-2.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vxlang/vxlang-page/HEAD/image/antidmp-2.PNG -------------------------------------------------------------------------------- /image/antidmp-3.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vxlang/vxlang-page/HEAD/image/antidmp-3.PNG -------------------------------------------------------------------------------- /image/antidmp-4.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vxlang/vxlang-page/HEAD/image/antidmp-4.PNG -------------------------------------------------------------------------------- /image/o3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vxlang/vxlang-page/HEAD/image/o3.png -------------------------------------------------------------------------------- /image/o4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vxlang/vxlang-page/HEAD/image/o4.png -------------------------------------------------------------------------------- /image/obs1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vxlang/vxlang-page/HEAD/image/obs1.png -------------------------------------------------------------------------------- /image/obs2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vxlang/vxlang-page/HEAD/image/obs2.png -------------------------------------------------------------------------------- /image/obs3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vxlang/vxlang-page/HEAD/image/obs3.png -------------------------------------------------------------------------------- /special-thanks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vxlang/vxlang-page/HEAD/special-thanks.md -------------------------------------------------------------------------------- /src/Example/01/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vxlang/vxlang-page/HEAD/src/Example/01/Readme.md -------------------------------------------------------------------------------- /src/Example/01/tutorial/cxxeh.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vxlang/vxlang-page/HEAD/src/Example/01/tutorial/cxxeh.cpp -------------------------------------------------------------------------------- /src/Example/01/tutorial/sdk.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vxlang/vxlang-page/HEAD/src/Example/01/tutorial/sdk.cpp -------------------------------------------------------------------------------- /src/Example/01/tutorial/seh.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vxlang/vxlang-page/HEAD/src/Example/01/tutorial/seh.cpp -------------------------------------------------------------------------------- /src/Example/01/tutorial/str.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vxlang/vxlang-page/HEAD/src/Example/01/tutorial/str.cpp -------------------------------------------------------------------------------- /src/Example/01/tutorial/switchcase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vxlang/vxlang-page/HEAD/src/Example/01/tutorial/switchcase.cpp -------------------------------------------------------------------------------- /src/Example/01/tutorial/tutorial.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vxlang/vxlang-page/HEAD/src/Example/01/tutorial/tutorial.cpp -------------------------------------------------------------------------------- /src/Example/01/tutorial/tutorial.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vxlang/vxlang-page/HEAD/src/Example/01/tutorial/tutorial.def -------------------------------------------------------------------------------- /src/Example/01/tutorial/tutorial.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vxlang/vxlang-page/HEAD/src/Example/01/tutorial/tutorial.vcxproj -------------------------------------------------------------------------------- /src/Example/01/tutorial/tutorial.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vxlang/vxlang-page/HEAD/src/Example/01/tutorial/tutorial.vcxproj.filters -------------------------------------------------------------------------------- /src/Example/example.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vxlang/vxlang-page/HEAD/src/Example/example.sln -------------------------------------------------------------------------------- /src/Example/rust/.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | -------------------------------------------------------------------------------- /src/Example/rust/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vxlang/vxlang-page/HEAD/src/Example/rust/Cargo.lock -------------------------------------------------------------------------------- /src/Example/rust/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vxlang/vxlang-page/HEAD/src/Example/rust/Cargo.toml -------------------------------------------------------------------------------- /src/Example/rust/build.bat: -------------------------------------------------------------------------------- 1 | cargo build --release -------------------------------------------------------------------------------- /src/Example/rust/build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vxlang/vxlang-page/HEAD/src/Example/rust/build.rs -------------------------------------------------------------------------------- /src/Example/rust/lib/vxlib32.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vxlang/vxlang-page/HEAD/src/Example/rust/lib/vxlib32.dll -------------------------------------------------------------------------------- /src/Example/rust/lib/vxlib32.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vxlang/vxlang-page/HEAD/src/Example/rust/lib/vxlib32.lib -------------------------------------------------------------------------------- /src/Example/rust/lib/vxlib64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vxlang/vxlang-page/HEAD/src/Example/rust/lib/vxlib64.dll -------------------------------------------------------------------------------- /src/Example/rust/lib/vxlib64.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vxlang/vxlang-page/HEAD/src/Example/rust/lib/vxlib64.lib -------------------------------------------------------------------------------- /src/Example/rust/lib/vxsyslib32.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vxlang/vxlang-page/HEAD/src/Example/rust/lib/vxsyslib32.lib -------------------------------------------------------------------------------- /src/Example/rust/lib/vxsyslib64.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vxlang/vxlang-page/HEAD/src/Example/rust/lib/vxsyslib64.lib -------------------------------------------------------------------------------- /src/Example/rust/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vxlang/vxlang-page/HEAD/src/Example/rust/src/main.rs -------------------------------------------------------------------------------- /src/Example/sdk/include/kvxlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vxlang/vxlang-page/HEAD/src/Example/sdk/include/kvxlib.h -------------------------------------------------------------------------------- /src/Example/sdk/include/vxlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vxlang/vxlang-page/HEAD/src/Example/sdk/include/vxlib.h -------------------------------------------------------------------------------- /src/Example/sdk/lib/vxlib32.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vxlang/vxlang-page/HEAD/src/Example/sdk/lib/vxlib32.lib -------------------------------------------------------------------------------- /src/Example/sdk/lib/vxlib64.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vxlang/vxlang-page/HEAD/src/Example/sdk/lib/vxlib64.lib -------------------------------------------------------------------------------- /src/Example/sdk/lib/vxsyslib32.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vxlang/vxlang-page/HEAD/src/Example/sdk/lib/vxsyslib32.lib -------------------------------------------------------------------------------- /src/Example/sdk/lib/vxsyslib64.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vxlang/vxlang-page/HEAD/src/Example/sdk/lib/vxsyslib64.lib -------------------------------------------------------------------------------- /src/SDK/deploy/include/kvxlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vxlang/vxlang-page/HEAD/src/SDK/deploy/include/kvxlib.h -------------------------------------------------------------------------------- /src/SDK/deploy/include/vxlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vxlang/vxlang-page/HEAD/src/SDK/deploy/include/vxlib.h -------------------------------------------------------------------------------- /src/SDK/deploy/include/vxlib_signature.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vxlang/vxlang-page/HEAD/src/SDK/deploy/include/vxlib_signature.h -------------------------------------------------------------------------------- /src/SDK/deploy/include/vxlib_signature.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vxlang/vxlang-page/HEAD/src/SDK/deploy/include/vxlib_signature.inc -------------------------------------------------------------------------------- /src/SDK/deploy/lib/vxlib32.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vxlang/vxlang-page/HEAD/src/SDK/deploy/lib/vxlib32.dll -------------------------------------------------------------------------------- /src/SDK/deploy/lib/vxlib32.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vxlang/vxlang-page/HEAD/src/SDK/deploy/lib/vxlib32.lib -------------------------------------------------------------------------------- /src/SDK/deploy/lib/vxlib64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vxlang/vxlang-page/HEAD/src/SDK/deploy/lib/vxlib64.dll -------------------------------------------------------------------------------- /src/SDK/deploy/lib/vxlib64.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vxlang/vxlang-page/HEAD/src/SDK/deploy/lib/vxlib64.lib -------------------------------------------------------------------------------- /src/SDK/deploy/lib/vxsyslib64.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vxlang/vxlang-page/HEAD/src/SDK/deploy/lib/vxsyslib64.lib -------------------------------------------------------------------------------- /src/SDK/deploy/lib/vxsyslib64.sys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vxlang/vxlang-page/HEAD/src/SDK/deploy/lib/vxsyslib64.sys -------------------------------------------------------------------------------- /src/SDK/project/vxlib/vxlib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vxlang/vxlang-page/HEAD/src/SDK/project/vxlib/vxlib.cpp -------------------------------------------------------------------------------- /src/SDK/project/vxlib/vxlib.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vxlang/vxlang-page/HEAD/src/SDK/project/vxlib/vxlib.def -------------------------------------------------------------------------------- /src/SDK/project/vxlib/vxlib.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vxlang/vxlang-page/HEAD/src/SDK/project/vxlib/vxlib.vcxproj -------------------------------------------------------------------------------- /src/SDK/project/vxlib/vxlib.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vxlang/vxlang-page/HEAD/src/SDK/project/vxlib/vxlib.vcxproj.filters -------------------------------------------------------------------------------- /src/SDK/project/vxsyslib/vxsyslib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vxlang/vxlang-page/HEAD/src/SDK/project/vxsyslib/vxsyslib.cpp -------------------------------------------------------------------------------- /src/SDK/project/vxsyslib/vxsyslib.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vxlang/vxlang-page/HEAD/src/SDK/project/vxsyslib/vxsyslib.def -------------------------------------------------------------------------------- /src/SDK/project/vxsyslib/vxsyslib.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vxlang/vxlang-page/HEAD/src/SDK/project/vxsyslib/vxsyslib.inf -------------------------------------------------------------------------------- /src/SDK/project/vxsyslib/vxsyslib.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vxlang/vxlang-page/HEAD/src/SDK/project/vxsyslib/vxsyslib.vcxproj -------------------------------------------------------------------------------- /src/SDK/project/vxsyslib/vxsyslib.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vxlang/vxlang-page/HEAD/src/SDK/project/vxsyslib/vxsyslib.vcxproj.filters -------------------------------------------------------------------------------- /src/SDK/vxlib.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vxlang/vxlang-page/HEAD/src/SDK/vxlib.sln --------------------------------------------------------------------------------