chore: Windows needs more LEAN_EXPORTs (#4941)
This commit is contained in:
parent
a29bca7f00
commit
240ebff549
1 changed files with 5 additions and 4 deletions
|
|
@ -7,13 +7,14 @@ Author: Leonardo de Moura
|
|||
#pragma once
|
||||
#include <stddef.h>
|
||||
#include <stdint.h>
|
||||
#include <lean/lean.h>
|
||||
|
||||
namespace lean {
|
||||
void init_thread_heap();
|
||||
void * alloc(size_t sz);
|
||||
void dealloc(void * o, size_t sz);
|
||||
void add_heartbeats(uint64_t count);
|
||||
uint64_t get_num_heartbeats();
|
||||
LEAN_EXPORT void * alloc(size_t sz);
|
||||
LEAN_EXPORT void dealloc(void * o, size_t sz);
|
||||
LEAN_EXPORT void add_heartbeats(uint64_t count);
|
||||
LEAN_EXPORT uint64_t get_num_heartbeats();
|
||||
void initialize_alloc();
|
||||
void finalize_alloc();
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue