Explorar el Código

Update raylib_parser.c

pull/2622/head
Ray hace 2 años
cometido por GitHub
padre
commit
273c780b67
No se encontró ninguna clave conocida en la base de datos para esta firma ID de clave GPG: 4AEE18F83AFDEB23
Se han modificado 1 ficheros con 6 adiciones y 7 borrados
  1. +6
    -7
      parser/raylib_parser.c

+ 6
- 7
parser/raylib_parser.c Ver fichero

@ -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");

Cargando…
Cancelar
Guardar