github.com/secoba/wails/v2@v2.6.4/internal/frontend/desktop/darwin/message.h (about)

     1  //
     2  //  message.h
     3  //  test
     4  //
     5  //  Created by Lea Anthony on 14/10/21.
     6  //
     7  
     8  #ifndef export_h
     9  #define export_h
    10  
    11  
    12  #ifdef __cplusplus
    13  extern "C"
    14  {
    15  #endif
    16  
    17  void processMessage(const char *);
    18  void processURLRequest(void *, void*);
    19  void processMessageDialogResponse(int);
    20  void processOpenFileDialogResponse(const char*);
    21  void processSaveFileDialogResponse(const char*);
    22  void processCallback(int);
    23  
    24  #ifdef __cplusplus
    25  }
    26  #endif
    27  
    28  
    29  #endif /* export_h */