[Simulator] Minor UI changes fixing the IOT-1087.
[platform/upstream/iotivity.git] / service / easy-setup / enrollee / src / easysetupcallbacks.h
1 //******************************************************************
2 //
3 // Copyright 2016 Samsung Electronics All Rights Reserved.
4 //
5 //-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
6 //
7 // Licensed under the Apache License, Version 2.0 (the "License");
8 // you may not use this file except in compliance with the License.
9 // You may obtain a copy of the License at
10 //
11 //      http://www.apache.org/licenses/LICENSE-2.0
12 //
13 // Unless required by applicable law or agreed to in writing, software
14 // distributed under the License is distributed on an "AS IS" BASIS,
15 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16 // See the License for the specific language governing permissions and
17 // limitations under the License.
18 //
19 //-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
20
21 /**
22  * @file
23  *
24  * This file contains private internal callback function 
25  * prototypes for Easy setup [Enrollee]
26  */
27
28 #ifndef EASYSETUP_ENROLLEE_CALLBACKS_H__
29 #define EASYSETUP_ENROLLEE_CALLBACKS_H__
30
31 #include "escommon.h"
32
33 #ifdef __cplusplus
34 extern "C" {
35 #endif // __cplusplus
36
37 //-----------------------------------------------------------------------------
38 // Private internal callback function prototypes for Easy setup [Enrollee]
39 //-----------------------------------------------------------------------------
40
41  /* 
42  * Callback for on boarding
43  */
44 void OnboardingCallback(ESResult esResult);
45
46  /* 
47  * Callback for provisioning
48  */
49 void ProvisioningCallback(ESResult SSSS);
50
51  /* 
52  * Callback for on boarding target Network
53  */
54 void OnboardingCallbackTargetNet(ESResult esResult);
55
56  /* 
57  * Function for validating the parameter for InitEasySetup API
58  */
59 static bool ValidateParam(OCConnectivityType networkType, const char *ssid, const char *passwd,
60               EventCallback cb);
61
62 #ifdef __cplusplus
63 }
64 #endif // __cplusplus
65
66
67 #endif /* EASYSETUP_ENROLLEE_CALLBACKS_H__ */
68
69