Revision 21108,
1.2 KB
checked in by ghudson, 20 years ago
(diff) |
This commit was generated by cvs2svn to compensate for changes in r21107,
which included commits to RCS files with non-trunk default branches.
|
Line | |
---|
1 | /* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-ntlm-offset: 8 -*- */ |
---|
2 | /* |
---|
3 | * Copyright (C) 2000-2003, Ximian, Inc. |
---|
4 | */ |
---|
5 | |
---|
6 | #ifndef SOUP_CONNECTION_NTLM_H |
---|
7 | #define SOUP_CONNECTION_NTLM_H 1 |
---|
8 | |
---|
9 | #include "soup-connection.h" |
---|
10 | |
---|
11 | #define SOUP_TYPE_CONNECTION_NTLM (soup_connection_ntlm_get_type ()) |
---|
12 | #define SOUP_CONNECTION_NTLM(object) (G_TYPE_CHECK_INSTANCE_CAST ((object), SOUP_TYPE_CONNECTION_NTLM, SoupConnectionNTLM)) |
---|
13 | #define SOUP_CONNECTION_NTLM_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), SOUP_TYPE_CONNECTION_NTLM, SoupConnectionNTLMClass)) |
---|
14 | #define SOUP_IS_CONNECTION_NTLM(object) (G_TYPE_CHECK_INSTANCE_TYPE ((object), SOUP_TYPE_CONNECTION_NTLM)) |
---|
15 | #define SOUP_IS_CONNECTION_NTLM_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), SOUP_TYPE_CONNECTION_NTLM)) |
---|
16 | #define SOUP_CONNECTION_NTLM_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), SOUP_TYPE_CONNECTION_NTLM, SoupConnectionNTLMClass)) |
---|
17 | |
---|
18 | typedef struct SoupConnectionNTLMPrivate SoupConnectionNTLMPrivate; |
---|
19 | |
---|
20 | typedef struct { |
---|
21 | SoupConnection parent; |
---|
22 | |
---|
23 | SoupConnectionNTLMPrivate *priv; |
---|
24 | } SoupConnectionNTLM; |
---|
25 | |
---|
26 | typedef struct { |
---|
27 | SoupConnectionClass parent_class; |
---|
28 | |
---|
29 | } SoupConnectionNTLMClass; |
---|
30 | |
---|
31 | GType soup_connection_ntlm_get_type (void); |
---|
32 | |
---|
33 | #endif /*SOUP_CONNECTION_NTLM_H*/ |
---|
Note: See
TracBrowser
for help on using the repository browser.