Update raylib_api.* by CI

This commit is contained in:
github-actions[bot] 2024-07-01 11:06:39 +00:00
parent 2bc75b877a
commit 1fb0565148
4 changed files with 75 additions and 57 deletions

View file

@ -60,16 +60,22 @@ 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 = "malloc(sz)",
value = "((sz > MAX_ALLOC_SIZE)? malloc(sz) : NULL)",
description = ""
},
{
name = "RL_CALLOC(n,sz)",
type = "MACRO",
value = "calloc(n,sz)",
value = "((n*sz > MAX_ALLOC_SIZE)? calloc(n,sz) : NULL)",
description = ""
},
{