5
0
mirror of https://github.com/wailsapp/wails.git synced 2025-05-20 02:49:30 +08:00

[windows] wrap ffenestri.h for c++

This commit is contained in:
Lea Anthony 2021-04-26 18:55:04 +10:00
parent 84f37c66ba
commit ad34e55a67
No known key found for this signature in database
GPG Key ID: 33DAF7BB90A58405

View File

@ -1,6 +1,10 @@
#ifndef __FFENESTRI_H__
#define __FFENESTRI_H__
#ifdef __cplusplus
extern "C" {
#endif
#include <stdio.h>
struct Application;
@ -42,4 +46,8 @@ extern void UpdateTrayMenuLabel(struct Application*, const char* JSON);
extern void AddContextMenu(struct Application*, char *contextMenuJSON);
extern void UpdateContextMenu(struct Application*, char *contextMenuJSON);
#ifdef __cplusplus
}
#endif
#endif