• Structures
    In my application I have a number of different structure variables. In all cases the members are unsigned char. I pass the structure to a function via a pointer where the various structures may have...
  • structures
    so lots of threads on this forum say you must not care about how the compiler puts things into structures with alignment and padding and stuff then we look at example code with structures used to...
  • Problem with structures containing structures
    Hello, I have a problem with the following structure declaration: typedef struct { HDEntriesTYPE HDWindowStartSTRUCT; } actualPlayerStatusTYPE; typedef struct { unsigned long StartClusterUL;...
  • Declaring structure as extern
    I am using a structure named my_struct which is to be declared as extern. struct my_struct{ int a; int b; }; struct my_struct first; struct my_struct second; How do I declare the structure...
  • Structured Project Directories
    I find that having a "standard" project directory with sub-directories for all projects to be of great value. I do not know what others have done when they start a new project, but I can tell you...