no meaningful changes...

This commit is contained in:
hyung-hwan 2011-06-16 10:00:36 +00:00
parent fb46d98bb2
commit 2adaa58e7d
2 changed files with 27 additions and 5 deletions

View File

@ -1,5 +1,21 @@
/* /*
* $Id$ * $Id$
*
Copyright 2006-2011 Chung, Hyung-Hwan.
This file is part of QSE.
QSE is free software: you can redistribute it and/or modify
it under the terms of the GNU Lesser General Public License as
published by the Free Software Foundation, either version 3 of
the License, or (at your option) any later version.
QSE is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
License along with QSE. If not, see <http://www.gnu.org/licenses/>.
*/ */
#ifndef _QSE_CMN_GDL_H_ #ifndef _QSE_CMN_GDL_H_
@ -55,13 +71,19 @@ struct qse_gdl_t
*/ */
#define QSE_GDL_TAIL(host) ((host)->prev) #define QSE_GDL_TAIL(host) ((host)->prev)
#ifdef __cplusplus #ifdef __cplusplus
extern "C" { extern "C" {
#endif #endif
void qse_gdl_chain (qse_gdl_t* p, qse_gdl_t* x, qse_gdl_t* n); void qse_gdl_chain (
void qse_gdl_unchain (qse_gdl_t* x); qse_gdl_t* p,
qse_gdl_t* x,
qse_gdl_t* n
);
void qse_gdl_unchain (
qse_gdl_t* x
);
#ifdef __cplusplus #ifdef __cplusplus
} }

View File

@ -1,5 +1,5 @@
/* /*
* $Id: htb.c 474 2011-05-23 16:52:37Z hyunghwan.chung $ * $Id: htb.c 492 2011-06-15 16:00:36Z hyunghwan.chung $
* *
Copyright 2006-2011 Chung, Hyung-Hwan. Copyright 2006-2011 Chung, Hyung-Hwan.
This file is part of QSE. This file is part of QSE.
@ -271,7 +271,7 @@ htb_t* qse_htb_open (
if (mmgr == QSE_NULL) return QSE_NULL; if (mmgr == QSE_NULL) return QSE_NULL;
} }
htb = (htb_t*) QSE_MMGR_ALLOC (mmgr, QSE_SIZEOF(htb_t) + xtnsize); htb = (htb_t*) QSE_MMGR_ALLOC (mmgr, SIZEOF(htb_t) + xtnsize);
if (htb == QSE_NULL) return QSE_NULL; if (htb == QSE_NULL) return QSE_NULL;
if (qse_htb_init (htb, mmgr, capa, factor, kscale, vscale) == QSE_NULL) if (qse_htb_init (htb, mmgr, capa, factor, kscale, vscale) == QSE_NULL)