|
|
/*************************************************************************** dbxtree.h - description ------------------- begin : Sun May 13 2001 copyright : (C) 2001 by email : ***************************************************************************/ /*************************************************************************** * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * ***************************************************************************/ #include "libdbx.h" #ifndef _DBXTREE_H_ #define _DBXTREE_H_ struct _dbxtree { int id; DBXFOLDER *data; struct _dbxtree* child; struct _dbxtree* next; }; typedef struct _dbxtree DBXTREE; #endif
Generated by: dave@davepc on Sun May 13 17:03:35 2001, using kdoc 2.0a42. |