summaryrefslogtreecommitdiffstats
path: root/src/H5HPprivate.h
blob: 2c16ffeae8ef5873a14819eec98435470681cde0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
 * Copyright by the Board of Trustees of the University of Illinois.         *
 * All rights reserved.                                                      *
 *                                                                           *
 * This file is part of HDF5.  The full HDF5 copyright notice, including     *
 * terms governing use, modification, and redistribution, is contained in    *
 * the files COPYING and Copyright.html.  COPYING can be found at the root   *
 * of the source code distribution tree; Copyright.html can be found at the  *
 * root level of an installed copy of the electronic HDF5 document set and   *
 * is linked from the top-level documents page.  It can also be found at     *
 * http://hdf.ncsa.uiuc.edu/HDF5/doc/Copyright.html.  If you do not have     *
 * access to either file, you may request a copy from hdfhelp@ncsa.uiuc.edu. *
 * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */

/*
 * This file contains private information about the H5HP module
 */
#ifndef _H5HPprivate_H
#define _H5HPprivate_H

/**************************************/
/* Public headers needed by this file */
/**************************************/
#ifdef LATER
#include "H5HPpublic.h"
#endif /* LATER */

/***************************************/
/* Private headers needed by this file */
/***************************************/
#include "H5private.h"

/************/
/* Typedefs */
/************/

/* Typedef for heap struct (defined in H5HP.c) */
typedef struct H5HP_t H5HP_t;

/* Typedef for objects which can be inserted into heaps */
/* This _must_ be the first field in objects which can be inserted into heaps */
typedef struct H5HP_info_t {
    size_t heap_loc;                    /* Location of object in heap */
}H5HP_info_t;

/* Typedef for type of heap to create */
typedef enum {
    H5HP_MIN_HEAP,      /* Minimum values in heap are at the "top" */
    H5HP_MAX_HEAP       /* Maximum values in heap are at the "top" */
} H5HP_type_t;

/**********/
/* Macros */
/**********/

/********************/
/* Private routines */
/********************/
H5_DLL H5HP_t *H5HP_create(H5HP_type_t heap_type);
H5_DLL herr_t H5HP_insert(H5HP_t *heap, int val, void *obj);
H5_DLL ssize_t H5HP_count(const H5HP_t *heap);
H5_DLL herr_t H5HP_top(const H5HP_t *heap, int *val);
H5_DLL herr_t H5HP_remove(H5HP_t *heap, int *val, void **ptr);
H5_DLL herr_t H5HP_change(H5HP_t *heap, int val, void *obj);
H5_DLL herr_t H5HP_incr(H5HP_t *heap, unsigned amt, void *obj);
H5_DLL herr_t H5HP_decr(H5HP_t *heap, unsigned amt, void *obj);
H5_DLL herr_t H5HP_close(H5HP_t *heap);

#endif /* _H5HPprivate_H */

j_cmd'>scrollbar_obj_cmd Tk is a free and open-source, cross-platform widget toolkit that provides a library of basic elements of GUI widgets for building a graphical user interface (GUI) in many programming languages.
summaryrefslogtreecommitdiffstats
path: root/library/demos
Commit message (Expand)AuthorAgeFilesLines
* Remove superfluous double-quotes in widget's "about" dialog.jan.nijtmans2017-01-231-4/+4
|\
| * Remove superfloeus double-quite in widget's "about" dialog.jan.nijtmans2017-01-231-4/+4
* | Typo in Dutch translation. Use copyright sign directly in *.msg files (and wi...jan.nijtmans2017-01-203-7/+7
|\ \ | |/
| * Typo in Dutch translation. Use copyright sign directly in *.msg files (and wi...jan.nijtmans2017-01-203-7/+7
* | Fix [http://core.tcl.tk/tcl/info/3bd69eba99a395ee|3bd69eba99a395ee]: 'make di...jan.nijtmans2016-06-014-4/+0
|\ \ | |/
| * Fix [http://core.tcl.tk/tcl/info/3bd69eba99a395ee|3bd69eba99a395ee]: 'make di...jan.nijtmans2016-06-014-4/+0
* | Polished listbox justification demofvogel2016-01-111-5/+7
* | merged trunkfvogel2016-01-1123-40/+42
|\ \
| * | minor spacing, no functional change.jan.nijtmans2015-08-182-3/+3
| * | Remove various unnecessary "global tcl_platform" occurrences, which are no lo...jan.nijtmans2015-08-057-9/+9
| * | Fix [6fe75131c546226b]: doc: tk_messageBox (mac). jan.nijtmans2015-08-0314-28/+30
| |\ \ | | |/
* | | [3f456a5bb9]: Patches for listbox right justifyjan.nijtmans2014-02-111-0/+9
|/ /
* | 8 new virtual events (doc not updated yet)jan.nijtmans2012-08-091-1/+1
* | [Bug 3555644]: Better use of virtual events.jan.nijtmans2012-08-091-2/+2
* | formatting, unnecessary if'sjan.nijtmans2012-08-091-39/+28
|\ \ | |/
| * partly backport from 8.6jan.nijtmans2012-08-092-41/+44
* | [Bug 3534137]: $tcl_platform(platform) != [tk windowingsystem]jan.nijtmans2012-06-102-4/+4
|\ \ | |/
| * [Bug 3534137]: $tcl_platform(platform) != [tk windowingsystem]jan.nijtmans2012-06-102-4/+4
| |\
| * \ [Bug 1945073]: Demo square.tcl cannot run; need package tktestjan.nijtmans2011-11-226-6/+6
| |\ \ | | |/
| | * [Bug 1945073]: Demo square.tcl cannot run; need package tktestjan.nijtmans2011-11-226-6/+6
* | | Purge RCS Keywordsdgp2011-06-0867-134/+0
|\ \ \ | |/ /
| * | Purge RCS Keywords.dgp2011-06-08