diff options
Diffstat (limited to 'samsung-ipc/ipc.h')
-rw-r--r-- | samsung-ipc/ipc.h | 36 |
1 files changed, 0 insertions, 36 deletions
diff --git a/samsung-ipc/ipc.h b/samsung-ipc/ipc.h deleted file mode 100644 index 29a30bd..0000000 --- a/samsung-ipc/ipc.h +++ /dev/null @@ -1,36 +0,0 @@ -/** - * This file is part of libsamsung-ipc. - * - * Copyright (C) 2011 Simon Busch <morphis@gravedo.de> - * - * libsamsung-ipc 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. - * - * libsamsung-ipc 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 libsamsung-ipc. If not, see <http://www.gnu.org/licenses/>. - * - */ - -#ifndef __IPC_H__ -#define __IPC_H__ - -struct ipc_ops { - int (*open)(void); - int (*close)(void); - int (*power_on)(void); - int (*power_off)(void); - int (*send)(struct ipc_request*); - int (*recv)(struct ipc_response*); -}; - -#define IPC_CLIENT_TYPE_CRESPO 1 -#define IPC_CLIENT_TYPE_H1 2 - -#endif |