| 26 */ |
26 */ |
| 27 #ifndef PURPLE_CIPHER_H |
27 #ifndef PURPLE_CIPHER_H |
| 28 #define PURPLE_CIPHER_H |
28 #define PURPLE_CIPHER_H |
| 29 |
29 |
| 30 #include <glib.h> |
30 #include <glib.h> |
| |
31 #include <glib-object.h> |
| 31 #include <string.h> |
32 #include <string.h> |
| 32 |
33 |
| 33 #include <glib-object.h> |
34 #include "internal.h" |
| 34 |
35 |
| 35 #define PURPLE_TYPE_CIPHER (purple_cipher_get_type()) |
36 #define PURPLE_TYPE_CIPHER (purple_cipher_get_type()) |
| 36 #define PURPLE_CIPHER(obj) (G_TYPE_CHECK_INSTANCE_CAST((obj), PURPLE_TYPE_CIPHER, PurpleCipher)) |
37 #define PURPLE_CIPHER(obj) (G_TYPE_CHECK_INSTANCE_CAST((obj), PURPLE_TYPE_CIPHER, PurpleCipher)) |
| 37 #define PURPLE_CIPHER_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST((klass), PURPLE_TYPE_CIPHER, PurpleCipherClass)) |
38 #define PURPLE_CIPHER_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST((klass), PURPLE_TYPE_CIPHER, PurpleCipherClass)) |
| 38 #define PURPLE_IS_CIPHER(obj) (G_TYPE_CHECK_INSTANCE_TYPE((obj), PURPLE_TYPE_CIPHER)) |
39 #define PURPLE_IS_CIPHER(obj) (G_TYPE_CHECK_INSTANCE_TYPE((obj), PURPLE_TYPE_CIPHER)) |