2010-04-02 18:18:27 +00:00
|
|
|
/*
|
|
|
|
* This file is part of the sigrok project.
|
|
|
|
*
|
|
|
|
* Copyright (C) 2010 Bert Vermeulen <bert@biot.com>
|
|
|
|
*
|
|
|
|
* 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 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program 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 General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <glib.h>
|
2011-12-28 22:07:08 +00:00
|
|
|
#include "sigrok.h"
|
|
|
|
#include "sigrok-internal.h"
|
2010-04-02 18:18:27 +00:00
|
|
|
|
2011-02-22 17:13:32 +00:00
|
|
|
/**
|
|
|
|
* Initialize libsigrok.
|
|
|
|
*
|
|
|
|
* @return SR_OK upon success, a (negative) error code otherwise.
|
|
|
|
*/
|
2011-01-29 15:43:45 +00:00
|
|
|
int sr_init(void)
|
2010-04-02 18:18:27 +00:00
|
|
|
{
|
2010-04-15 18:07:16 +00:00
|
|
|
return load_hwplugins();
|
2010-04-02 18:18:27 +00:00
|
|
|
}
|
|
|
|
|
2011-02-22 17:13:32 +00:00
|
|
|
/**
|
|
|
|
* Shutdown libsigrok.
|
|
|
|
*
|
|
|
|
* @return SR_OK upon success, a (negative) error code otherwise.
|
|
|
|
*/
|
|
|
|
int sr_exit(void)
|
2010-04-02 18:18:27 +00:00
|
|
|
{
|
2011-04-04 03:13:29 +00:00
|
|
|
sr_cleanup_hwplugins();
|
2011-02-22 17:13:32 +00:00
|
|
|
|
|
|
|
return SR_OK;
|
2010-04-02 18:18:27 +00:00
|
|
|
}
|