1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
|
# Ei!, emacs, this is -*-Python-*- mode
########################################################################
#
# License: BSD
# Created: March 03, 2008
# Author: Francesc Alted - faltet@pytables.com
#
# $Id: definitions.pyd 1018 2005-06-20 09:43:34Z faltet $
#
########################################################################
""" These are declarations for functions in utilsExtension.pyx that
have to be shared with other extensions. """
from definitions cimport hsize_t, hid_t
cdef hsize_t *malloc_dims(object)
cdef hid_t get_native_type(hid_t)
|