Search:

Type: Posts; User: Luken8r

Search: Search took 0.01 seconds.

  1. Replies
    2
    Views
    2,428

    Makefile to output list of sources

    I am in the process of trying to consolidate several IDE project files into one large make file. During the build, the prior projects used a perl file to grab the input source list from the project...
  2. Replies
    2
    Views
    15,063

    pointer to array of structs

    I have a pointer to an array of two structures. The structure is:



    ==in some header.h==
    typedef struct
    {

    float distX;
    float distY;
  3. Replies
    4
    Views
    5,125

    Ahh, I did not know that. Thanks for the tip.

    Ahh, I did not know that. Thanks for the tip.
  4. Replies
    4
    Views
    5,125

    pointer to array of structs

    What is the proper syntax for initializing a pointer to an array of structures?

    I have the following definitions:


    typedef struct
    {
    int Targets;
    Target_t targets[TARGETS_MAX];
    }...
  5. Replies
    6
    Views
    1,564

    Must be legal enough, it worked as anticipated....

    Must be legal enough, it worked as anticipated. Thanks for the suggestion.
  6. Replies
    6
    Views
    1,564

    It should be valid code, its a legacy header file...

    It should be valid code, its a legacy header file with many structure definitions like that
  7. Replies
    6
    Views
    1,564

    Structure pointer

    Im having an issue with a structure pointer that I was hoping I could get some input on
    say I have the following struct:




    typedef struct {
    int var1;
    int var2;
    } SomeStruct,...
Results 1 to 7 of 8