LeviLamina
Loading...
Searching...
No Matches
FileListProgress.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated forward declare list
6// clang-format off
7namespace RakNet { class FileList; }
8namespace RakNet { struct SystemAddress; }
9// clang-format on
10
11namespace RakNet {
12
14public:
15 // virtual functions
16 // NOLINTBEGIN
17 virtual ~FileListProgress() = default;
18
19 virtual void OnAddFilesFromDirectoryStarted(::RakNet::FileList*, char*);
20
21 virtual void OnDirectory(::RakNet::FileList*, char*, uint);
22
23 virtual void OnFile(::RakNet::FileList*, char*, char*, uint);
24
25 virtual void OnFilePush(char const*, uint, uint, uint, bool, ::RakNet::SystemAddress, ushort);
26
27 virtual void OnFilePushesComplete(::RakNet::SystemAddress, ushort);
28
29 virtual void OnSendAborted(::RakNet::SystemAddress);
30 // NOLINTEND
31
32public:
33 // virtual function thunks
34 // NOLINTBEGIN
35
36 // NOLINTEND
37};
38
39} // namespace RakNet
Definition FileListProgress.h:13
Definition FileList.h:7
Definition SystemAddress.h:7