mirror of
https://github.com/openmoh/openmohaa.git
synced 2025-04-28 13:47:58 +03:00
37 lines
932 B
C
37 lines
932 B
C
/*
|
|
GameSpy GHTTP SDK
|
|
Dan "Mr. Pants" Schoenblum
|
|
dan@gamespy.com
|
|
|
|
Copyright 1999-2007 GameSpy Industries, Inc
|
|
|
|
devsupport@gamespy.com
|
|
*/
|
|
|
|
#ifndef _GHTTPPROCESS_H_
|
|
#define _GHTTPPROCESS_H_
|
|
|
|
#include "ghttpMain.h"
|
|
#include "ghttpConnection.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
void ghiDoSocketInit (GHIConnection * connection);
|
|
void ghiDoHostLookup (GHIConnection * connection);
|
|
void ghiDoLookupPending (GHIConnection * connection);
|
|
void ghiDoConnecting (GHIConnection * connection);
|
|
void ghiDoSecuringSession (GHIConnection * connection);
|
|
void ghiDoSendingRequest (GHIConnection * connection);
|
|
void ghiDoPosting (GHIConnection * connection);
|
|
void ghiDoWaiting (GHIConnection * connection);
|
|
void ghiDoReceivingStatus (GHIConnection * connection);
|
|
void ghiDoReceivingHeaders(GHIConnection * connection);
|
|
void ghiDoReceivingFile (GHIConnection * connection);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|