├── FileManager ├── dirent.h ├── filemanager.cpp ├── filemanager.def └── makefile ├── LICENSE ├── PAWN ├── functions.h └── invoke.cpp ├── README.md ├── SDK ├── amx │ ├── amx.h │ ├── getch.c │ ├── getch.h │ └── sclinux.h ├── amxplugin.cpp ├── plugin.h └── plugincommon.h ├── filemanager.inc ├── pawn.json └── sample.pwn /FileManager/dirent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaTochNietDan/SA-MP-FileManager/HEAD/FileManager/dirent.h -------------------------------------------------------------------------------- /FileManager/filemanager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaTochNietDan/SA-MP-FileManager/HEAD/FileManager/filemanager.cpp -------------------------------------------------------------------------------- /FileManager/filemanager.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaTochNietDan/SA-MP-FileManager/HEAD/FileManager/filemanager.def -------------------------------------------------------------------------------- /FileManager/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaTochNietDan/SA-MP-FileManager/HEAD/FileManager/makefile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaTochNietDan/SA-MP-FileManager/HEAD/LICENSE -------------------------------------------------------------------------------- /PAWN/functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaTochNietDan/SA-MP-FileManager/HEAD/PAWN/functions.h -------------------------------------------------------------------------------- /PAWN/invoke.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaTochNietDan/SA-MP-FileManager/HEAD/PAWN/invoke.cpp -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaTochNietDan/SA-MP-FileManager/HEAD/README.md -------------------------------------------------------------------------------- /SDK/amx/amx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaTochNietDan/SA-MP-FileManager/HEAD/SDK/amx/amx.h -------------------------------------------------------------------------------- /SDK/amx/getch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaTochNietDan/SA-MP-FileManager/HEAD/SDK/amx/getch.c -------------------------------------------------------------------------------- /SDK/amx/getch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaTochNietDan/SA-MP-FileManager/HEAD/SDK/amx/getch.h -------------------------------------------------------------------------------- /SDK/amx/sclinux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaTochNietDan/SA-MP-FileManager/HEAD/SDK/amx/sclinux.h -------------------------------------------------------------------------------- /SDK/amxplugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaTochNietDan/SA-MP-FileManager/HEAD/SDK/amxplugin.cpp -------------------------------------------------------------------------------- /SDK/plugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaTochNietDan/SA-MP-FileManager/HEAD/SDK/plugin.h -------------------------------------------------------------------------------- /SDK/plugincommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaTochNietDan/SA-MP-FileManager/HEAD/SDK/plugincommon.h -------------------------------------------------------------------------------- /filemanager.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaTochNietDan/SA-MP-FileManager/HEAD/filemanager.inc -------------------------------------------------------------------------------- /pawn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaTochNietDan/SA-MP-FileManager/HEAD/pawn.json -------------------------------------------------------------------------------- /sample.pwn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaTochNietDan/SA-MP-FileManager/HEAD/sample.pwn --------------------------------------------------------------------------------