Co-Dependent Definitions in C





.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ height:90px;width:728px;box-sizing:border-box;
}







3















Suppose we have a function pointer on a struct, which has the struct itself as the first argument, a typical callback scenario.



typedef void (*callback_type)(my_struct_type *mst, int whatever);

typedef struct {
// lots of fun stuff
callback_type notify_me;
} my_struct_type;


This produces a compiler error on the first typedef, as one might expect. error: unknown type name my_struct_type. Reversing the definitions produces the same result, but the unknown type is callback_type.



The easy solution is to do the following:



typedef struct my_struct_type_S {
// lots of fun stuff
void (*notify_me)(my_struct_type_S *mst, int whatever);
} my_struct_type;


However, doing this elides the function pointer type definition, which it would be nice to be able to easily refer to later, and use for static type checks, nice error messages, etc.



Any suggestions on how to resolve this?



Edit on "possible duplicate":
This scenario involves function pointer typedefs that are arcane to many people. I think this is a good example for that case, and additionally, the accepted answer is very clean, clear, and simple.










share|improve this question




















  • 1





    Possible duplicate of Structs that refer to each other

    – chriptus13
    Jan 3 at 3:16


















3















Suppose we have a function pointer on a struct, which has the struct itself as the first argument, a typical callback scenario.



typedef void (*callback_type)(my_struct_type *mst, int whatever);

typedef struct {
// lots of fun stuff
callback_type notify_me;
} my_struct_type;


This produces a compiler error on the first typedef, as one might expect. error: unknown type name my_struct_type. Reversing the definitions produces the same result, but the unknown type is callback_type.



The easy solution is to do the following:



typedef struct my_struct_type_S {
// lots of fun stuff
void (*notify_me)(my_struct_type_S *mst, int whatever);
} my_struct_type;


However, doing this elides the function pointer type definition, which it would be nice to be able to easily refer to later, and use for static type checks, nice error messages, etc.



Any suggestions on how to resolve this?



Edit on "possible duplicate":
This scenario involves function pointer typedefs that are arcane to many people. I think this is a good example for that case, and additionally, the accepted answer is very clean, clear, and simple.










share|improve this question




















  • 1





    Possible duplicate of Structs that refer to each other

    – chriptus13
    Jan 3 at 3:16














3












3








3








Suppose we have a function pointer on a struct, which has the struct itself as the first argument, a typical callback scenario.



typedef void (*callback_type)(my_struct_type *mst, int whatever);

typedef struct {
// lots of fun stuff
callback_type notify_me;
} my_struct_type;


This produces a compiler error on the first typedef, as one might expect. error: unknown type name my_struct_type. Reversing the definitions produces the same result, but the unknown type is callback_type.



The easy solution is to do the following:



typedef struct my_struct_type_S {
// lots of fun stuff
void (*notify_me)(my_struct_type_S *mst, int whatever);
} my_struct_type;


However, doing this elides the function pointer type definition, which it would be nice to be able to easily refer to later, and use for static type checks, nice error messages, etc.



Any suggestions on how to resolve this?



Edit on "possible duplicate":
This scenario involves function pointer typedefs that are arcane to many people. I think this is a good example for that case, and additionally, the accepted answer is very clean, clear, and simple.










share|improve this question
















Suppose we have a function pointer on a struct, which has the struct itself as the first argument, a typical callback scenario.



typedef void (*callback_type)(my_struct_type *mst, int whatever);

typedef struct {
// lots of fun stuff
callback_type notify_me;
} my_struct_type;


This produces a compiler error on the first typedef, as one might expect. error: unknown type name my_struct_type. Reversing the definitions produces the same result, but the unknown type is callback_type.



The easy solution is to do the following:



typedef struct my_struct_type_S {
// lots of fun stuff
void (*notify_me)(my_struct_type_S *mst, int whatever);
} my_struct_type;


However, doing this elides the function pointer type definition, which it would be nice to be able to easily refer to later, and use for static type checks, nice error messages, etc.



Any suggestions on how to resolve this?



Edit on "possible duplicate":
This scenario involves function pointer typedefs that are arcane to many people. I think this is a good example for that case, and additionally, the accepted answer is very clean, clear, and simple.







c conventions






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Jan 5 at 1:43







PyroAVR

















asked Jan 3 at 3:10









PyroAVRPyroAVR

3591415




3591415








  • 1





    Possible duplicate of Structs that refer to each other

    – chriptus13
    Jan 3 at 3:16














  • 1





    Possible duplicate of Structs that refer to each other

    – chriptus13
    Jan 3 at 3:16








1




1





Possible duplicate of Structs that refer to each other

– chriptus13
Jan 3 at 3:16





Possible duplicate of Structs that refer to each other

– chriptus13
Jan 3 at 3:16












2 Answers
2






active

oldest

votes


















5














You can do this by giving the struct a tag and using a forward declaration of the struct. Then you can use the typedef for the function pointer, and subsequently complete the definition of the struct.



typedef struct my_struct_type_S my_struct_type;

typedef void (*callback_type)(my_struct_type *mst, int whatever);

struct my_struct_type_S {
// lots of fun stuff
callback_type notify_me;
};





share|improve this answer





















  • 1





    With the emphasis on the forward declaration part :)

    – David C. Rankin
    Jan 3 at 3:21











  • Very clean, I like it. Thanks for the info!

    – PyroAVR
    Jan 5 at 1:41



















3














You need to define the tag of the struct



typedef void (*callback_type)(struct _my_struct_type *mst, int whatever);

typedef struct _my_struct_type {
// lots of fun stuff
callback_type notify_me;
} my_struct_type;





share|improve this answer
























  • When I compile this with 7.2.1 gcc -Wall I get warning: ‘struct _my_struct_type’ declared inside parameter list will not be visible outside of this definition or declaration typedef void (*callback_type)(struct _my_struct_type *mst, int whatever);

    – dmuir
    Jan 3 at 12:09












Your Answer






StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");

StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});

function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});


}
});














draft saved

draft discarded


















StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f54015835%2fco-dependent-definitions-in-c%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown

























2 Answers
2






active

oldest

votes








2 Answers
2






active

oldest

votes









active

oldest

votes






active

oldest

votes









5














You can do this by giving the struct a tag and using a forward declaration of the struct. Then you can use the typedef for the function pointer, and subsequently complete the definition of the struct.



typedef struct my_struct_type_S my_struct_type;

typedef void (*callback_type)(my_struct_type *mst, int whatever);

struct my_struct_type_S {
// lots of fun stuff
callback_type notify_me;
};





share|improve this answer





















  • 1





    With the emphasis on the forward declaration part :)

    – David C. Rankin
    Jan 3 at 3:21











  • Very clean, I like it. Thanks for the info!

    – PyroAVR
    Jan 5 at 1:41
















5














You can do this by giving the struct a tag and using a forward declaration of the struct. Then you can use the typedef for the function pointer, and subsequently complete the definition of the struct.



typedef struct my_struct_type_S my_struct_type;

typedef void (*callback_type)(my_struct_type *mst, int whatever);

struct my_struct_type_S {
// lots of fun stuff
callback_type notify_me;
};





share|improve this answer





















  • 1





    With the emphasis on the forward declaration part :)

    – David C. Rankin
    Jan 3 at 3:21











  • Very clean, I like it. Thanks for the info!

    – PyroAVR
    Jan 5 at 1:41














5












5








5







You can do this by giving the struct a tag and using a forward declaration of the struct. Then you can use the typedef for the function pointer, and subsequently complete the definition of the struct.



typedef struct my_struct_type_S my_struct_type;

typedef void (*callback_type)(my_struct_type *mst, int whatever);

struct my_struct_type_S {
// lots of fun stuff
callback_type notify_me;
};





share|improve this answer















You can do this by giving the struct a tag and using a forward declaration of the struct. Then you can use the typedef for the function pointer, and subsequently complete the definition of the struct.



typedef struct my_struct_type_S my_struct_type;

typedef void (*callback_type)(my_struct_type *mst, int whatever);

struct my_struct_type_S {
// lots of fun stuff
callback_type notify_me;
};






share|improve this answer














share|improve this answer



share|improve this answer








edited Jan 3 at 3:21

























answered Jan 3 at 3:19









dbushdbush

104k14109146




104k14109146








  • 1





    With the emphasis on the forward declaration part :)

    – David C. Rankin
    Jan 3 at 3:21











  • Very clean, I like it. Thanks for the info!

    – PyroAVR
    Jan 5 at 1:41














  • 1





    With the emphasis on the forward declaration part :)

    – David C. Rankin
    Jan 3 at 3:21











  • Very clean, I like it. Thanks for the info!

    – PyroAVR
    Jan 5 at 1:41








1




1





With the emphasis on the forward declaration part :)

– David C. Rankin
Jan 3 at 3:21





With the emphasis on the forward declaration part :)

– David C. Rankin
Jan 3 at 3:21













Very clean, I like it. Thanks for the info!

– PyroAVR
Jan 5 at 1:41





Very clean, I like it. Thanks for the info!

– PyroAVR
Jan 5 at 1:41













3














You need to define the tag of the struct



typedef void (*callback_type)(struct _my_struct_type *mst, int whatever);

typedef struct _my_struct_type {
// lots of fun stuff
callback_type notify_me;
} my_struct_type;





share|improve this answer
























  • When I compile this with 7.2.1 gcc -Wall I get warning: ‘struct _my_struct_type’ declared inside parameter list will not be visible outside of this definition or declaration typedef void (*callback_type)(struct _my_struct_type *mst, int whatever);

    – dmuir
    Jan 3 at 12:09
















3














You need to define the tag of the struct



typedef void (*callback_type)(struct _my_struct_type *mst, int whatever);

typedef struct _my_struct_type {
// lots of fun stuff
callback_type notify_me;
} my_struct_type;





share|improve this answer
























  • When I compile this with 7.2.1 gcc -Wall I get warning: ‘struct _my_struct_type’ declared inside parameter list will not be visible outside of this definition or declaration typedef void (*callback_type)(struct _my_struct_type *mst, int whatever);

    – dmuir
    Jan 3 at 12:09














3












3








3







You need to define the tag of the struct



typedef void (*callback_type)(struct _my_struct_type *mst, int whatever);

typedef struct _my_struct_type {
// lots of fun stuff
callback_type notify_me;
} my_struct_type;





share|improve this answer













You need to define the tag of the struct



typedef void (*callback_type)(struct _my_struct_type *mst, int whatever);

typedef struct _my_struct_type {
// lots of fun stuff
callback_type notify_me;
} my_struct_type;






share|improve this answer












share|improve this answer



share|improve this answer










answered Jan 3 at 3:20









chriptus13chriptus13

244413




244413













  • When I compile this with 7.2.1 gcc -Wall I get warning: ‘struct _my_struct_type’ declared inside parameter list will not be visible outside of this definition or declaration typedef void (*callback_type)(struct _my_struct_type *mst, int whatever);

    – dmuir
    Jan 3 at 12:09



















  • When I compile this with 7.2.1 gcc -Wall I get warning: ‘struct _my_struct_type’ declared inside parameter list will not be visible outside of this definition or declaration typedef void (*callback_type)(struct _my_struct_type *mst, int whatever);

    – dmuir
    Jan 3 at 12:09

















When I compile this with 7.2.1 gcc -Wall I get warning: ‘struct _my_struct_type’ declared inside parameter list will not be visible outside of this definition or declaration typedef void (*callback_type)(struct _my_struct_type *mst, int whatever);

– dmuir
Jan 3 at 12:09





When I compile this with 7.2.1 gcc -Wall I get warning: ‘struct _my_struct_type’ declared inside parameter list will not be visible outside of this definition or declaration typedef void (*callback_type)(struct _my_struct_type *mst, int whatever);

– dmuir
Jan 3 at 12:09


















draft saved

draft discarded




















































Thanks for contributing an answer to Stack Overflow!


  • Please be sure to answer the question. Provide details and share your research!

But avoid



  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.


To learn more, see our tips on writing great answers.




draft saved


draft discarded














StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f54015835%2fco-dependent-definitions-in-c%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







Popular posts from this blog

MongoDB - Not Authorized To Execute Command

in spring boot 2.1 many test slices are not allowed anymore due to multiple @BootstrapWith

How to fix TextFormField cause rebuild widget in Flutter