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

Search:

Type: Posts; User: Sam Fugarino

Search: Search took 0.02 seconds.

  1. Re: #pragma comment....(use it to share data_seg?)

    See below:

    #pragma data_seg("Shared")
    CCamera Camera;
    int x = 0;
    #pragma data_seg()

    #pragma comment(linker, "/section:Shared,rws")

    At least one of the shared variables must be intialized!
  2. Replies
    7
    Views
    1,356

    Re: Virtual Func Problem

    The overridden function in the derived class should not be virtual. If not then the base class will be called.
Results 1 to 2 of 2





Click Here to Expand Forum to Full Width

Featured