Update raylib_api.* by CI

This commit is contained in:
github-actions[bot] 2024-07-01 16:30:47 +00:00
parent fbd79cde5f
commit 6d30220acc
4 changed files with 57 additions and 75 deletions

View file

@ -60,22 +60,16 @@ return {
value = "(180.0f/PI)",
description = ""
},
{
name = "MAX_ALLOC_SIZE",
type = "INT_MATH",
value = "1024*1024",
description = "1GB of maximum allocation data"
},
{
name = "RL_MALLOC(sz)",
type = "MACRO",
value = "((sz > MAX_ALLOC_SIZE)? malloc(sz) : NULL)",
value = "malloc(sz)",
description = ""
},
{
name = "RL_CALLOC(n,sz)",
type = "MACRO",
value = "((n*sz > MAX_ALLOC_SIZE)? calloc(n,sz) : NULL)",
value = "calloc(n,sz)",
description = ""
},
{