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;
}
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
add a comment |
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
1
Possible duplicate of Structs that refer to each other
– chriptus13
Jan 3 at 3:16
add a comment |
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
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
c conventions
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
add a comment |
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
add a comment |
2 Answers
2
active
oldest
votes
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;
};
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
add a comment |
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;
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
add a comment |
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
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
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;
};
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
add a comment |
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;
};
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
add a comment |
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;
};
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;
};
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
add a comment |
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
add a comment |
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;
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
add a comment |
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;
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
add a comment |
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;
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;
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
add a comment |
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
add a comment |
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.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
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
1
Possible duplicate of Structs that refer to each other
– chriptus13
Jan 3 at 3:16