Skip to content

Commit

Permalink
- Fix generating CFX Native issue, But Fivem have publish new API for…
Browse files Browse the repository at this point in the history
… CFX-NATIVE (https://runtime.fivem.net/doc/natives_cfx.json)

- Update Native generated and comit

- Little UI Update

Now is already up-to-date.
  • Loading branch information
iTexZoz committed Jul 20, 2020
1 parent 294b522 commit 33a62fa
Show file tree
Hide file tree
Showing 134 changed files with 34,337 additions and 34,309 deletions.
3,273 changes: 1,664 additions & 1,609 deletions build/cfx/fivem/CFX.lua → build/cfx/CFX-NATIVE/CFX.lua

Large diffs are not rendered by default.

116 changes: 58 additions & 58 deletions build/cfx/fivem/APP.lua → build/cfx/GTAV/APP.lua
Original file line number Diff line number Diff line change
Expand Up @@ -11,38 +11,38 @@ function AppClearBlock() end
--@description This natives does not have an official description.
--@module NATIVE
--@submodule APP
--@see APP_CLOSE_APP
--@usage void APP_CLOSE_APP();
--@see APP_CLOSE_BLOCK
--@usage void APP_CLOSE_BLOCK();

--@return void
function AppCloseApp() end
function AppCloseBlock() end

--@description This natives does not have an official description.
--@module NATIVE
--@submodule APP
--@see APP_CLOSE_BLOCK
--@usage void APP_CLOSE_BLOCK();

--@return void
function AppCloseBlock() end
--@see APP_DELETE_APP_DATA
--@usage BOOL APP_DELETE_APP_DATA(char* appName);
--@params appName char*
--@return BOOL
function AppDeleteAppData(appName) end

--@description This natives does not have an official description.
--@module NATIVE
--@submodule APP
--@see APP_DATA_VALID
--@usage int APP_DATA_VALID();
--@see APP_GET_DELETED_FILE_STATUS
--@usage int APP_GET_DELETED_FILE_STATUS();

--@return int
function AppDataValid() end
function AppGetDeletedFileStatus() end

--@description This natives does not have an official description.
--@module NATIVE
--@submodule APP
--@see APP_DELETE_APP_DATA
--@usage BOOL APP_DELETE_APP_DATA(char* appName);
--@params appName char*
--@return BOOL
function AppDeleteAppData(appName) end
--@see APP_CLOSE_APP
--@usage void APP_CLOSE_APP();

--@return void
function AppCloseApp() end

--@description This natives does not have an official description.
--@module NATIVE
Expand All @@ -56,20 +56,11 @@ function AppGetFloat(property) end
--@description This natives does not have an official description.
--@module NATIVE
--@submodule APP
--@see APP_GET_INT
--@usage void APP_GET_INT(ScrHandle property);
--@params property ScrHandle
--@return void
function AppGetInt(property) end

--@description This natives does not have an official description.
--@module NATIVE
--@submodule APP
--@see APP_GET_DELETED_FILE_STATUS
--@usage int APP_GET_DELETED_FILE_STATUS();
--@see APP_DATA_VALID
--@usage int APP_DATA_VALID();

--@return int
function AppGetDeletedFileStatus() end
function AppDataValid() end

--@description This natives does not have an official description.
--@module NATIVE
Expand All @@ -83,11 +74,20 @@ function AppGetString(property) end
--@description This natives does not have an official description.
--@module NATIVE
--@submodule APP
--@see APP_HAS_SYNCED_DATA
--@usage BOOL APP_HAS_SYNCED_DATA(char* appName);
--@see APP_GET_INT
--@usage void APP_GET_INT(ScrHandle property);
--@params property ScrHandle
--@return void
function AppGetInt(property) end

--@description This natives does not have an official description.
--@module NATIVE
--@submodule APP
--@see APP_SET_APP
--@usage void APP_SET_APP(char* appName);
--@params appName char*
--@return BOOL
function AppHasSyncedData(appName) end
--@return void
function AppSetApp(appName) end

--@description This natives does not have an official description.
--@module NATIVE
Expand All @@ -101,40 +101,30 @@ function AppHasLinkedSocialClubAccount() end
--@description This natives does not have an official description.
--@module NATIVE
--@submodule APP
--@see APP_SAVE_DATA
--@usage void APP_SAVE_DATA();

--@see APP_SET_FLOAT
--@usage void APP_SET_FLOAT(char* property,float value);
--@params property char*
--@params value float
--@return void
function AppSaveData() end
function AppSetFloat(property,value) end

--@description This natives does not have an official description.
--@module NATIVE
--@submodule APP
--@see APP_SET_APP
--@usage void APP_SET_APP(char* appName);
--@params appName char*
--@return void
function AppSetApp(appName) end
--@see APP_SAVE_DATA
--@usage void APP_SAVE_DATA();

--@description This natives does not have an official description.
--@module NATIVE
--@submodule APP
--@see APP_SET_FLOAT
--@usage void APP_SET_FLOAT(char* property,float value);
--@params property char*
--@params value float
--@return void
function AppSetFloat(property,value) end
function AppSaveData() end

--@description This natives does not have an official description.
--@module NATIVE
--@submodule APP
--@see APP_SET_STRING
--@usage void APP_SET_STRING(char* property,char* value);
--@params property char*
--@params value char*
--@see APP_SET_BLOCK
--@usage void APP_SET_BLOCK(char* blockName);
--@params blockName char*
--@return void
function AppSetString(property,value) end
function AppSetBlock(blockName) end

--@description This natives does not have an official description.
--@module NATIVE
Expand All @@ -149,8 +139,18 @@ function AppSetInt(property,value) end
--@description This natives does not have an official description.
--@module NATIVE
--@submodule APP
--@see APP_SET_BLOCK
--@usage void APP_SET_BLOCK(char* blockName);
--@params blockName char*
--@see APP_HAS_SYNCED_DATA
--@usage BOOL APP_HAS_SYNCED_DATA(char* appName);
--@params appName char*
--@return BOOL
function AppHasSyncedData(appName) end

--@description This natives does not have an official description.
--@module NATIVE
--@submodule APP
--@see APP_SET_STRING
--@usage void APP_SET_STRING(char* property,char* value);
--@params property char*
--@params value char*
--@return void
function AppSetBlock(blockName) end
function AppSetString(property,value) end
Loading

0 comments on commit 33a62fa

Please sign in to comment.