2000-02-12 23:51:37 +00:00
|
|
|
/* MDB Tools - A library for reading MS Access database files
|
|
|
|
|
* Copyright (C) 2000 Brian Bruns
|
|
|
|
|
*
|
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
|
* modify it under the terms of the GNU Library General Public
|
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
|
* version 2 of the License, or (at your option) any later version.
|
|
|
|
|
*
|
|
|
|
|
* This library 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
|
|
|
|
|
* Library General Public License for more details.
|
|
|
|
|
*
|
|
|
|
|
* You should have received a copy of the GNU Library General Public
|
2011-08-28 19:53:29 -04:00
|
|
|
* License along with this library; if not, write to the Free Software
|
|
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
2000-02-12 23:51:37 +00:00
|
|
|
*/
|
2011-08-28 19:53:29 -04:00
|
|
|
|
2000-02-12 23:51:37 +00:00
|
|
|
#include "mdbtools.h"
|
|
|
|
|
|
2013-06-28 01:51:52 +02:00
|
|
|
MDB_DEPRECATED(void,
|
|
|
|
|
mdb_init())
|
2012-07-22 02:29:04 +02:00
|
|
|
{
|
|
|
|
|
fprintf(stderr, "mdb_init() is DEPRECATED and does nothing. Stop calling it.\n");
|
|
|
|
|
}
|
|
|
|
|
|
2013-06-28 01:51:52 +02:00
|
|
|
MDB_DEPRECATED(void,
|
|
|
|
|
mdb_exit())
|
2012-07-22 02:29:04 +02:00
|
|
|
{
|
|
|
|
|
fprintf(stderr, "mdb_exit() is DEPRECATED and does nothing. Stop calling it.\n");
|
|
|
|
|
}
|