| 1 | /* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */ |
|---|---|
| 2 | /* |
| 3 | * Copyright (C) 2003, Ximian, Inc. |
| 4 | */ |
| 5 | |
| 6 | #ifndef __SOUP_TYPES_H__ |
| 7 | #define __SOUP_TYPES_H__ 1 |
| 8 | |
| 9 | #include <gio/gio.h> |
| 10 | |
| 11 | #include <libsoup/soup-version.h> |
| 12 | #include <libsoup/soup-status.h> |
| 13 | |
| 14 | G_BEGIN_DECLS |
| 15 | |
| 16 | typedef struct _SoupAddress SoupAddress; |
| 17 | typedef struct _SoupAuth SoupAuth; |
| 18 | typedef struct _SoupAuthDomain SoupAuthDomain; |
| 19 | typedef struct _SoupCookie SoupCookie; |
| 20 | typedef struct _SoupCookieJar SoupCookieJar; |
| 21 | typedef struct _SoupDate SoupDate; |
| 22 | typedef struct _SoupMessage SoupMessage; |
| 23 | typedef struct _SoupRequest SoupRequest; |
| 24 | typedef struct _SoupRequestHTTP SoupRequestHTTP; |
| 25 | typedef struct _SoupServer SoupServer; |
| 26 | typedef struct _SoupSession SoupSession; |
| 27 | typedef struct _SoupSessionAsync SoupSessionAsync; |
| 28 | typedef struct _SoupSessionFeature SoupSessionFeature; |
| 29 | typedef struct _SoupSessionSync SoupSessionSync; |
| 30 | typedef struct _SoupSocket SoupSocket; |
| 31 | typedef struct _SoupURI SoupURI; |
| 32 | typedef struct _SoupWebsocketConnection SoupWebsocketConnection; |
| 33 | |
| 34 | |
| 35 | /*< private >*/ |
| 36 | typedef struct _SoupConnection SoupConnection; |
| 37 | typedef struct _SoupMessageQueue SoupMessageQueue; |
| 38 | typedef struct _SoupMessageQueueItem SoupMessageQueueItem; |
| 39 | |
| 40 | G_END_DECLS |
| 41 | |
| 42 | #endif /* __SOUP_TYPES_H__ */ |
| 43 |