Upload packaging folder
[platform/upstream/iotjs.git] / src / platform / x86_64-darwin / iotjs_module_i2c-x86_64-darwin.c
1 /* Copyright 2017-present Samsung Electronics Co., Ltd. and other contributors
2  *
3  * Licensed under the Apache License, Version 2.0 (the "License");
4  * you may not use this file except in compliance with the License.
5  * You may obtain a copy of the License at
6  *
7  *     http://www.apache.org/licenses/LICENSE-2.0
8  *
9  * Unless required by applicable law or agreed to in writing, software
10  * distributed under the License is distributed on an "AS IS" BASIS
11  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12  * See the License for the specific language governing permissions and
13  * limitations under the License.
14  */
15
16
17 #if defined(__APPLE__)
18
19 #include "module/iotjs_module_i2c.h"
20 #include "iotjs_module_unimplemented.inl.h"
21
22 void I2cSetAddress(iotjs_i2c_t* i2c, uint8_t address)
23     IOTJS_MODULE_UNIMPLEMENTED();
24 void OpenWorker(uv_work_t* work_req) IOTJS_MODULE_UNIMPLEMENTED();
25 void I2cClose(iotjs_i2c_t* i2c) IOTJS_MODULE_UNIMPLEMENTED();
26 void WriteWorker(uv_work_t* work_req) IOTJS_MODULE_UNIMPLEMENTED();
27 void WriteByteWorker(uv_work_t* work_req) IOTJS_MODULE_UNIMPLEMENTED();
28 void WriteBlockWorker(uv_work_t* work_req) IOTJS_MODULE_UNIMPLEMENTED();
29 void ReadWorker(uv_work_t* work_req) IOTJS_MODULE_UNIMPLEMENTED();
30 void ReadByteWorker(uv_work_t* work_req) IOTJS_MODULE_UNIMPLEMENTED();
31 void ReadBlockWorker(uv_work_t* work_req) IOTJS_MODULE_UNIMPLEMENTED();
32
33 #endif // __APPLE__