├── .gitignore ├── Makefile ├── common ├── lspcommon.h ├── makefile └── provider.cpp ├── ifslsp ├── Makefile ├── extension.cpp ├── ifslsp.def ├── lspdef.h ├── lspguid.cpp ├── sockinfo.cpp └── spi.cpp ├── install ├── instlsp.cpp ├── instlsp.h ├── instlsp.rc ├── lspadd.cpp ├── lspdel.cpp ├── lspmap.cpp ├── lsputil.cpp ├── makefile └── prnpinfo.cpp ├── lsp.sln ├── nonifslsp ├── Makefile ├── asyncselect.cpp ├── extension.cpp ├── lspdef.h ├── lspguid.cpp ├── nonifslsp.def ├── overlap.cpp ├── sockinfo.cpp └── spi.cpp └── readme.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k1988/lsp/HEAD/.gitignore -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k1988/lsp/HEAD/Makefile -------------------------------------------------------------------------------- /common/lspcommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k1988/lsp/HEAD/common/lspcommon.h -------------------------------------------------------------------------------- /common/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k1988/lsp/HEAD/common/makefile -------------------------------------------------------------------------------- /common/provider.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k1988/lsp/HEAD/common/provider.cpp -------------------------------------------------------------------------------- /ifslsp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k1988/lsp/HEAD/ifslsp/Makefile -------------------------------------------------------------------------------- /ifslsp/extension.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k1988/lsp/HEAD/ifslsp/extension.cpp -------------------------------------------------------------------------------- /ifslsp/ifslsp.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k1988/lsp/HEAD/ifslsp/ifslsp.def -------------------------------------------------------------------------------- /ifslsp/lspdef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k1988/lsp/HEAD/ifslsp/lspdef.h -------------------------------------------------------------------------------- /ifslsp/lspguid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k1988/lsp/HEAD/ifslsp/lspguid.cpp -------------------------------------------------------------------------------- /ifslsp/sockinfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k1988/lsp/HEAD/ifslsp/sockinfo.cpp -------------------------------------------------------------------------------- /ifslsp/spi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k1988/lsp/HEAD/ifslsp/spi.cpp -------------------------------------------------------------------------------- /install/instlsp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k1988/lsp/HEAD/install/instlsp.cpp -------------------------------------------------------------------------------- /install/instlsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k1988/lsp/HEAD/install/instlsp.h -------------------------------------------------------------------------------- /install/instlsp.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k1988/lsp/HEAD/install/instlsp.rc -------------------------------------------------------------------------------- /install/lspadd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k1988/lsp/HEAD/install/lspadd.cpp -------------------------------------------------------------------------------- /install/lspdel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k1988/lsp/HEAD/install/lspdel.cpp -------------------------------------------------------------------------------- /install/lspmap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k1988/lsp/HEAD/install/lspmap.cpp -------------------------------------------------------------------------------- /install/lsputil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k1988/lsp/HEAD/install/lsputil.cpp -------------------------------------------------------------------------------- /install/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k1988/lsp/HEAD/install/makefile -------------------------------------------------------------------------------- /install/prnpinfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k1988/lsp/HEAD/install/prnpinfo.cpp -------------------------------------------------------------------------------- /lsp.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k1988/lsp/HEAD/lsp.sln -------------------------------------------------------------------------------- /nonifslsp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k1988/lsp/HEAD/nonifslsp/Makefile -------------------------------------------------------------------------------- /nonifslsp/asyncselect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k1988/lsp/HEAD/nonifslsp/asyncselect.cpp -------------------------------------------------------------------------------- /nonifslsp/extension.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k1988/lsp/HEAD/nonifslsp/extension.cpp -------------------------------------------------------------------------------- /nonifslsp/lspdef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k1988/lsp/HEAD/nonifslsp/lspdef.h -------------------------------------------------------------------------------- /nonifslsp/lspguid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k1988/lsp/HEAD/nonifslsp/lspguid.cpp -------------------------------------------------------------------------------- /nonifslsp/nonifslsp.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k1988/lsp/HEAD/nonifslsp/nonifslsp.def -------------------------------------------------------------------------------- /nonifslsp/overlap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k1988/lsp/HEAD/nonifslsp/overlap.cpp -------------------------------------------------------------------------------- /nonifslsp/sockinfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k1988/lsp/HEAD/nonifslsp/sockinfo.cpp -------------------------------------------------------------------------------- /nonifslsp/spi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k1988/lsp/HEAD/nonifslsp/spi.cpp -------------------------------------------------------------------------------- /readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k1988/lsp/HEAD/readme.txt --------------------------------------------------------------------------------