• typedef struct error
    Hi I have code something like in hello.h #ifndef _HELLO_H #define _HELLO_H #define S16 signed short int #define S8 signed char typedef struct player { int x; int y; int score; }; extern...
  • Using "typedef" to define array
    Hi, I'm using C Comipler V7.10, Vision2 V2.40 with AT89C51SND1C micro. For my program I want to have an array for Names. I know I can do it the following way: unsigned char Names[10][10]; //...
  • osPoolDef instead of _declare_box in a typedef struct
    Hello Everyone, I'm doing migration from RTX to CMSIS-RTOS following the apnt_264. In the RTX case I declared a box inside a typedef struct as in the following code: typedef struct mystruct_s...
  • typedef coloring on Uvision
    Hi, Is it possible to change the color of typedefs (only) when editing C files with Uvision V5? Thanks, John
  • typedef with a member "pointer to itself"
    Hello forum I've a c progamming question: I want to place a function pointer into a typedef with a function parameter "pointer to the typedef itself": typedef struct pExampleStructTypdef {...