mirror of
https://github.com/1dot13/source.git
synced 2026-07-22 13:40:22 +02:00
Added all raknet headers for full raknet support Added Testclass "TestCB.cpp" which is a test implementation for raknet plugin "File List Transfer". We will use this plugin for file transfer in multiplayer git-svn-id: https://ja2svn.mooo.com/source/ja2/trunk/GameSource/ja2_v1.13/Build@2638 3b4a5df2-a311-0410-b5c6-a8a6f20db521
18 lines
397 B
C
18 lines
397 B
C
#ifndef __AUTOPATCHER_PATCH_CONTEXT_H
|
|
#define __AUTOPATCHER_PATCH_CONTEXT_H
|
|
|
|
enum PatchContext
|
|
{
|
|
PC_HASH_WITH_PATCH,
|
|
PC_WRITE_FILE,
|
|
PC_ERROR_FILE_WRITE_FAILURE,
|
|
PC_ERROR_PATCH_TARGET_MISSING,
|
|
PC_ERROR_PATCH_APPLICATION_FAILURE,
|
|
PC_ERROR_PATCH_RESULT_CHECKSUM_FAILURE,
|
|
PC_NOTICE_WILL_COPY_ON_RESTART,
|
|
PC_NOTICE_FILE_DOWNLOADED,
|
|
PC_NOTICE_FILE_DOWNLOADED_PATCH,
|
|
};
|
|
|
|
#endif
|