CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: OReubens

Search: Search took 0.45 seconds.

  1. Replies
    6
    Views
    2,006

    Re: Struct with internal linkage

    erp...

    typo on my end here. I meant:


    struct foo
    {
    int bar;
    };
  2. Replies
    6
    Views
    2,006

    Re: Struct with internal linkage

    that's what 'static' is for (when used declaratively at global scope)



    static struct foo
    {
    int bar;
    };
Results 1 to 2 of 2





Click Here to Expand Forum to Full Width

Featured