openmohaa/code/gamespy/ghttp/ghttpProcess.h

38 lines
932 B
C
Raw Normal View History

2023-02-04 21:00:01 +01:00
/*
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