├── .gitignore ├── DemoClient ├── DemoClient.cpp └── DemoClient.vcxproj ├── DemoServer ├── DemoServer.cpp └── DemoServer.vcxproj ├── DriverComplie.py ├── LPC ├── CommonDefs.h ├── Kernel.c ├── KernelModeDefs.h ├── LPC.c ├── LPC.h ├── LPC.vcxproj ├── UserModeDefs.h ├── ldasm.c ├── ldasm.h ├── makefile ├── ntstatus.h └── sources ├── LPCTest ├── LPCTest.c ├── LPCTest.inf ├── LPCTest.vcxproj ├── makefile ├── sources └── x86kernel │ └── LPCTest.inf ├── README.md ├── VersionSelector.sln └── inc ├── utarray.h ├── uthash.h ├── utlist.h └── utstring.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avalon1610/LPC/HEAD/.gitignore -------------------------------------------------------------------------------- /DemoClient/DemoClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avalon1610/LPC/HEAD/DemoClient/DemoClient.cpp -------------------------------------------------------------------------------- /DemoClient/DemoClient.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avalon1610/LPC/HEAD/DemoClient/DemoClient.vcxproj -------------------------------------------------------------------------------- /DemoServer/DemoServer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avalon1610/LPC/HEAD/DemoServer/DemoServer.cpp -------------------------------------------------------------------------------- /DemoServer/DemoServer.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avalon1610/LPC/HEAD/DemoServer/DemoServer.vcxproj -------------------------------------------------------------------------------- /DriverComplie.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avalon1610/LPC/HEAD/DriverComplie.py -------------------------------------------------------------------------------- /LPC/CommonDefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avalon1610/LPC/HEAD/LPC/CommonDefs.h -------------------------------------------------------------------------------- /LPC/Kernel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avalon1610/LPC/HEAD/LPC/Kernel.c -------------------------------------------------------------------------------- /LPC/KernelModeDefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avalon1610/LPC/HEAD/LPC/KernelModeDefs.h -------------------------------------------------------------------------------- /LPC/LPC.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avalon1610/LPC/HEAD/LPC/LPC.c -------------------------------------------------------------------------------- /LPC/LPC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avalon1610/LPC/HEAD/LPC/LPC.h -------------------------------------------------------------------------------- /LPC/LPC.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avalon1610/LPC/HEAD/LPC/LPC.vcxproj -------------------------------------------------------------------------------- /LPC/UserModeDefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avalon1610/LPC/HEAD/LPC/UserModeDefs.h -------------------------------------------------------------------------------- /LPC/ldasm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avalon1610/LPC/HEAD/LPC/ldasm.c -------------------------------------------------------------------------------- /LPC/ldasm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avalon1610/LPC/HEAD/LPC/ldasm.h -------------------------------------------------------------------------------- /LPC/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avalon1610/LPC/HEAD/LPC/makefile -------------------------------------------------------------------------------- /LPC/ntstatus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avalon1610/LPC/HEAD/LPC/ntstatus.h -------------------------------------------------------------------------------- /LPC/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avalon1610/LPC/HEAD/LPC/sources -------------------------------------------------------------------------------- /LPCTest/LPCTest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avalon1610/LPC/HEAD/LPCTest/LPCTest.c -------------------------------------------------------------------------------- /LPCTest/LPCTest.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avalon1610/LPC/HEAD/LPCTest/LPCTest.inf -------------------------------------------------------------------------------- /LPCTest/LPCTest.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avalon1610/LPC/HEAD/LPCTest/LPCTest.vcxproj -------------------------------------------------------------------------------- /LPCTest/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avalon1610/LPC/HEAD/LPCTest/makefile -------------------------------------------------------------------------------- /LPCTest/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avalon1610/LPC/HEAD/LPCTest/sources -------------------------------------------------------------------------------- /LPCTest/x86kernel/LPCTest.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avalon1610/LPC/HEAD/LPCTest/x86kernel/LPCTest.inf -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | LPC 2 | === 3 | 4 | windows LPC library -------------------------------------------------------------------------------- /VersionSelector.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avalon1610/LPC/HEAD/VersionSelector.sln -------------------------------------------------------------------------------- /inc/utarray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avalon1610/LPC/HEAD/inc/utarray.h -------------------------------------------------------------------------------- /inc/uthash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avalon1610/LPC/HEAD/inc/uthash.h -------------------------------------------------------------------------------- /inc/utlist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avalon1610/LPC/HEAD/inc/utlist.h -------------------------------------------------------------------------------- /inc/utstring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avalon1610/LPC/HEAD/inc/utstring.h --------------------------------------------------------------------------------