mirror of
https://github.com/wailsapp/wails.git
synced 2025-05-03 06:20:48 +08:00
25 lines
237 B
C
25 lines
237 B
C
//
|
|
// message.h
|
|
// test
|
|
//
|
|
// Created by Lea Anthony on 14/10/21.
|
|
//
|
|
|
|
#ifndef export_h
|
|
#define export_h
|
|
|
|
|
|
#ifdef __cplusplus
|
|
extern "C"
|
|
{
|
|
#endif
|
|
|
|
void processMessage(const char *);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
|
|
#endif /* export_h */
|