瀏覽代碼

Update raylib_parser.c

pull/2622/head
Ray 2 年之前
committed by GitHub
父節點
當前提交
273c780b67
沒有發現已知的金鑰在資料庫的簽署中 GPG Key ID: 4AEE18F83AFDEB23
共有 1 個文件被更改,包括 6 次插入7 次删除
  1. +6
    -7
      parser/raylib_parser.c

+ 6
- 7
parser/raylib_parser.c 查看文件

@ -47,7 +47,6 @@
OTHER NOTES:
- This parser could work with other C header files if mentioned constraints are followed.
- This parser does not require <string.h> library, all data is parsed directly from char buffers.
LICENSE: zlib/libpng
@ -103,11 +102,11 @@ typedef enum {
// Define info data
typedef struct DefineInfo {
char name[64]; // Define name
n">DefineType type; // Define type
char value[256]; // Define value
char desc[128]; // Define description
bool isHex; // Define is hex number (for types INT, LONG)
char name[64]; // Define name
kt">int type; // Define type
char value[256]; // Define value
char desc[128]; // Define description
bool isHex; // Define is hex number (for types INT, LONG)
} DefineInfo;
// Struct info data
@ -1066,7 +1065,7 @@ static void ShowCommandLineInfo(void)
printf("// //\n");
printf("// more info and bugs-report: github.com/raysan5/raylib/parser //\n");
printf("// //\n");
printf("// Copyright (c) 2021 Ramon Santamaria (@raysan5) //\n");
printf("// Copyright (c) 2021-2022 Ramon Santamaria (@raysan5) //\n");
printf("// //\n");
printf("//////////////////////////////////////////////////////////////////////////////////\n\n");

Loading…
取消
儲存