mirror of
https://gitea.invidious.io/iv-org/litespeed-quic.git
synced 2024-08-15 00:53:43 +00:00
link fix when using lsquic in a cpp project (#418)
Co-authored-by: MBellahcene <moussa.bellahcene@4d.com>
This commit is contained in:
parent
188c055a9c
commit
732da98508
1 changed files with 9 additions and 0 deletions
|
@ -6,6 +6,10 @@
|
|||
#ifndef LSQUIC_HASH_H
|
||||
#define LSQUIC_HASH_H
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
struct lsquic_hash;
|
||||
|
||||
struct lsquic_hash_elem
|
||||
|
@ -58,4 +62,9 @@ lsquic_hash_count (struct lsquic_hash *);
|
|||
|
||||
size_t
|
||||
lsquic_hash_mem_used (const struct lsquic_hash *);
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif
|
||||
|
|
Loading…
Reference in a new issue