View Single Post
Afronanny
Veteran Member
Join Date: Aug 2009
Old 12-24-2010 , 11:17   Re: [EXTENSION] System2
Reply With Quote #10

Quote:
Originally Posted by Popoklopsi View Post
good idea, i will add this
PHP Code:
enum Os {
    
Os_Linux 1,
    
Os_Windows,
    
Os_Mac
}

cell_t Native_GetOS(IPluginContext *pContext, const cell_t *params)
{
#ifdef __linux__
    
return Os_Linux;
#elif defined _WIN32
    
return Os_Windows;
#elif defined __APPLE__
    
return Os_Mac;
#endif

Afronanny is offline