mirror of
https://github.com/hrydgard/ppsspp.git
synced 2024-11-24 05:49:58 +00:00
21 lines
382 B
C++
21 lines
382 B
C++
#pragma once
|
|
|
|
#include <cstdint>
|
|
|
|
#include "Common/Buffer.h"
|
|
|
|
namespace net {
|
|
|
|
class Buffer : public ::Buffer {
|
|
public:
|
|
bool FlushSocket(uintptr_t sock, double timeout, bool *cancelled = nullptr);
|
|
|
|
bool ReadAllWithProgress(int fd, int knownSize, float *progress, float *kBps, bool *cancelled);
|
|
|
|
// < 0: error
|
|
// >= 0: number of bytes read
|
|
int Read(int fd, size_t sz);
|
|
};
|
|
|
|
}
|