diff options
author | José Bollo <jose.bollo@iot.bzh> | 2017-07-21 15:57:53 +0200 |
---|---|---|
committer | José Bollo <jose.bollo@iot.bzh> | 2017-07-21 15:57:53 +0200 |
commit | e8b0e3fd766fa155e4c2be4b939173d9f1c2f23a (patch) | |
tree | 2bba8835c73a1b68897525df7da15d33f003e07a /binding/aia-get.h |
first commit
Diffstat (limited to 'binding/aia-get.h')
-rw-r--r-- | binding/aia-get.h | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/binding/aia-get.h b/binding/aia-get.h new file mode 100644 index 0000000..be1a1f8 --- /dev/null +++ b/binding/aia-get.h @@ -0,0 +1,28 @@ +/* + * Copyright (C) 2017 "IoT.bzh" + * Author: José Bollo <jose.bollo@iot.bzh> + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +#pragma once + +extern void aia_get( + const char *url, + int delay, + const char *appli, + const char *idp, + void (*callback)(void *closure, int status, const void *buffer, size_t size), + void *closure +); + |