mirror of https://github.com/sgoudham/Enso-Bot.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
368 B
C
25 lines
368 B
C
5 years ago
|
#ifndef _MULTIDICT_C_H
|
||
|
#define _MULTIDICT_C_H
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
extern "C" {
|
||
|
#endif
|
||
|
|
||
|
typedef struct { // 16 or 24 for GC prefix
|
||
|
PyObject_HEAD // 16
|
||
|
PyObject *weaklist;
|
||
|
pair_list_t pairs;
|
||
|
} MultiDictObject;
|
||
|
|
||
|
typedef struct {
|
||
|
PyObject_HEAD
|
||
|
PyObject *weaklist;
|
||
|
MultiDictObject *md;
|
||
|
} MultiDictProxyObject;
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
}
|
||
|
#endif
|
||
|
|
||
|
#endif
|