├── .gitignore ├── COMPUTER.ICO ├── FSPLUGIN.GID ├── FSPLUGIN.HLP ├── LICENCE ├── ReadMe.txt ├── StdAfx.cpp ├── StdAfx.h ├── adbfsplugin.cpp ├── adbfsplugin.def ├── adbfsplugin.h ├── adbfsplugin.rc ├── adbfsplugin.sln ├── adbfsplugin.vcxproj ├── adbhandler.cpp ├── adbhandler.h ├── bitmap1.bmp ├── cunicode.cpp ├── cunicode.h ├── icon2.ico ├── pluginst.inf └── resource.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sztupy/adbfsplugin/HEAD/.gitignore -------------------------------------------------------------------------------- /COMPUTER.ICO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sztupy/adbfsplugin/HEAD/COMPUTER.ICO -------------------------------------------------------------------------------- /FSPLUGIN.GID: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sztupy/adbfsplugin/HEAD/FSPLUGIN.GID -------------------------------------------------------------------------------- /FSPLUGIN.HLP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sztupy/adbfsplugin/HEAD/FSPLUGIN.HLP -------------------------------------------------------------------------------- /LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sztupy/adbfsplugin/HEAD/LICENCE -------------------------------------------------------------------------------- /ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sztupy/adbfsplugin/HEAD/ReadMe.txt -------------------------------------------------------------------------------- /StdAfx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sztupy/adbfsplugin/HEAD/StdAfx.cpp -------------------------------------------------------------------------------- /StdAfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sztupy/adbfsplugin/HEAD/StdAfx.h -------------------------------------------------------------------------------- /adbfsplugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sztupy/adbfsplugin/HEAD/adbfsplugin.cpp -------------------------------------------------------------------------------- /adbfsplugin.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sztupy/adbfsplugin/HEAD/adbfsplugin.def -------------------------------------------------------------------------------- /adbfsplugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sztupy/adbfsplugin/HEAD/adbfsplugin.h -------------------------------------------------------------------------------- /adbfsplugin.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sztupy/adbfsplugin/HEAD/adbfsplugin.rc -------------------------------------------------------------------------------- /adbfsplugin.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sztupy/adbfsplugin/HEAD/adbfsplugin.sln -------------------------------------------------------------------------------- /adbfsplugin.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sztupy/adbfsplugin/HEAD/adbfsplugin.vcxproj -------------------------------------------------------------------------------- /adbhandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sztupy/adbfsplugin/HEAD/adbhandler.cpp -------------------------------------------------------------------------------- /adbhandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sztupy/adbfsplugin/HEAD/adbhandler.h -------------------------------------------------------------------------------- /bitmap1.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sztupy/adbfsplugin/HEAD/bitmap1.bmp -------------------------------------------------------------------------------- /cunicode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sztupy/adbfsplugin/HEAD/cunicode.cpp -------------------------------------------------------------------------------- /cunicode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sztupy/adbfsplugin/HEAD/cunicode.h -------------------------------------------------------------------------------- /icon2.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sztupy/adbfsplugin/HEAD/icon2.ico -------------------------------------------------------------------------------- /pluginst.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sztupy/adbfsplugin/HEAD/pluginst.inf -------------------------------------------------------------------------------- /resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sztupy/adbfsplugin/HEAD/resource.h --------------------------------------------------------------------------------