├── .gitignore ├── Installer ├── Installer.vcxproj ├── Installer.vcxproj.filters ├── atalkwsh.h ├── instlsp.cpp ├── instlsp.h ├── lspadd.cpp ├── lspdel.cpp ├── lspmap.cpp ├── lsputil.cpp └── prnpinfo.cpp ├── NonIFS-LSP ├── NonIFS-LSP.vcxproj ├── NonIFS-LSP.vcxproj.filters ├── asyncselect.cpp ├── extension.cpp ├── lspdef.h ├── lspguid.cpp ├── overlap.cpp ├── sockinfo.cpp └── spi.cpp ├── WinLSP.def ├── WinLSP.sln ├── lspcommon.h └── provider.cpp /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnwarMohamed/WinLSP/HEAD/.gitignore -------------------------------------------------------------------------------- /Installer/Installer.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnwarMohamed/WinLSP/HEAD/Installer/Installer.vcxproj -------------------------------------------------------------------------------- /Installer/Installer.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnwarMohamed/WinLSP/HEAD/Installer/Installer.vcxproj.filters -------------------------------------------------------------------------------- /Installer/atalkwsh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnwarMohamed/WinLSP/HEAD/Installer/atalkwsh.h -------------------------------------------------------------------------------- /Installer/instlsp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnwarMohamed/WinLSP/HEAD/Installer/instlsp.cpp -------------------------------------------------------------------------------- /Installer/instlsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnwarMohamed/WinLSP/HEAD/Installer/instlsp.h -------------------------------------------------------------------------------- /Installer/lspadd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnwarMohamed/WinLSP/HEAD/Installer/lspadd.cpp -------------------------------------------------------------------------------- /Installer/lspdel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnwarMohamed/WinLSP/HEAD/Installer/lspdel.cpp -------------------------------------------------------------------------------- /Installer/lspmap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnwarMohamed/WinLSP/HEAD/Installer/lspmap.cpp -------------------------------------------------------------------------------- /Installer/lsputil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnwarMohamed/WinLSP/HEAD/Installer/lsputil.cpp -------------------------------------------------------------------------------- /Installer/prnpinfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnwarMohamed/WinLSP/HEAD/Installer/prnpinfo.cpp -------------------------------------------------------------------------------- /NonIFS-LSP/NonIFS-LSP.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnwarMohamed/WinLSP/HEAD/NonIFS-LSP/NonIFS-LSP.vcxproj -------------------------------------------------------------------------------- /NonIFS-LSP/NonIFS-LSP.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnwarMohamed/WinLSP/HEAD/NonIFS-LSP/NonIFS-LSP.vcxproj.filters -------------------------------------------------------------------------------- /NonIFS-LSP/asyncselect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnwarMohamed/WinLSP/HEAD/NonIFS-LSP/asyncselect.cpp -------------------------------------------------------------------------------- /NonIFS-LSP/extension.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnwarMohamed/WinLSP/HEAD/NonIFS-LSP/extension.cpp -------------------------------------------------------------------------------- /NonIFS-LSP/lspdef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnwarMohamed/WinLSP/HEAD/NonIFS-LSP/lspdef.h -------------------------------------------------------------------------------- /NonIFS-LSP/lspguid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnwarMohamed/WinLSP/HEAD/NonIFS-LSP/lspguid.cpp -------------------------------------------------------------------------------- /NonIFS-LSP/overlap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnwarMohamed/WinLSP/HEAD/NonIFS-LSP/overlap.cpp -------------------------------------------------------------------------------- /NonIFS-LSP/sockinfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnwarMohamed/WinLSP/HEAD/NonIFS-LSP/sockinfo.cpp -------------------------------------------------------------------------------- /NonIFS-LSP/spi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnwarMohamed/WinLSP/HEAD/NonIFS-LSP/spi.cpp -------------------------------------------------------------------------------- /WinLSP.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnwarMohamed/WinLSP/HEAD/WinLSP.def -------------------------------------------------------------------------------- /WinLSP.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnwarMohamed/WinLSP/HEAD/WinLSP.sln -------------------------------------------------------------------------------- /lspcommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnwarMohamed/WinLSP/HEAD/lspcommon.h -------------------------------------------------------------------------------- /provider.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnwarMohamed/WinLSP/HEAD/provider.cpp --------------------------------------------------------------------------------