OpenMoHAA 0.82.0
Loading...
Searching...
No Matches
ghttpCallbacks.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 _GHTTPCALLBACKS_H_
12#define _GHTTPCALLBACKS_H_
13
14#include "ghttpMain.h"
15#include "ghttpConnection.h"
16
17#ifdef __cplusplus
18extern "C" {
19#endif
20
21// Call the completed callback for this connection.
23void ghiCallCompletedCallback
24(
25 GHIConnection * connection
26);
27
28// Call the progress callback for this connection.
30void ghiCallProgressCallback
31(
32 GHIConnection * connection,
33 const char * buffer,
34 GHTTPByteCount bufferLen
35);
36
37// Call the post callback for this connection.
39void ghiCallPostCallback
40(
41 GHIConnection * connection
42);
43
44#ifdef __cplusplus
45}
46#endif
47
48#endif
Definition ghttpConnection.h:84