├── .gitignore ├── COPYING.LIB ├── Make.rules.in ├── Makefile.in ├── README ├── TODO ├── config.guess ├── config.sub ├── configure ├── configure.ac ├── documents └── mingw-osx-install.txt ├── gen-packagemap.pl ├── include ├── .gitignore ├── basetsd.h ├── common │ ├── ntgdi.h │ └── ntuser.h ├── config.h.in ├── guiddef.h ├── ntstatus.h ├── ntsyscall.h ├── poppack.h ├── pshpack1.h ├── pshpack2.h ├── pshpack4.h ├── pshpack8.h ├── uisyscall.h ├── windef.h ├── wingdi.h ├── winioctl.h ├── winnt.h ├── winternl.h └── winuser.h ├── install-sh ├── kernel ├── .gitignore ├── Makefile.in ├── alloc_bitmap.cpp ├── alloc_bitmap.h ├── atom.cpp ├── bitmap.cpp ├── block.cpp ├── client.c ├── client.h ├── completion.cpp ├── count_args.pl ├── debug.cpp ├── debug.h ├── driver.cpp ├── enc.c ├── event.cpp ├── event.h ├── fiber.cpp ├── fiber.h ├── fiber_test.cpp ├── file.cpp ├── file.h ├── job.cpp ├── kthread.cpp ├── list.h ├── mailslot.cpp ├── main.cpp ├── mem.cpp ├── mem.h ├── message.cpp ├── message.h ├── mutant.cpp ├── namedpipe.cpp ├── ntcall.cpp ├── ntcall.h ├── ntgdi.cpp ├── ntuser.cpp ├── ntwin32.h ├── null_display.cpp ├── null_display.h ├── objdir.cpp ├── objdir.h ├── object.cpp ├── object.h ├── object.inl ├── platform.cpp ├── platform.h ├── port.cpp ├── process.cpp ├── process.h ├── profile.cpp ├── ptrace_base.cpp ├── ptrace_base.h ├── ptrace_if.c ├── ptrace_if.h ├── queue.cpp ├── queue.h ├── random.cpp ├── reg.cpp ├── region.cpp ├── region.h ├── sdl.cpp ├── sdl.h ├── section.cpp ├── section.h ├── semaphore.cpp ├── skas.cpp ├── spy.cpp ├── spy.h ├── symlink.cpp ├── symlink.h ├── syscall.cpp ├── syscall_stat.pl ├── thread.cpp ├── thread.h ├── timer.cpp ├── timer.h ├── token.cpp ├── token.h ├── tt.cpp ├── unicode.cpp ├── unicode.h ├── win.h └── win32mgr.h ├── libmspack ├── .gitignore ├── Makefile.in ├── README ├── cab.h ├── cabc.c ├── cabd.c ├── chm.h ├── chmc.c ├── chmd.c ├── des.h ├── hlp.h ├── hlpc.c ├── hlpd.c ├── kwaj.h ├── kwajc.c ├── kwajd.c ├── lit.h ├── litc.c ├── litd.c ├── lzss.h ├── lzx.h ├── lzxc.c ├── lzxd.c ├── mspack.h ├── mszip.h ├── mszipc.c ├── mszipd.c ├── qtm.h ├── qtmd.c ├── sha.h ├── system.c ├── system.h ├── szdd.h ├── szddc.c └── szddd.c ├── libntreg ├── .gitignore ├── Makefile.in ├── ntreg.c └── ntreg.h ├── libudis86 ├── .gitignore ├── Makefile.in ├── decode.c ├── extern.h ├── input.c ├── input.h ├── mnemonics.dat ├── mnemonics.pl ├── opcmap.c ├── opcmap.h ├── syn-att.c ├── syn-intel.c ├── syn.c ├── syn.h ├── types.h └── udis86.c ├── packagemap.xml ├── programs ├── Makefile.in ├── clock │ ├── .gitignore │ ├── Makefile.in │ └── clock.c ├── minitris │ ├── .gitignore │ ├── Makefile.in │ └── minitris.c ├── minshell │ ├── .gitignore │ ├── Makefile.in │ └── minshell.c ├── pixels │ ├── .gitignore │ ├── Makefile.in │ └── pixels.c ├── winemine │ ├── .gitignore │ ├── Cs.rc │ ├── Da.rc │ ├── De.rc │ ├── En.rc │ ├── Es.rc │ ├── Fi.rc │ ├── Fr.rc │ ├── It.rc │ ├── Ja.rc │ ├── Ko.rc │ ├── Makefile.in │ ├── Nl.rc │ ├── No.rc │ ├── Pl.rc │ ├── Pt.rc │ ├── README │ ├── Ro.rc │ ├── Ru.rc │ ├── Si.rc │ ├── Tr.rc │ ├── Zh.rc │ ├── dialog.c │ ├── faces.bmp │ ├── leds.bmp │ ├── main.c │ ├── main.h │ ├── mines.bmp │ ├── resource.h │ ├── rsrc.rc │ ├── winemine.ico │ └── winemine.svg └── winlogon │ ├── .gitignore │ ├── Makefile.in │ └── winlogon.c ├── regedit ├── .gitignore ├── Makefile.in ├── main.cpp ├── regedit.pro ├── registryeditor.cpp ├── registryeditor.h ├── registryitem.cpp ├── registryitem.h ├── registrymodel.cpp ├── registrymodel.h ├── registrytreeview.cpp ├── registrytreeview.h ├── registryvalue.cpp └── registryvalue.h ├── ring3k-setup.in ├── ring3k.in ├── runtest ├── tests ├── .gitignore ├── Makefile.in ├── atom.c ├── completion.c ├── device.c ├── event.c ├── eventpair.c ├── file.c ├── font.c ├── gdi.c ├── gen_syscalls.pl ├── heap.c ├── hostnt.c ├── job.c ├── key.c ├── log.c ├── log.h ├── mailslot.c ├── mutant.c ├── native.c ├── ntapi.h ├── ntwin32.h ├── object.c ├── pipe.c ├── port.c ├── process.c ├── ps.c ├── reg.c ├── rtlapi.h ├── runnt.c ├── section.c ├── seh.c ├── sema.c ├── smss.c ├── syscall.c ├── thread.c ├── timer.c ├── token.c ├── user.c ├── virtual.c ├── win2k │ └── ntwin32.in ├── wine-atom.c ├── wine-port.c └── winxp │ └── ntwin32.in ├── tools ├── .gitignore ├── Makefile.in ├── advapi32.c ├── console.c ├── dumphandles.c ├── qdf.c ├── startcmd.c └── track.c └── unpack ├── .gitignore ├── Makefile.in └── unpack.c /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemccormack/ring3k/HEAD/.gitignore -------------------------------------------------------------------------------- /COPYING.LIB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemccormack/ring3k/HEAD/COPYING.LIB -------------------------------------------------------------------------------- /Make.rules.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemccormack/ring3k/HEAD/Make.rules.in -------------------------------------------------------------------------------- /Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemccormack/ring3k/HEAD/Makefile.in -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemccormack/ring3k/HEAD/README -------------------------------------------------------------------------------- /TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemccormack/ring3k/HEAD/TODO -------------------------------------------------------------------------------- /config.guess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemccormack/ring3k/HEAD/config.guess -------------------------------------------------------------------------------- /config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemccormack/ring3k/HEAD/config.sub -------------------------------------------------------------------------------- /configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemccormack/ring3k/HEAD/configure -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemccormack/ring3k/HEAD/configure.ac -------------------------------------------------------------------------------- /documents/mingw-osx-install.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemccormack/ring3k/HEAD/documents/mingw-osx-install.txt -------------------------------------------------------------------------------- /gen-packagemap.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemccormack/ring3k/HEAD/gen-packagemap.pl -------------------------------------------------------------------------------- /include/.gitignore: -------------------------------------------------------------------------------- 1 | config.h 2 | -------------------------------------------------------------------------------- /include/basetsd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemccormack/ring3k/HEAD/include/basetsd.h -------------------------------------------------------------------------------- /include/common/ntgdi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemccormack/ring3k/HEAD/include/common/ntgdi.h -------------------------------------------------------------------------------- /include/common/ntuser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemccormack/ring3k/HEAD/include/common/ntuser.h -------------------------------------------------------------------------------- /include/config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemccormack/ring3k/HEAD/include/config.h.in -------------------------------------------------------------------------------- /include/guiddef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemccormack/ring3k/HEAD/include/guiddef.h -------------------------------------------------------------------------------- /include/ntstatus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemccormack/ring3k/HEAD/include/ntstatus.h -------------------------------------------------------------------------------- /include/ntsyscall.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemccormack/ring3k/HEAD/include/ntsyscall.h -------------------------------------------------------------------------------- /include/poppack.h: -------------------------------------------------------------------------------- 1 | #pragma pack() 2 | -------------------------------------------------------------------------------- /include/pshpack1.h: -------------------------------------------------------------------------------- 1 | #pragma pack(1) 2 | -------------------------------------------------------------------------------- /include/pshpack2.h: -------------------------------------------------------------------------------- 1 | #pragma pack(2) 2 | -------------------------------------------------------------------------------- /include/pshpack4.h: -------------------------------------------------------------------------------- 1 | #pragma pack(4) 2 | -------------------------------------------------------------------------------- /include/pshpack8.h: -------------------------------------------------------------------------------- 1 | #pragma pack(8) 2 | -------------------------------------------------------------------------------- /include/uisyscall.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemccormack/ring3k/HEAD/include/uisyscall.h -------------------------------------------------------------------------------- /include/windef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemccormack/ring3k/HEAD/include/windef.h -------------------------------------------------------------------------------- /include/wingdi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemccormack/ring3k/HEAD/include/wingdi.h -------------------------------------------------------------------------------- /include/winioctl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemccormack/ring3k/HEAD/include/winioctl.h -------------------------------------------------------------------------------- /include/winnt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemccormack/ring3k/HEAD/include/winnt.h -------------------------------------------------------------------------------- /include/winternl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemccormack/ring3k/HEAD/include/winternl.h -------------------------------------------------------------------------------- /include/winuser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemccormack/ring3k/HEAD/include/winuser.h -------------------------------------------------------------------------------- /install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemccormack/ring3k/HEAD/install-sh -------------------------------------------------------------------------------- /kernel/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemccormack/ring3k/HEAD/kernel/.gitignore -------------------------------------------------------------------------------- /kernel/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemccormack/ring3k/HEAD/kernel/Makefile.in -------------------------------------------------------------------------------- /kernel/alloc_bitmap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemccormack/ring3k/HEAD/kernel/alloc_bitmap.cpp -------------------------------------------------------------------------------- /kernel/alloc_bitmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemccormack/ring3k/HEAD/kernel/alloc_bitmap.h -------------------------------------------------------------------------------- /kernel/atom.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemccormack/ring3k/HEAD/kernel/atom.cpp -------------------------------------------------------------------------------- /kernel/bitmap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemccormack/ring3k/HEAD/kernel/bitmap.cpp -------------------------------------------------------------------------------- /kernel/block.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemccormack/ring3k/HEAD/kernel/block.cpp -------------------------------------------------------------------------------- /kernel/client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemccormack/ring3k/HEAD/kernel/client.c -------------------------------------------------------------------------------- /kernel/client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemccormack/ring3k/HEAD/kernel/client.h -------------------------------------------------------------------------------- /kernel/completion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemccormack/ring3k/HEAD/kernel/completion.cpp -------------------------------------------------------------------------------- /kernel/count_args.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemccormack/ring3k/HEAD/kernel/count_args.pl -------------------------------------------------------------------------------- /kernel/debug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemccormack/ring3k/HEAD/kernel/debug.cpp -------------------------------------------------------------------------------- /kernel/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemccormack/ring3k/HEAD/kernel/debug.h -------------------------------------------------------------------------------- /kernel/driver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemccormack/ring3k/HEAD/kernel/driver.cpp -------------------------------------------------------------------------------- /kernel/enc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemccormack/ring3k/HEAD/kernel/enc.c -------------------------------------------------------------------------------- /kernel/event.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemccormack/ring3k/HEAD/kernel/event.cpp -------------------------------------------------------------------------------- /kernel/event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemccormack/ring3k/HEAD/kernel/event.h -------------------------------------------------------------------------------- /kernel/fiber.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemccormack/ring3k/HEAD/kernel/fiber.cpp -------------------------------------------------------------------------------- /kernel/fiber.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemccormack/ring3k/HEAD/kernel/fiber.h -------------------------------------------------------------------------------- /kernel/fiber_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemccormack/ring3k/HEAD/kernel/fiber_test.cpp -------------------------------------------------------------------------------- /kernel/file.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemccormack/ring3k/HEAD/kernel/file.cpp -------------------------------------------------------------------------------- /kernel/file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemccormack/ring3k/HEAD/kernel/file.h -------------------------------------------------------------------------------- /kernel/job.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemccormack/ring3k/HEAD/kernel/job.cpp -------------------------------------------------------------------------------- /kernel/kthread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemccormack/ring3k/HEAD/kernel/kthread.cpp -------------------------------------------------------------------------------- /kernel/list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemccormack/ring3k/HEAD/kernel/list.h -------------------------------------------------------------------------------- /kernel/mailslot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemccormack/ring3k/HEAD/kernel/mailslot.cpp -------------------------------------------------------------------------------- /kernel/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemccormack/ring3k/HEAD/kernel/main.cpp -------------------------------------------------------------------------------- /kernel/mem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemccormack/ring3k/HEAD/kernel/mem.cpp -------------------------------------------------------------------------------- /kernel/mem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemccormack/ring3k/HEAD/kernel/mem.h -------------------------------------------------------------------------------- /kernel/message.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemccormack/ring3k/HEAD/kernel/message.cpp -------------------------------------------------------------------------------- /kernel/message.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemccormack/ring3k/HEAD/kernel/message.h -------------------------------------------------------------------------------- /kernel/mutant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemccormack/ring3k/HEAD/kernel/mutant.cpp -------------------------------------------------------------------------------- /kernel/namedpipe.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemccormack/ring3k/HEAD/kernel/namedpipe.cpp -------------------------------------------------------------------------------- /kernel/ntcall.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemccormack/ring3k/HEAD/kernel/ntcall.cpp -------------------------------------------------------------------------------- /kernel/ntcall.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemccormack/ring3k/HEAD/kernel/ntcall.h -------------------------------------------------------------------------------- /kernel/ntgdi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemccormack/ring3k/HEAD/kernel/ntgdi.cpp -------------------------------------------------------------------------------- /kernel/ntuser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemccormack/ring3k/HEAD/kernel/ntuser.cpp -------------------------------------------------------------------------------- /kernel/ntwin32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemccormack/ring3k/HEAD/kernel/ntwin32.h -------------------------------------------------------------------------------- /kernel/null_display.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemccormack/ring3k/HEAD/kernel/null_display.cpp -------------------------------------------------------------------------------- /kernel/null_display.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemccormack/ring3k/HEAD/kernel/null_display.h -------------------------------------------------------------------------------- /kernel/objdir.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemccormack/ring3k/HEAD/kernel/objdir.cpp -------------------------------------------------------------------------------- /kernel/objdir.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemccormack/ring3k/HEAD/kernel/objdir.h -------------------------------------------------------------------------------- /kernel/object.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemccormack/ring3k/HEAD/kernel/object.cpp -------------------------------------------------------------------------------- /kernel/object.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemccormack/ring3k/HEAD/kernel/object.h -------------------------------------------------------------------------------- /kernel/object.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemccormack/ring3k/HEAD/kernel/object.inl -------------------------------------------------------------------------------- /kernel/platform.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemccormack/ring3k/HEAD/kernel/platform.cpp -------------------------------------------------------------------------------- /kernel/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemccormack/ring3k/HEAD/kernel/platform.h -------------------------------------------------------------------------------- /kernel/port.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemccormack/ring3k/HEAD/kernel/port.cpp -------------------------------------------------------------------------------- /kernel/process.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemccormack/ring3k/HEAD/kernel/process.cpp -------------------------------------------------------------------------------- /kernel/process.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemccormack/ring3k/HEAD/kernel/process.h -------------------------------------------------------------------------------- /kernel/profile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemccormack/ring3k/HEAD/kernel/profile.cpp -------------------------------------------------------------------------------- /kernel/ptrace_base.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemccormack/ring3k/HEAD/kernel/ptrace_base.cpp -------------------------------------------------------------------------------- /kernel/ptrace_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemccormack/ring3k/HEAD/kernel/ptrace_base.h -------------------------------------------------------------------------------- /kernel/ptrace_if.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemccormack/ring3k/HEAD/kernel/ptrace_if.c -------------------------------------------------------------------------------- /kernel/ptrace_if.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemccormack/ring3k/HEAD/kernel/ptrace_if.h -------------------------------------------------------------------------------- /kernel/queue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemccormack/ring3k/HEAD/kernel/queue.cpp -------------------------------------------------------------------------------- /kernel/queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemccormack/ring3k/HEAD/kernel/queue.h -------------------------------------------------------------------------------- /kernel/random.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemccormack/ring3k/HEAD/kernel/random.cpp -------------------------------------------------------------------------------- /kernel/reg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemccormack/ring3k/HEAD/kernel/reg.cpp -------------------------------------------------------------------------------- /kernel/region.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemccormack/ring3k/HEAD/kernel/region.cpp -------------------------------------------------------------------------------- /kernel/region.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemccormack/ring3k/HEAD/kernel/region.h -------------------------------------------------------------------------------- /kernel/sdl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemccormack/ring3k/HEAD/kernel/sdl.cpp -------------------------------------------------------------------------------- /kernel/sdl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemccormack/ring3k/HEAD/kernel/sdl.h -------------------------------------------------------------------------------- /kernel/section.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemccormack/ring3k/HEAD/kernel/section.cpp -------------------------------------------------------------------------------- /kernel/section.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemccormack/ring3k/HEAD/kernel/section.h -------------------------------------------------------------------------------- /kernel/semaphore.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemccormack/ring3k/HEAD/kernel/semaphore.cpp -------------------------------------------------------------------------------- /kernel/skas.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemccormack/ring3k/HEAD/kernel/skas.cpp -------------------------------------------------------------------------------- /kernel/spy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemccormack/ring3k/HEAD/kernel/spy.cpp -------------------------------------------------------------------------------- /kernel/spy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemccormack/ring3k/HEAD/kernel/spy.h -------------------------------------------------------------------------------- /kernel/symlink.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemccormack/ring3k/HEAD/kernel/symlink.cpp -------------------------------------------------------------------------------- /kernel/symlink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemccormack/ring3k/HEAD/kernel/symlink.h -------------------------------------------------------------------------------- /kernel/syscall.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemccormack/ring3k/HEAD/kernel/syscall.cpp -------------------------------------------------------------------------------- /kernel/syscall_stat.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemccormack/ring3k/HEAD/kernel/syscall_stat.pl -------------------------------------------------------------------------------- /kernel/thread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemccormack/ring3k/HEAD/kernel/thread.cpp -------------------------------------------------------------------------------- /kernel/thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemccormack/ring3k/HEAD/kernel/thread.h -------------------------------------------------------------------------------- /kernel/timer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemccormack/ring3k/HEAD/kernel/timer.cpp -------------------------------------------------------------------------------- /kernel/timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemccormack/ring3k/HEAD/kernel/timer.h -------------------------------------------------------------------------------- /kernel/token.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemccormack/ring3k/HEAD/kernel/token.cpp -------------------------------------------------------------------------------- /kernel/token.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemccormack/ring3k/HEAD/kernel/token.h -------------------------------------------------------------------------------- /kernel/tt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemccormack/ring3k/HEAD/kernel/tt.cpp -------------------------------------------------------------------------------- /kernel/unicode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemccormack/ring3k/HEAD/kernel/unicode.cpp -------------------------------------------------------------------------------- /kernel/unicode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemccormack/ring3k/HEAD/kernel/unicode.h -------------------------------------------------------------------------------- /kernel/win.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemccormack/ring3k/HEAD/kernel/win.h -------------------------------------------------------------------------------- /kernel/win32mgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemccormack/ring3k/HEAD/kernel/win32mgr.h -------------------------------------------------------------------------------- /libmspack/.gitignore: -------------------------------------------------------------------------------- 1 | .*.d 2 | *.o 3 | Makefile 4 | -------------------------------------------------------------------------------- /libmspack/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemccormack/ring3k/HEAD/libmspack/Makefile.in -------------------------------------------------------------------------------- /libmspack/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemccormack/ring3k/HEAD/libmspack/README -------------------------------------------------------------------------------- /libmspack/cab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemccormack/ring3k/HEAD/libmspack/cab.h -------------------------------------------------------------------------------- /libmspack/cabc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemccormack/ring3k/HEAD/libmspack/cabc.c -------------------------------------------------------------------------------- /libmspack/cabd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemccormack/ring3k/HEAD/libmspack/cabd.c -------------------------------------------------------------------------------- /libmspack/chm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemccormack/ring3k/HEAD/libmspack/chm.h -------------------------------------------------------------------------------- /libmspack/chmc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemccormack/ring3k/HEAD/libmspack/chmc.c -------------------------------------------------------------------------------- /libmspack/chmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemccormack/ring3k/HEAD/libmspack/chmd.c -------------------------------------------------------------------------------- /libmspack/des.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemccormack/ring3k/HEAD/libmspack/des.h -------------------------------------------------------------------------------- /libmspack/hlp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemccormack/ring3k/HEAD/libmspack/hlp.h -------------------------------------------------------------------------------- /libmspack/hlpc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemccormack/ring3k/HEAD/libmspack/hlpc.c -------------------------------------------------------------------------------- /libmspack/hlpd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemccormack/ring3k/HEAD/libmspack/hlpd.c -------------------------------------------------------------------------------- /libmspack/kwaj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemccormack/ring3k/HEAD/libmspack/kwaj.h -------------------------------------------------------------------------------- /libmspack/kwajc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemccormack/ring3k/HEAD/libmspack/kwajc.c -------------------------------------------------------------------------------- /libmspack/kwajd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemccormack/ring3k/HEAD/libmspack/kwajd.c -------------------------------------------------------------------------------- /libmspack/lit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemccormack/ring3k/HEAD/libmspack/lit.h -------------------------------------------------------------------------------- /libmspack/litc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemccormack/ring3k/HEAD/libmspack/litc.c -------------------------------------------------------------------------------- /libmspack/litd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemccormack/ring3k/HEAD/libmspack/litd.c -------------------------------------------------------------------------------- /libmspack/lzss.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemccormack/ring3k/HEAD/libmspack/lzss.h -------------------------------------------------------------------------------- /libmspack/lzx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemccormack/ring3k/HEAD/libmspack/lzx.h -------------------------------------------------------------------------------- /libmspack/lzxc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemccormack/ring3k/HEAD/libmspack/lzxc.c -------------------------------------------------------------------------------- /libmspack/lzxd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemccormack/ring3k/HEAD/libmspack/lzxd.c -------------------------------------------------------------------------------- /libmspack/mspack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemccormack/ring3k/HEAD/libmspack/mspack.h -------------------------------------------------------------------------------- /libmspack/mszip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemccormack/ring3k/HEAD/libmspack/mszip.h -------------------------------------------------------------------------------- /libmspack/mszipc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemccormack/ring3k/HEAD/libmspack/mszipc.c -------------------------------------------------------------------------------- /libmspack/mszipd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemccormack/ring3k/HEAD/libmspack/mszipd.c -------------------------------------------------------------------------------- /libmspack/qtm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemccormack/ring3k/HEAD/libmspack/qtm.h -------------------------------------------------------------------------------- /libmspack/qtmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemccormack/ring3k/HEAD/libmspack/qtmd.c -------------------------------------------------------------------------------- /libmspack/sha.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemccormack/ring3k/HEAD/libmspack/sha.h -------------------------------------------------------------------------------- /libmspack/system.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemccormack/ring3k/HEAD/libmspack/system.c -------------------------------------------------------------------------------- /libmspack/system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemccormack/ring3k/HEAD/libmspack/system.h -------------------------------------------------------------------------------- /libmspack/szdd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemccormack/ring3k/HEAD/libmspack/szdd.h -------------------------------------------------------------------------------- /libmspack/szddc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemccormack/ring3k/HEAD/libmspack/szddc.c -------------------------------------------------------------------------------- /libmspack/szddd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemccormack/ring3k/HEAD/libmspack/szddd.c -------------------------------------------------------------------------------- /libntreg/.gitignore: -------------------------------------------------------------------------------- 1 | *.o 2 | *.a 3 | .*.d 4 | -------------------------------------------------------------------------------- /libntreg/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemccormack/ring3k/HEAD/libntreg/Makefile.in -------------------------------------------------------------------------------- /libntreg/ntreg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemccormack/ring3k/HEAD/libntreg/ntreg.c -------------------------------------------------------------------------------- /libntreg/ntreg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemccormack/ring3k/HEAD/libntreg/ntreg.h -------------------------------------------------------------------------------- /libudis86/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemccormack/ring3k/HEAD/libudis86/.gitignore -------------------------------------------------------------------------------- /libudis86/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemccormack/ring3k/HEAD/libudis86/Makefile.in -------------------------------------------------------------------------------- /libudis86/decode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemccormack/ring3k/HEAD/libudis86/decode.c -------------------------------------------------------------------------------- /libudis86/extern.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemccormack/ring3k/HEAD/libudis86/extern.h -------------------------------------------------------------------------------- /libudis86/input.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemccormack/ring3k/HEAD/libudis86/input.c -------------------------------------------------------------------------------- /libudis86/input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemccormack/ring3k/HEAD/libudis86/input.h -------------------------------------------------------------------------------- /libudis86/mnemonics.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemccormack/ring3k/HEAD/libudis86/mnemonics.dat -------------------------------------------------------------------------------- /libudis86/mnemonics.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemccormack/ring3k/HEAD/libudis86/mnemonics.pl -------------------------------------------------------------------------------- /libudis86/opcmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemccormack/ring3k/HEAD/libudis86/opcmap.c -------------------------------------------------------------------------------- /libudis86/opcmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemccormack/ring3k/HEAD/libudis86/opcmap.h -------------------------------------------------------------------------------- /libudis86/syn-att.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemccormack/ring3k/HEAD/libudis86/syn-att.c -------------------------------------------------------------------------------- /libudis86/syn-intel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemccormack/ring3k/HEAD/libudis86/syn-intel.c -------------------------------------------------------------------------------- /libudis86/syn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemccormack/ring3k/HEAD/libudis86/syn.c -------------------------------------------------------------------------------- /libudis86/syn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemccormack/ring3k/HEAD/libudis86/syn.h -------------------------------------------------------------------------------- /libudis86/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemccormack/ring3k/HEAD/libudis86/types.h -------------------------------------------------------------------------------- /libudis86/udis86.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemccormack/ring3k/HEAD/libudis86/udis86.c -------------------------------------------------------------------------------- /packagemap.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemccormack/ring3k/HEAD/packagemap.xml -------------------------------------------------------------------------------- /programs/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemccormack/ring3k/HEAD/programs/Makefile.in -------------------------------------------------------------------------------- /programs/clock/.gitignore: -------------------------------------------------------------------------------- 1 | .*.d 2 | Makefile 3 | clock.exe 4 | -------------------------------------------------------------------------------- /programs/clock/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemccormack/ring3k/HEAD/programs/clock/Makefile.in -------------------------------------------------------------------------------- /programs/clock/clock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemccormack/ring3k/HEAD/programs/clock/clock.c -------------------------------------------------------------------------------- /programs/minitris/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemccormack/ring3k/HEAD/programs/minitris/.gitignore -------------------------------------------------------------------------------- /programs/minitris/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemccormack/ring3k/HEAD/programs/minitris/Makefile.in -------------------------------------------------------------------------------- /programs/minitris/minitris.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemccormack/ring3k/HEAD/programs/minitris/minitris.c -------------------------------------------------------------------------------- /programs/minshell/.gitignore: -------------------------------------------------------------------------------- 1 | *.exe 2 | .*.d 3 | -------------------------------------------------------------------------------- /programs/minshell/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemccormack/ring3k/HEAD/programs/minshell/Makefile.in -------------------------------------------------------------------------------- /programs/minshell/minshell.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemccormack/ring3k/HEAD/programs/minshell/minshell.c -------------------------------------------------------------------------------- /programs/pixels/.gitignore: -------------------------------------------------------------------------------- 1 | .*.d 2 | *.exe 3 | *.dll 4 | -------------------------------------------------------------------------------- /programs/pixels/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemccormack/ring3k/HEAD/programs/pixels/Makefile.in -------------------------------------------------------------------------------- /programs/pixels/pixels.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemccormack/ring3k/HEAD/programs/pixels/pixels.c -------------------------------------------------------------------------------- /programs/winemine/.gitignore: -------------------------------------------------------------------------------- 1 | *.res 2 | *.exe 3 | *.o.d 4 | -------------------------------------------------------------------------------- /programs/winemine/Cs.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemccormack/ring3k/HEAD/programs/winemine/Cs.rc -------------------------------------------------------------------------------- /programs/winemine/Da.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemccormack/ring3k/HEAD/programs/winemine/Da.rc -------------------------------------------------------------------------------- /programs/winemine/De.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemccormack/ring3k/HEAD/programs/winemine/De.rc -------------------------------------------------------------------------------- /programs/winemine/En.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemccormack/ring3k/HEAD/programs/winemine/En.rc -------------------------------------------------------------------------------- /programs/winemine/Es.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemccormack/ring3k/HEAD/programs/winemine/Es.rc -------------------------------------------------------------------------------- /programs/winemine/Fi.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemccormack/ring3k/HEAD/programs/winemine/Fi.rc -------------------------------------------------------------------------------- /programs/winemine/Fr.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemccormack/ring3k/HEAD/programs/winemine/Fr.rc -------------------------------------------------------------------------------- /programs/winemine/It.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemccormack/ring3k/HEAD/programs/winemine/It.rc -------------------------------------------------------------------------------- /programs/winemine/Ja.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemccormack/ring3k/HEAD/programs/winemine/Ja.rc -------------------------------------------------------------------------------- /programs/winemine/Ko.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemccormack/ring3k/HEAD/programs/winemine/Ko.rc -------------------------------------------------------------------------------- /programs/winemine/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemccormack/ring3k/HEAD/programs/winemine/Makefile.in -------------------------------------------------------------------------------- /programs/winemine/Nl.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemccormack/ring3k/HEAD/programs/winemine/Nl.rc -------------------------------------------------------------------------------- /programs/winemine/No.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemccormack/ring3k/HEAD/programs/winemine/No.rc -------------------------------------------------------------------------------- /programs/winemine/Pl.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemccormack/ring3k/HEAD/programs/winemine/Pl.rc -------------------------------------------------------------------------------- /programs/winemine/Pt.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemccormack/ring3k/HEAD/programs/winemine/Pt.rc -------------------------------------------------------------------------------- /programs/winemine/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemccormack/ring3k/HEAD/programs/winemine/README -------------------------------------------------------------------------------- /programs/winemine/Ro.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemccormack/ring3k/HEAD/programs/winemine/Ro.rc -------------------------------------------------------------------------------- /programs/winemine/Ru.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemccormack/ring3k/HEAD/programs/winemine/Ru.rc -------------------------------------------------------------------------------- /programs/winemine/Si.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemccormack/ring3k/HEAD/programs/winemine/Si.rc -------------------------------------------------------------------------------- /programs/winemine/Tr.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemccormack/ring3k/HEAD/programs/winemine/Tr.rc -------------------------------------------------------------------------------- /programs/winemine/Zh.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemccormack/ring3k/HEAD/programs/winemine/Zh.rc -------------------------------------------------------------------------------- /programs/winemine/dialog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemccormack/ring3k/HEAD/programs/winemine/dialog.c -------------------------------------------------------------------------------- /programs/winemine/faces.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemccormack/ring3k/HEAD/programs/winemine/faces.bmp -------------------------------------------------------------------------------- /programs/winemine/leds.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemccormack/ring3k/HEAD/programs/winemine/leds.bmp -------------------------------------------------------------------------------- /programs/winemine/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemccormack/ring3k/HEAD/programs/winemine/main.c -------------------------------------------------------------------------------- /programs/winemine/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemccormack/ring3k/HEAD/programs/winemine/main.h -------------------------------------------------------------------------------- /programs/winemine/mines.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemccormack/ring3k/HEAD/programs/winemine/mines.bmp -------------------------------------------------------------------------------- /programs/winemine/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemccormack/ring3k/HEAD/programs/winemine/resource.h -------------------------------------------------------------------------------- /programs/winemine/rsrc.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemccormack/ring3k/HEAD/programs/winemine/rsrc.rc -------------------------------------------------------------------------------- /programs/winemine/winemine.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemccormack/ring3k/HEAD/programs/winemine/winemine.ico -------------------------------------------------------------------------------- /programs/winemine/winemine.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemccormack/ring3k/HEAD/programs/winemine/winemine.svg -------------------------------------------------------------------------------- /programs/winlogon/.gitignore: -------------------------------------------------------------------------------- 1 | .*.d 2 | *.exe 3 | *.dll 4 | -------------------------------------------------------------------------------- /programs/winlogon/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemccormack/ring3k/HEAD/programs/winlogon/Makefile.in -------------------------------------------------------------------------------- /programs/winlogon/winlogon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemccormack/ring3k/HEAD/programs/winlogon/winlogon.c -------------------------------------------------------------------------------- /regedit/.gitignore: -------------------------------------------------------------------------------- 1 | Makefile.qmake 2 | regedit 3 | *.o 4 | moc_*.cpp 5 | -------------------------------------------------------------------------------- /regedit/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemccormack/ring3k/HEAD/regedit/Makefile.in -------------------------------------------------------------------------------- /regedit/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemccormack/ring3k/HEAD/regedit/main.cpp -------------------------------------------------------------------------------- /regedit/regedit.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemccormack/ring3k/HEAD/regedit/regedit.pro -------------------------------------------------------------------------------- /regedit/registryeditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemccormack/ring3k/HEAD/regedit/registryeditor.cpp -------------------------------------------------------------------------------- /regedit/registryeditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemccormack/ring3k/HEAD/regedit/registryeditor.h -------------------------------------------------------------------------------- /regedit/registryitem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemccormack/ring3k/HEAD/regedit/registryitem.cpp -------------------------------------------------------------------------------- /regedit/registryitem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemccormack/ring3k/HEAD/regedit/registryitem.h -------------------------------------------------------------------------------- /regedit/registrymodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemccormack/ring3k/HEAD/regedit/registrymodel.cpp -------------------------------------------------------------------------------- /regedit/registrymodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemccormack/ring3k/HEAD/regedit/registrymodel.h -------------------------------------------------------------------------------- /regedit/registrytreeview.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemccormack/ring3k/HEAD/regedit/registrytreeview.cpp -------------------------------------------------------------------------------- /regedit/registrytreeview.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemccormack/ring3k/HEAD/regedit/registrytreeview.h -------------------------------------------------------------------------------- /regedit/registryvalue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemccormack/ring3k/HEAD/regedit/registryvalue.cpp -------------------------------------------------------------------------------- /regedit/registryvalue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemccormack/ring3k/HEAD/regedit/registryvalue.h -------------------------------------------------------------------------------- /ring3k-setup.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemccormack/ring3k/HEAD/ring3k-setup.in -------------------------------------------------------------------------------- /ring3k.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemccormack/ring3k/HEAD/ring3k.in -------------------------------------------------------------------------------- /runtest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemccormack/ring3k/HEAD/runtest -------------------------------------------------------------------------------- /tests/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemccormack/ring3k/HEAD/tests/.gitignore -------------------------------------------------------------------------------- /tests/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemccormack/ring3k/HEAD/tests/Makefile.in -------------------------------------------------------------------------------- /tests/atom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemccormack/ring3k/HEAD/tests/atom.c -------------------------------------------------------------------------------- /tests/completion.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemccormack/ring3k/HEAD/tests/completion.c -------------------------------------------------------------------------------- /tests/device.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemccormack/ring3k/HEAD/tests/device.c -------------------------------------------------------------------------------- /tests/event.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemccormack/ring3k/HEAD/tests/event.c -------------------------------------------------------------------------------- /tests/eventpair.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemccormack/ring3k/HEAD/tests/eventpair.c -------------------------------------------------------------------------------- /tests/file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemccormack/ring3k/HEAD/tests/file.c -------------------------------------------------------------------------------- /tests/font.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemccormack/ring3k/HEAD/tests/font.c -------------------------------------------------------------------------------- /tests/gdi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemccormack/ring3k/HEAD/tests/gdi.c -------------------------------------------------------------------------------- /tests/gen_syscalls.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemccormack/ring3k/HEAD/tests/gen_syscalls.pl -------------------------------------------------------------------------------- /tests/heap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemccormack/ring3k/HEAD/tests/heap.c -------------------------------------------------------------------------------- /tests/hostnt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemccormack/ring3k/HEAD/tests/hostnt.c -------------------------------------------------------------------------------- /tests/job.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemccormack/ring3k/HEAD/tests/job.c -------------------------------------------------------------------------------- /tests/key.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemccormack/ring3k/HEAD/tests/key.c -------------------------------------------------------------------------------- /tests/log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemccormack/ring3k/HEAD/tests/log.c -------------------------------------------------------------------------------- /tests/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemccormack/ring3k/HEAD/tests/log.h -------------------------------------------------------------------------------- /tests/mailslot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemccormack/ring3k/HEAD/tests/mailslot.c -------------------------------------------------------------------------------- /tests/mutant.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemccormack/ring3k/HEAD/tests/mutant.c -------------------------------------------------------------------------------- /tests/native.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemccormack/ring3k/HEAD/tests/native.c -------------------------------------------------------------------------------- /tests/ntapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemccormack/ring3k/HEAD/tests/ntapi.h -------------------------------------------------------------------------------- /tests/ntwin32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemccormack/ring3k/HEAD/tests/ntwin32.h -------------------------------------------------------------------------------- /tests/object.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemccormack/ring3k/HEAD/tests/object.c -------------------------------------------------------------------------------- /tests/pipe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemccormack/ring3k/HEAD/tests/pipe.c -------------------------------------------------------------------------------- /tests/port.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemccormack/ring3k/HEAD/tests/port.c -------------------------------------------------------------------------------- /tests/process.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemccormack/ring3k/HEAD/tests/process.c -------------------------------------------------------------------------------- /tests/ps.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemccormack/ring3k/HEAD/tests/ps.c -------------------------------------------------------------------------------- /tests/reg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemccormack/ring3k/HEAD/tests/reg.c -------------------------------------------------------------------------------- /tests/rtlapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemccormack/ring3k/HEAD/tests/rtlapi.h -------------------------------------------------------------------------------- /tests/runnt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemccormack/ring3k/HEAD/tests/runnt.c -------------------------------------------------------------------------------- /tests/section.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemccormack/ring3k/HEAD/tests/section.c -------------------------------------------------------------------------------- /tests/seh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemccormack/ring3k/HEAD/tests/seh.c -------------------------------------------------------------------------------- /tests/sema.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemccormack/ring3k/HEAD/tests/sema.c -------------------------------------------------------------------------------- /tests/smss.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemccormack/ring3k/HEAD/tests/smss.c -------------------------------------------------------------------------------- /tests/syscall.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemccormack/ring3k/HEAD/tests/syscall.c -------------------------------------------------------------------------------- /tests/thread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemccormack/ring3k/HEAD/tests/thread.c -------------------------------------------------------------------------------- /tests/timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemccormack/ring3k/HEAD/tests/timer.c -------------------------------------------------------------------------------- /tests/token.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemccormack/ring3k/HEAD/tests/token.c -------------------------------------------------------------------------------- /tests/user.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemccormack/ring3k/HEAD/tests/user.c -------------------------------------------------------------------------------- /tests/virtual.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemccormack/ring3k/HEAD/tests/virtual.c -------------------------------------------------------------------------------- /tests/win2k/ntwin32.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemccormack/ring3k/HEAD/tests/win2k/ntwin32.in -------------------------------------------------------------------------------- /tests/wine-atom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemccormack/ring3k/HEAD/tests/wine-atom.c -------------------------------------------------------------------------------- /tests/wine-port.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemccormack/ring3k/HEAD/tests/wine-port.c -------------------------------------------------------------------------------- /tests/winxp/ntwin32.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemccormack/ring3k/HEAD/tests/winxp/ntwin32.in -------------------------------------------------------------------------------- /tools/.gitignore: -------------------------------------------------------------------------------- 1 | .*.d 2 | *.exe 3 | *.dll 4 | -------------------------------------------------------------------------------- /tools/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemccormack/ring3k/HEAD/tools/Makefile.in -------------------------------------------------------------------------------- /tools/advapi32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemccormack/ring3k/HEAD/tools/advapi32.c -------------------------------------------------------------------------------- /tools/console.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemccormack/ring3k/HEAD/tools/console.c -------------------------------------------------------------------------------- /tools/dumphandles.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemccormack/ring3k/HEAD/tools/dumphandles.c -------------------------------------------------------------------------------- /tools/qdf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemccormack/ring3k/HEAD/tools/qdf.c -------------------------------------------------------------------------------- /tools/startcmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemccormack/ring3k/HEAD/tools/startcmd.c -------------------------------------------------------------------------------- /tools/track.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemccormack/ring3k/HEAD/tools/track.c -------------------------------------------------------------------------------- /unpack/.gitignore: -------------------------------------------------------------------------------- 1 | Makefile 2 | *.o 3 | ring3k-unpack 4 | -------------------------------------------------------------------------------- /unpack/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemccormack/ring3k/HEAD/unpack/Makefile.in -------------------------------------------------------------------------------- /unpack/unpack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemccormack/ring3k/HEAD/unpack/unpack.c --------------------------------------------------------------------------------