diff options
author | Dan Williams <dcbw@redhat.com> | 2010-02-16 09:58:47 -0800 |
---|---|---|
committer | Dan Williams <dcbw@redhat.com> | 2010-02-16 09:58:47 -0800 |
commit | 6239d2e3510bc136a14fdcf7d87e6d85c344bf5a (patch) | |
tree | f12dddb5281427693d20e77e3b58bf7e5594840a /libqcdm/src/com.h | |
parent | 626f2953bf394eff4361a6d06a608349605fb5aa (diff) |
qcdm: implement command handling and minimal infrastructure
Diffstat (limited to 'libqcdm/src/com.h')
-rw-r--r-- | libqcdm/src/com.h | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/libqcdm/src/com.h b/libqcdm/src/com.h new file mode 100644 index 00000000..97561d03 --- /dev/null +++ b/libqcdm/src/com.h @@ -0,0 +1,25 @@ +/* -*- Mode: C; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ +/* + * Copyright (C) 2010 Red Hat, Inc. + * + * This program is free software: you can redistribute it and/or + * modify it under the terms of version 2 of the GNU General Public + * License as published by the Free Software Foundation + * + * 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/>. + */ + +#ifndef LIBQCDM_COM_H +#define LIBQCDM_COM_H + +#include <glib.h> + +gboolean qcdm_port_setup (int fd, GError **error); + +#endif /* LIBQCDM_COM_H */ |