Help for this page

Select Code to Download


  1. or download this
    struct pMG;
    typedef struct pMG pMG;
    struct pMG {
       ....
    };
    
  2. or download this
    struct pMG {
        ....
    };
    typedef struct pMG pMG;
    
  3. or download this
    typedef struct pMG {
        ....
    } pMG;
    
  4. or download this
    typedef struct {
        ....
    } pMG;