File tree Expand file tree Collapse file tree 3 files changed +16
-6
lines changed
Expand file tree Collapse file tree 3 files changed +16
-6
lines changed Original file line number Diff line number Diff line change 11module github.com/erigontech/mdbx-go
22
3- go 1.20
3+ go 1.24
44
55require github.com/ianlancetaylor/cgosymbolizer v0.0.0-20241129212102-9c50ad6b591e
Original file line number Diff line number Diff line change 11package mdbx
22
3- /*
4- #include <stdlib.h>
5- #include <stdio.h>
6- #include "mdbxgo.h"
7- */
83import "C"
94import (
105 "fmt"
116 "sync"
127 "unsafe"
138)
149
10+ /*
11+ #cgo nocallback mdbxgo_cursor_get
12+ #cgo noescape mdbxgo_cursor_get
13+ #include <stdlib.h>
14+ #include <stdio.h>
15+ #include "mdbxgo.h"
16+ */
17+ import "C"
18+
1519const (
1620 // Flags for Cursor.Get
1721 //
Original file line number Diff line number Diff line change 11package mdbx
22
33/*
4+ #cgo nocallback mdbxgo_get
5+ #cgo noescape mdbxgo_get
6+ #cgo nocallback mdbxgo_put2
7+ #cgo noescape mdbxgo_put2
8+ #cgo nocallback mdbxgo_put1
9+ #cgo noescape mdbxgo_put1
410#include <stdlib.h>
511#include <stdio.h>
612#include "mdbxgo.h"
You can’t perform that action at this time.
0 commit comments