mirror of
https://github.com/hypervortex/VH-Bombsquad-Modded-Server-Files
synced 2025-11-07 17:36:08 +00:00
Added new files
This commit is contained in:
parent
867634cc5c
commit
3a407868d4
1775 changed files with 550222 additions and 0 deletions
24
dist/ba_data/python-site-packages/multidict/_multilib/dict.h
vendored
Normal file
24
dist/ba_data/python-site-packages/multidict/_multilib/dict.h
vendored
Normal file
|
|
@ -0,0 +1,24 @@
|
|||
#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
|
||||
Loading…
Add table
Add a link
Reference in a new issue