diff --git a/lib/linux/libtier0.so b/lib/linux/libtier0.so new file mode 100644 index 00000000..53ea39dc Binary files /dev/null and b/lib/linux/libtier0.so differ diff --git a/lib/linux/libvstdlib.so b/lib/linux/libvstdlib.so new file mode 100644 index 00000000..52eb1ad0 Binary files /dev/null and b/lib/linux/libvstdlib.so differ diff --git a/lib/linux/tier0_i486.so b/lib/linux/tier0_i486.so deleted file mode 100644 index 714a8276..00000000 Binary files a/lib/linux/tier0_i486.so and /dev/null differ diff --git a/lib/linux/vstdlib_i486.so b/lib/linux/vstdlib_i486.so deleted file mode 100644 index e40952e2..00000000 Binary files a/lib/linux/vstdlib_i486.so and /dev/null differ diff --git a/public/inetmsghandler.h b/public/inetmsghandler.h index 66bb0fcf..449519d9 100644 --- a/public/inetmsghandler.h +++ b/public/inetmsghandler.h @@ -34,11 +34,13 @@ public: virtual void PacketEnd( void ) = 0; // all messages has been parsed - virtual void FileRequested(const char *fileName, unsigned int transferID) = 0; // other side request a file for download + virtual void FileRequested(const char *fileName, unsigned int transferID, bool isReplayDemoFile) = 0; // other side request a file for download - virtual void FileReceived(const char *fileName, unsigned int transferID) = 0; // we received a file + virtual void FileReceived(const char *fileName, unsigned int transferID, bool isReplayDemoFile) = 0; // we received a file - virtual void FileDenied(const char *fileName, unsigned int transferID) = 0; // a file request was denied by other side + virtual void FileDenied(const char *fileName, unsigned int transferID, bool isReplayDemoFile) = 0; // a file request was denied by other side + + virtual void FileSent(const char *fileName, unsigned int transferID, bool isReplayDemoFile) = 0; // we sent a file }; #define PROCESS_NET_MESSAGE( name ) \