mirror of
https://foundry.openuru.org/gitblit/r/CWE-ou-minkata.git
synced 2025-07-14 02:27:40 -04:00
Replace hsStream::Open duplicated methods everywhere with a single plFileName interface
This commit is contained in:
@ -5514,8 +5514,8 @@ void NetCliAuthAccountActivateRequest (
|
||||
|
||||
//============================================================================
|
||||
void NetCliAuthFileListRequest (
|
||||
const wchar_t dir[],
|
||||
const wchar_t ext[],
|
||||
const wchar_t dir[],
|
||||
const wchar_t ext[],
|
||||
FNetCliAuthFileListRequestCallback callback,
|
||||
void * param
|
||||
) {
|
||||
@ -5530,7 +5530,7 @@ void NetCliAuthFileListRequest (
|
||||
|
||||
//============================================================================
|
||||
void NetCliAuthFileRequest (
|
||||
const wchar_t filename[],
|
||||
const wchar_t filename[],
|
||||
hsStream * writer,
|
||||
FNetCliAuthFileRequestCallback callback,
|
||||
void * param
|
||||
|
@ -348,7 +348,7 @@ void NetCliAuthGetEncryptionKey (
|
||||
// File List
|
||||
//============================================================================
|
||||
struct NetCliAuthFileInfo {
|
||||
wchar_t filename[MAX_PATH];
|
||||
wchar_t filename[MAX_PATH];
|
||||
unsigned filesize;
|
||||
};
|
||||
typedef void (*FNetCliAuthFileListRequestCallback)(
|
||||
@ -358,8 +358,8 @@ typedef void (*FNetCliAuthFileListRequestCallback)(
|
||||
unsigned infoCount
|
||||
);
|
||||
void NetCliAuthFileListRequest (
|
||||
const wchar_t dir[],
|
||||
const wchar_t ext[],
|
||||
const wchar_t dir[],
|
||||
const wchar_t ext[],
|
||||
FNetCliAuthFileListRequestCallback callback,
|
||||
void * param
|
||||
);
|
||||
@ -370,11 +370,11 @@ void NetCliAuthFileListRequest (
|
||||
typedef void (*FNetCliAuthFileRequestCallback)(
|
||||
ENetError result,
|
||||
void * param,
|
||||
const wchar_t filename[],
|
||||
const wchar_t filename[],
|
||||
hsStream * writer
|
||||
);
|
||||
void NetCliAuthFileRequest (
|
||||
const wchar_t filename[],
|
||||
const wchar_t filename[],
|
||||
hsStream * writer,
|
||||
FNetCliAuthFileRequestCallback callback,
|
||||
void * param
|
||||
|
@ -97,10 +97,10 @@ void NetCliFileRegisterBuildIdUpdate (FNetCliFileBuildIdUpdateCallback callback)
|
||||
// Manifest
|
||||
//============================================================================
|
||||
struct NetCliFileManifestEntry {
|
||||
wchar_t clientName[MAX_PATH]; // path and file on client side (for comparison)
|
||||
wchar_t downloadName[MAX_PATH]; // path and file on server side (for download)
|
||||
wchar_t md5[MAX_PATH];
|
||||
wchar_t md5compressed[MAX_PATH]; // md5 for the compressed file
|
||||
wchar_t clientName[MAX_PATH]; // path and file on client side (for comparison)
|
||||
wchar_t downloadName[MAX_PATH]; // path and file on server side (for download)
|
||||
wchar_t md5[MAX_PATH];
|
||||
wchar_t md5compressed[MAX_PATH]; // md5 for the compressed file
|
||||
unsigned fileSize;
|
||||
unsigned zipSize;
|
||||
unsigned flags;
|
||||
|
Reference in New Issue
Block a user