summaryrefslogtreecommitdiff
path: root/protocols/Steam/src/request_queue.h
diff options
context:
space:
mode:
Diffstat (limited to 'protocols/Steam/src/request_queue.h')
-rw-r--r--protocols/Steam/src/request_queue.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/protocols/Steam/src/request_queue.h b/protocols/Steam/src/request_queue.h
index 0cd8811536..6d14209fb8 100644
--- a/protocols/Steam/src/request_queue.h
+++ b/protocols/Steam/src/request_queue.h
@@ -32,9 +32,8 @@ struct RequestQueueItem
class RequestQueue
{
-private:
bool isTerminated;
- HANDLE hConnection;
+ HNETLIBUSER hConnection;
mir_cs requestQueueLock;
LIST<RequestQueueItem> requests;
HANDLE hRequestQueueEvent, hRequestQueueThread;
@@ -45,7 +44,7 @@ private:
static unsigned int __cdecl WorkerThread(void*);
public:
- RequestQueue(HANDLE hConnection);
+ RequestQueue(HNETLIBUSER hConnection);
~RequestQueue();
void Start();