gmyth/src/gmyth_jobqueue.h
author melunko
Tue Mar 06 00:55:35 2007 +0000 (2007-03-06)
branchtrunk
changeset 389 dbf952e956b5
parent 380 e0dfe4bd83a2
child 393 0dd110388c6f
permissions -rw-r--r--
[svn r394] gmyth version incremented to 0.2. gmyth_transcoder start/pause/cancel/resume methods added.
     1 /**
     2  * GMyth Library
     3  *
     4  * @file gmyth/gmyth_jobqueue.h
     5  *
     6  * @brief <p> Library to use JobQueue from mythbackend
     7  *
     8  * Copyright (C) 2007 INdT - Instituto Nokia de Tecnologia.
     9  * @author Artur Duque de Souza <artur.souza@indt.org.br>
    10  *
    11  *
    12  * This program is free software; you can redistribute it and/or modify
    13  * it under the terms of the GNU Lesser General Public License as published by
    14  * the Free Software Foundation; either version 2 of the License, or
    15  * (at your option) any later version.
    16  *
    17  * This program is distributed in the hope that it will be useful,
    18  * but WITHOUT ANY WARRANTY; without even the implied warranty of
    19  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    20  * GNU General Public License for more details.
    21  *
    22  * You should have received a copy of the GNU Lesser General Public License
    23  * along with this program; if not, write to the Free Software
    24  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
    25  */
    26 
    27 #ifndef __GMYTH_JOBQUEUE_H__
    28 #define __GMYTH_JOBQUEUE_H__
    29 
    30 #include <glib-object.h>
    31 
    32 #include <stdio.h>
    33 #include <stdlib.h>
    34 #include <string.h>
    35 #include <stdarg.h>
    36 #include <glib.h>
    37 #include <glib/gprintf.h>
    38 
    39 #include "gmyth_stringlist.h"
    40 #include "gmyth_backendinfo.h"
    41 #include "gmyth_transcode.h"
    42 #include "gmyth_socket.h"
    43 #include "gmyth_util.h"
    44 
    45 G_BEGIN_DECLS
    46 
    47 gint gmyth_jobqueue_add_job (GMythTranscoder* transcode, gchar* job);
    48 gint gmyth_jobqueue_change_cmd (GMythTranscoder* transcode, gchar* action,
    49                                 gchar* job);
    50 
    51 G_END_DECLS
    52 
    53 #endif /* __GMYTH_JOBQUEUE_H__ */