genbindings/cabi: replace qt int types with native C types in C header

This commit is contained in:
mappu 2024-08-14 18:34:05 +12:00
parent 3dcdfbd594
commit 8ac598fbb5

View File

@ -8,9 +8,23 @@ import (
func (p CppParameter) RenderTypeCpp() string {
ret := p.ParameterType
switch p.ParameterType {
case "uint":
ret = "unsigned int"
case "ushort":
ret = "unsigned short"
case "ulong":
ret = "unsigned long"
case "qlonglong":
ret = "int64_t"
case "qulonglong":
ret = "uint64_t"
}
if p.Pointer || p.ByRef {
ret += "*"
}
return ret // ignore const
}