Revision 21108,
1.1 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-basic-offset: 8 -*- */ |
---|
2 | /* |
---|
3 | * Copyright (C) 2000-2003, Ximian, Inc. |
---|
4 | */ |
---|
5 | |
---|
6 | #ifndef SOUP_AUTH_DIGEST_H |
---|
7 | #define SOUP_AUTH_DIGEST_H 1 |
---|
8 | |
---|
9 | #include "soup-auth.h" |
---|
10 | |
---|
11 | #define SOUP_TYPE_AUTH_DIGEST (soup_auth_digest_get_type ()) |
---|
12 | #define SOUP_AUTH_DIGEST(object) (G_TYPE_CHECK_INSTANCE_CAST ((object), SOUP_TYPE_AUTH_DIGEST, SoupAuthDigest)) |
---|
13 | #define SOUP_AUTH_DIGEST_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), SOUP_TYPE_AUTH_DIGEST, SoupAuthDigestClass)) |
---|
14 | #define SOUP_IS_AUTH_DIGEST(object) (G_TYPE_CHECK_INSTANCE_TYPE ((object), SOUP_TYPE_AUTH_DIGEST)) |
---|
15 | #define SOUP_IS_AUTH_DIGEST_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), SOUP_TYPE_AUTH_DIGEST)) |
---|
16 | #define SOUP_AUTH_DIGEST_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), SOUP_TYPE_AUTH_DIGEST, SoupAuthDigestClass)) |
---|
17 | |
---|
18 | typedef struct SoupAuthDigestPrivate SoupAuthDigestPrivate; |
---|
19 | |
---|
20 | typedef struct { |
---|
21 | SoupAuth parent; |
---|
22 | |
---|
23 | SoupAuthDigestPrivate *priv; |
---|
24 | } SoupAuthDigest; |
---|
25 | |
---|
26 | typedef struct { |
---|
27 | SoupAuthClass parent_class; |
---|
28 | |
---|
29 | } SoupAuthDigestClass; |
---|
30 | |
---|
31 | GType soup_auth_digest_get_type (void); |
---|
32 | |
---|
33 | #endif /*SOUP_AUTH_DIGEST_H*/ |
---|
Note: See
TracBrowser
for help on using the repository browser.