OS Question

THE POST BELOW IS MORE THAN 5 YEARS OLD. RELATED SUPPORT INFORMATION MIGHT BE OUTDATED OR DEPRECATED

On 21/05/2011 at 21:23, xxxxxxxx wrote:

User Information:
Cinema 4D Version:   12 
Platform:   Windows  ; Mac  ;  
Language(s) :     C++  ;

---------
Is there a way via the SDK to determine the users Operating System?

I see the FLAGS

  
  
    
    
    enum OPERATINGSYSTEM
    {
    public:
      OPERATINGSYSTEM_WIN;
      OPERATINGSYSTEM_OSX;
      OPERATINGSYSTEM_UNIX;
    };  
      
    
in the SDK but I am not sure how use them.    
  
Anyone have any insight on this?  
  
Thanks,  
  
Shawn  

THE POST BELOW IS MORE THAN 5 YEARS OLD. RELATED SUPPORT INFORMATION MIGHT BE OUTDATED OR DEPRECATED

On 22/05/2011 at 01:43, xxxxxxxx wrote:

You need to call GeGetCurrentOS (it's in c4d_general).

THE POST BELOW IS MORE THAN 5 YEARS OLD. RELATED SUPPORT INFORMATION MIGHT BE OUTDATED OR DEPRECATED

On 22/05/2011 at 05:37, xxxxxxxx wrote:

Thanks Spedler.

~Shawn