mirror of
https://github.com/bytecodealliance/wasm-micro-runtime.git
synced 2025-05-07 12:16:24 +00:00
21 lines
376 B
C
21 lines
376 B
C
/*
|
|
* Copyright (C) 2019 Intel Corporation. All rights reserved.
|
|
* SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
|
*/
|
|
|
|
#ifndef COAP_EXTENSION_COAP_EXT_H_
|
|
#define COAP_EXTENSION_COAP_EXT_H_
|
|
|
|
#include "coap-constants.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#define COAP_EVENT (COAP_DELETE + 2)
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
#endif /* COAP_EXTENSION_COAP_EXT_H_ */
|