Skip to content

Commit

Permalink
fixup! feat: regenerate bindings
Browse files Browse the repository at this point in the history
  • Loading branch information
JKRhb committed Jun 29, 2024
1 parent 30cc873 commit 60c0838
Showing 1 changed file with 4 additions and 7 deletions.
11 changes: 4 additions & 7 deletions lib/src/generated/ffi.dart
Original file line number Diff line number Diff line change
Expand Up @@ -775,18 +775,15 @@ class OpenSsl {
}

final class timeval extends ffi.Struct {
@__darwin_time_t()
@__time_t()
external int tv_sec;

@__darwin_suseconds_t()
@__suseconds_t()
external int tv_usec;
}

typedef __darwin_time_t = ffi.Long;
typedef Dart__darwin_time_t = int;
typedef __darwin_suseconds_t = __int32_t;
typedef __int32_t = ffi.Int;
typedef Dart__int32_t = int;
typedef __time_t = ffi.Long;
typedef __suseconds_t = ffi.Long;
typedef BIO = bio_st;

final class bio_st extends ffi.Opaque {}
Expand Down

0 comments on commit 60c0838

Please sign in to comment.