MU Library
message.hpp
Go to the documentation of this file.
1 // SPDX-License-Identifier: Apache-2.0
2 // Copyright 2024 XCENA Inc.
3 
4 #pragma once
5 
6 #include <cstdint>
7 
8 namespace mu
9 {
10 
21 void asyncMessage(void* src, uint64_t size);
22 
34 void syncMessage(void* src, uint64_t size);
35 
36 } // namespace mu
Definition: assert.hpp:9
void asyncMessage(void *src, uint64_t size)
Send asynchronous message to host.
void syncMessage(void *src, uint64_t size)
Send synchronous message to host and wait for response.