OpenMoHAA 0.82.0
Loading...
Searching...
No Matches
ghttpProcess.h
1/*
2GameSpy GHTTP SDK
3Dan "Mr. Pants" Schoenblum
4dan@gamespy.com
5
6Copyright 1999-2007 GameSpy Industries, Inc
7
8devsupport@gamespy.com
9*/
10
11#ifndef _GHTTPPROCESS_H_
12#define _GHTTPPROCESS_H_
13
14#include "ghttpMain.h"
15#include "ghttpConnection.h"
16
17#ifdef __cplusplus
18extern "C" {
19#endif
20
21void ghiDoSocketInit (GHIConnection * connection);
22void ghiDoHostLookup (GHIConnection * connection);
23void ghiDoLookupPending (GHIConnection * connection);
24void ghiDoConnecting (GHIConnection * connection);
25void ghiDoSecuringSession (GHIConnection * connection);
26void ghiDoSendingRequest (GHIConnection * connection);
27void ghiDoPosting (GHIConnection * connection);
28void ghiDoWaiting (GHIConnection * connection);
29void ghiDoReceivingStatus (GHIConnection * connection);
30void ghiDoReceivingHeaders(GHIConnection * connection);
31void ghiDoReceivingFile (GHIConnection * connection);
32
33#ifdef __cplusplus
34}
35#endif
36
37#endif
Definition ghttpConnection.h:84