| OLD | NEW |
| (Empty) |
| 1 // Copyright (c) 2015, the Fletch project authors. Please see the AUTHORS file | |
| 2 // for details. All rights reserved. Use of this source code is governed by a | |
| 3 // BSD-style license that can be found in the LICENSE.md file. | |
| 4 | |
| 5 // Generated file. Do not edit. | |
| 6 | |
| 7 #ifndef MYAPI_SERVICE_H | |
| 8 #define MYAPI_SERVICE_H | |
| 9 | |
| 10 #include <inttypes.h> | |
| 11 #include "struct.h" | |
| 12 | |
| 13 class MyApiService { | |
| 14 public: | |
| 15 static void setup(); | |
| 16 static void tearDown(); | |
| 17 static int32_t create(); | |
| 18 static void createAsync(void (*callback)(int32_t, void*), void* callback_data)
; | |
| 19 static void destroy(int32_t api); | |
| 20 static void destroyAsync(int32_t api, void (*callback)(void*), void* callback_
data); | |
| 21 static int32_t foo(int32_t api); | |
| 22 static void fooAsync(int32_t api, void (*callback)(int32_t, void*), void* call
back_data); | |
| 23 static void MyObject_funk(int32_t api, int32_t id, int32_t o); | |
| 24 static void MyObject_funkAsync(int32_t api, int32_t id, int32_t o, void (*call
back)(void*), void* callback_data); | |
| 25 }; | |
| 26 | |
| 27 #endif // MYAPI_SERVICE_H | |
| OLD | NEW |