Merged c0ffee's MIME signal patch.
[silc.git] / apps / irssi / src / core / blob.h
1 #ifndef __BLOB_H__
2 #define __BLOB_H__
3
4 #include "modules.h"
5
6 struct _BLOB_REC {
7         int type;
8         void *data;
9         guint32 octets;
10 };
11
12 typedef struct _BLOB_REC BLOB_REC;
13
14 void blob_fill(BLOB_REC *blob);
15
16 #endif