Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 896233
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 15, 20262026-05-15T14:41:40+00:00 2026-05-15T14:41:40+00:00

I prefer to define certain macros inside of my struct definitions, so it’s easy

  • 0

I prefer to define certain macros inside of my struct definitions, so it’s easy to see possible values for a given member. For example:

typedef struct foo_t {
    uint16_t flags;
        #define FOO_FLAG_BELL       0x0001
        #define FOO_FLAG_BOOK       0x0002
        #define FOO_FLAG_CANDLE     0x0004
        #define FOO_FLAG_LANTERN    0x0008
}

Doxygen wants to list those macros at the top, with all of the other macros. I’ve make use of the grouping tags (//@{ and //@}) to group these macros together, and named the group with foo_t.flags, but I’d like to find a way to more-closely associate the values with the structure. Should I use \link and \endlink to somehow link to that group name?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-15T14:41:40+00:00Added an answer on May 15, 2026 at 2:41 pm

    Use enums.

    typedef struct foo_t {
      enum flag_define { 
        FOO_FLAG_BELL    =  0x0001,    /**< The flag for the bell or whatever. */
        FOO_FLAG_BOOK    =  0x0002,
        FOO_FLAG_CANDLE  =  0x0004,
        FOO_FLAG_LANTERN =  0x0008,
      } flags:16;                      /**< My flag thing */
    }  foo_t;
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I was surprised to see that the following doesn't work as expected. define('CONST_TEST','Some string');
I would define some helper functions, and i prefer write them in C instead
In order to define a new datatype in C for example a type for
Possible Duplicates: Why would someone use #define to define constants? difference between a macro
I prefer to keep our SSIS packages in a solution on the server, not
I prefer dark backgrounds for coding, and I've downloaded a jar file containing an
I prefer to use OOP in large scale projects like the one I'm working
Which way do you prefer to create your forms in MVC? <% Html.Form() {
I would much prefer to do this without catching an exception in LoadXml() and
I would prefer that a console app would default to multithreaded debug. warning level

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.