test

Committer:
peyo
Date:
Wed Apr 12 14:09:46 2017 +0200
Revision:
1:3f75eb8d46f4
Parent:
0:cd5404401c2f
add main

Who changed what in which revision?

UserRevisionLine numberNew contents of line
peyo 0:cd5404401c2f 1 /*
peyo 0:cd5404401c2f 2 * Copyright 2010-2015 Amazon.com, Inc. or its affiliates. All Rights Reserved.
peyo 0:cd5404401c2f 3 *
peyo 0:cd5404401c2f 4 * Licensed under the Apache License, Version 2.0 (the "License").
peyo 0:cd5404401c2f 5 * You may not use this file except in compliance with the License.
peyo 0:cd5404401c2f 6 * A copy of the License is located at
peyo 0:cd5404401c2f 7 *
peyo 0:cd5404401c2f 8 * http://aws.amazon.com/apache2.0
peyo 0:cd5404401c2f 9 *
peyo 0:cd5404401c2f 10 * or in the "license" file accompanying this file. This file is distributed
peyo 0:cd5404401c2f 11 * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
peyo 0:cd5404401c2f 12 * express or implied. See the License for the specific language governing
peyo 0:cd5404401c2f 13 * permissions and limitations under the License.
peyo 0:cd5404401c2f 14 */
peyo 0:cd5404401c2f 15
peyo 0:cd5404401c2f 16 #ifndef SRC_SHADOW_AWS_IOT_SHADOW_ACTIONS_H_
peyo 0:cd5404401c2f 17 #define SRC_SHADOW_AWS_IOT_SHADOW_ACTIONS_H_
peyo 0:cd5404401c2f 18
peyo 0:cd5404401c2f 19 #ifdef __cplusplus
peyo 0:cd5404401c2f 20 extern "C" {
peyo 0:cd5404401c2f 21 #endif
peyo 0:cd5404401c2f 22
peyo 0:cd5404401c2f 23 #include "aws_iot_shadow_interface.h"
peyo 0:cd5404401c2f 24
peyo 0:cd5404401c2f 25 IoT_Error_t aws_iot_shadow_internal_action(const char *pThingName, ShadowActions_t action,
peyo 0:cd5404401c2f 26 const char *pJsonDocumentToBeSent, fpActionCallback_t callback,
peyo 0:cd5404401c2f 27 void *pCallbackContext, uint32_t timeout_seconds, bool isSticky);
peyo 0:cd5404401c2f 28
peyo 0:cd5404401c2f 29 #ifdef __cplusplus
peyo 0:cd5404401c2f 30 }
peyo 0:cd5404401c2f 31 #endif
peyo 0:cd5404401c2f 32
peyo 0:cd5404401c2f 33 #endif /* SRC_SHADOW_AWS_IOT_SHADOW_ACTIONS_H_ */