17 lines
627 B
C
17 lines
627 B
C
![]() |
#ifndef ANGEL_WINGS_WINGS_H
|
||
|
#define ANGEL_WINGS_WINGS_H
|
||
|
|
||
|
#include <dart_api.h>
|
||
|
#include "angel_wings.h"
|
||
|
|
||
|
Dart_NativeFunction ResolveName(Dart_Handle name, int argc, bool *auto_setup_scope);
|
||
|
Dart_Handle HandleError(Dart_Handle handle);
|
||
|
|
||
|
void Dart_WingsSocket_bindIPv4(Dart_NativeArguments arguments);
|
||
|
void Dart_WingsSocket_bindIPv6(Dart_NativeArguments arguments);
|
||
|
void Dart_WingsSocket_getPort(Dart_NativeArguments arguments);
|
||
|
void Dart_WingsSocket_write(Dart_NativeArguments arguments);
|
||
|
void Dart_WingsSocket_closeDescriptor(Dart_NativeArguments arguments);
|
||
|
void Dart_WingsSocket_close(Dart_NativeArguments arguments);
|
||
|
|
||
|
#endif
|