21 lines
294 B
C
21 lines
294 B
C
/*
|
|
* nostr_scheme.h — WebKitGTK nostr:// URI scheme handler
|
|
*/
|
|
|
|
#ifndef NOSTR_SCHEME_H
|
|
#define NOSTR_SCHEME_H
|
|
|
|
#include <webkit2/webkit2.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
void nostr_scheme_register(WebKitWebContext *ctx);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* NOSTR_SCHEME_H */
|