Updated INetChannelHandler interface and renamed/updated tier0 and vstdlib libs.

--HG--
rename : lib/linux/tier0_i486.so => lib/linux/libtier0.so
rename : lib/linux/vstdlib_i486.so => lib/linux/libvstdlib.so
This commit is contained in:
Scott Ehlert 2010-10-27 21:01:19 -07:00
parent 4547db69dc
commit 916da3c3a1
5 changed files with 5 additions and 3 deletions

BIN
lib/linux/libtier0.so Normal file

Binary file not shown.

BIN
lib/linux/libvstdlib.so Normal file

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -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 ) \