2024-09-14 04:21:05 +00:00
|
|
|
package qt
|
|
|
|
|
|
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
|
|
|
#include "binding.h"
|
|
|
|
|
|
|
|
struct miqt_string* miqt_strdupg(_GoString_ gs) {
|
|
|
|
return miqt_strdup(_GoStringPtr(gs), _GoStringLen(gs));
|
|
|
|
}
|
|
|
|
|
|
|
|
*/
|
|
|
|
import "C"
|
|
|
|
|
2024-09-14 06:26:59 +00:00
|
|
|
import (
|
|
|
|
"unsafe"
|
|
|
|
)
|
|
|
|
|
2024-09-14 04:21:05 +00:00
|
|
|
// miqt_strdupg will strdup a Go string into a miqt_string*.
|
|
|
|
// It is typed as returning an unsafe.Pointer because Cgo types cannot be shared
|
|
|
|
// across Go file boundaries.
|
|
|
|
func miqt_strdupg(s string) unsafe.Pointer {
|
2024-09-14 06:26:59 +00:00
|
|
|
return unsafe.Pointer(C.miqt_strdupg(s))
|
2024-09-14 04:21:05 +00:00
|
|
|
}
|