├── .gitignore ├── LICENSE ├── README.md ├── Tupfile.ini ├── bin └── Tupfile ├── include ├── ArrayLength.h ├── MakeUniqueLen.h ├── UniqueHandle.h ├── WindowsSandbox.h ├── dacl.h ├── sid.h └── sidattrs.h ├── lib └── Tupfile ├── obj ├── comtest │ └── Tupfile ├── itest │ └── Tupfile ├── proto │ └── Tupfile └── sandbox │ └── Tupfile └── src ├── compatibility.manifest ├── comtest ├── comarshal.cpp ├── comarshal.h ├── comtest.cpp ├── handoff.cpp ├── handoff.h ├── interceptor.h └── mscom.h ├── itest ├── ITest.def └── Test.idl ├── proto └── proto.cpp └── sandbox ├── WindowsSandbox.cpp ├── dacl.cpp ├── sid.cpp └── sidattrs.cpp /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dblohm7/sandbox-win32/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dblohm7/sandbox-win32/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dblohm7/sandbox-win32/HEAD/README.md -------------------------------------------------------------------------------- /Tupfile.ini: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bin/Tupfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dblohm7/sandbox-win32/HEAD/bin/Tupfile -------------------------------------------------------------------------------- /include/ArrayLength.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dblohm7/sandbox-win32/HEAD/include/ArrayLength.h -------------------------------------------------------------------------------- /include/MakeUniqueLen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dblohm7/sandbox-win32/HEAD/include/MakeUniqueLen.h -------------------------------------------------------------------------------- /include/UniqueHandle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dblohm7/sandbox-win32/HEAD/include/UniqueHandle.h -------------------------------------------------------------------------------- /include/WindowsSandbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dblohm7/sandbox-win32/HEAD/include/WindowsSandbox.h -------------------------------------------------------------------------------- /include/dacl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dblohm7/sandbox-win32/HEAD/include/dacl.h -------------------------------------------------------------------------------- /include/sid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dblohm7/sandbox-win32/HEAD/include/sid.h -------------------------------------------------------------------------------- /include/sidattrs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dblohm7/sandbox-win32/HEAD/include/sidattrs.h -------------------------------------------------------------------------------- /lib/Tupfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dblohm7/sandbox-win32/HEAD/lib/Tupfile -------------------------------------------------------------------------------- /obj/comtest/Tupfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dblohm7/sandbox-win32/HEAD/obj/comtest/Tupfile -------------------------------------------------------------------------------- /obj/itest/Tupfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dblohm7/sandbox-win32/HEAD/obj/itest/Tupfile -------------------------------------------------------------------------------- /obj/proto/Tupfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dblohm7/sandbox-win32/HEAD/obj/proto/Tupfile -------------------------------------------------------------------------------- /obj/sandbox/Tupfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dblohm7/sandbox-win32/HEAD/obj/sandbox/Tupfile -------------------------------------------------------------------------------- /src/compatibility.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dblohm7/sandbox-win32/HEAD/src/compatibility.manifest -------------------------------------------------------------------------------- /src/comtest/comarshal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dblohm7/sandbox-win32/HEAD/src/comtest/comarshal.cpp -------------------------------------------------------------------------------- /src/comtest/comarshal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dblohm7/sandbox-win32/HEAD/src/comtest/comarshal.h -------------------------------------------------------------------------------- /src/comtest/comtest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dblohm7/sandbox-win32/HEAD/src/comtest/comtest.cpp -------------------------------------------------------------------------------- /src/comtest/handoff.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dblohm7/sandbox-win32/HEAD/src/comtest/handoff.cpp -------------------------------------------------------------------------------- /src/comtest/handoff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dblohm7/sandbox-win32/HEAD/src/comtest/handoff.h -------------------------------------------------------------------------------- /src/comtest/interceptor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dblohm7/sandbox-win32/HEAD/src/comtest/interceptor.h -------------------------------------------------------------------------------- /src/comtest/mscom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dblohm7/sandbox-win32/HEAD/src/comtest/mscom.h -------------------------------------------------------------------------------- /src/itest/ITest.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dblohm7/sandbox-win32/HEAD/src/itest/ITest.def -------------------------------------------------------------------------------- /src/itest/Test.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dblohm7/sandbox-win32/HEAD/src/itest/Test.idl -------------------------------------------------------------------------------- /src/proto/proto.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dblohm7/sandbox-win32/HEAD/src/proto/proto.cpp -------------------------------------------------------------------------------- /src/sandbox/WindowsSandbox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dblohm7/sandbox-win32/HEAD/src/sandbox/WindowsSandbox.cpp -------------------------------------------------------------------------------- /src/sandbox/dacl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dblohm7/sandbox-win32/HEAD/src/sandbox/dacl.cpp -------------------------------------------------------------------------------- /src/sandbox/sid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dblohm7/sandbox-win32/HEAD/src/sandbox/sid.cpp -------------------------------------------------------------------------------- /src/sandbox/sidattrs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dblohm7/sandbox-win32/HEAD/src/sandbox/sidattrs.cpp --------------------------------------------------------------------------------