diff options
author | Simon Busch <morphis@gravedo.de> | 2012-08-24 07:25:19 +0200 |
---|---|---|
committer | Simon Busch <morphis@gravedo.de> | 2012-08-24 15:06:38 +0200 |
commit | 94ca3db63b985c7ad7696f3bce50555950e1c17a (patch) | |
tree | 3c2d2a4f2b410293c8a5b5c497ac12938b56ee77 /include | |
parent | 5999a66ad4405527dfca6c823bce2ce5b0eef0e1 (diff) | |
download | external_libsamsung-ipc-94ca3db63b985c7ad7696f3bce50555950e1c17a.zip external_libsamsung-ipc-94ca3db63b985c7ad7696f3bce50555950e1c17a.tar.gz external_libsamsung-ipc-94ca3db63b985c7ad7696f3bce50555950e1c17a.tar.bz2 |
Add identifiable named header file which should be the only one used by clients
Diffstat (limited to 'include')
-rw-r--r-- | include/Makefile.am | 1 | ||||
-rw-r--r-- | include/samsung-ipc.h | 28 |
2 files changed, 29 insertions, 0 deletions
diff --git a/include/Makefile.am b/include/Makefile.am index 3f177d3..1eb264d 100644 --- a/include/Makefile.am +++ b/include/Makefile.am @@ -16,6 +16,7 @@ samsung_ipcinclude_HEADERS = \ gprs.h \ snd.h \ rfs.h \ + samsung-ipc.h \ $(NULL) samsung_ipc_v4includedir = $(includedir)/samsung-ipc-1.0/device/ipc-v4/ diff --git a/include/samsung-ipc.h b/include/samsung-ipc.h new file mode 100644 index 0000000..e7cc503 --- /dev/null +++ b/include/samsung-ipc.h @@ -0,0 +1,28 @@ +/** + * This file is part of libsamsung-ipc. + * + * Copyright (C) 2012 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 SAMSUNGIPC_H_ +#define SAMSUNGIPC_H_ + +#include <radio.h> + +#endif + +// vim:ts=4:sw=4:expandtab |