Implement FCM [WIP]

This commit is contained in:
2024-05-31 15:22:27 +02:00
parent 0ad82bb248
commit dfcee5dfc7
33 changed files with 665 additions and 337 deletions

View File

@@ -13,9 +13,8 @@ func main() {
panic(err)
}
err = bfcodegen.GenerateEnumSpecs(wd, dest)
err = bfcodegen.GenerateEnumSpecs(wd, dest, bfcodegen.EnumGenOptions{})
if err != nil {
panic(err)
}
}

View File

@@ -13,7 +13,7 @@ func main() {
panic(err)
}
err = bfcodegen.GenerateCharsetIDSpecs(wd, dest)
err = bfcodegen.GenerateCharsetIDSpecs(wd, dest, bfcodegen.CSIDGenOptions{})
if err != nil {
panic(err)
}