c27ea7e8a4
qtcreator project added git-svn-id: https://svn.code.sf.net/p/qlscribe/svn/trunk@83 cac9541e-1b8d-4bfa-827e-589bba606050
51 lines
1.7 KiB
C++
51 lines
1.7 KiB
C++
/* qlscribe - Qt based application to print lightScribe discs
|
|
|
|
Copyright (C) 2009 Vyacheslav Kononenko <vyacheslav@kononenko.net>
|
|
|
|
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.
|
|
|
|
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, write to the Free Software
|
|
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
|
|
|
$Id$ */
|
|
|
|
#include <iostream>
|
|
|
|
#include <dbus/dbus.h>
|
|
#include "lscribed.h"
|
|
|
|
int main( int argc, char **argv )
|
|
{
|
|
DBusError err;
|
|
dbus_error_init( &err );
|
|
|
|
DBusConnection *conn = dbus_bus_get( DBUS_BUS_SYSTEM, &err );
|
|
if( dbus_error_is_set( &err ) ) {
|
|
std::cerr << "dbus_bus_get() error: " << err.message << std::endl;
|
|
dbus_error_free( &err );
|
|
return 1;
|
|
}
|
|
int ret = dbus_bus_request_name( conn, DBusServiceName, DBUS_NAME_FLAG_REPLACE_EXISTING, &err );
|
|
if( dbus_error_is_set( &err ) ) {
|
|
std::cerr << "dbus_bus_request_name error: " << err.message << std::endl;
|
|
dbus_error_free( &err );
|
|
return 2;
|
|
}
|
|
if( ret != DBUS_REQUEST_NAME_REPLY_PRIMARY_OWNER ) {
|
|
std::cerr << "could not get ownership of \"" << DBusServiceName << "\" terminating" << std::endl;
|
|
return 3;
|
|
}
|
|
while( dbus_connection_read_write_dispatch( conn, -1 ) );
|
|
|
|
return 0;
|
|
}
|