cpueblo's
Programming
     

Google
 
Programming | Tools | Money | Blog | ±âÁ¸ ÀÚ·á½Ç | ÄÚµå»ç¶û ¹æ¸í·Ï | About Me | English | °Ë»ö   
¾ð¾îº°:


ÁÖÁ¦º°:


Àüü Ç׸ñº°


±âŸ


±¤ÈñÀÇ ÀÚÀÛÅø

cpueblo's Library

 

OS °¡ 98 ÀÌ´õ³Ä? - GetVersionEx()

µî·ÏÀÚ : À¯±¤Èñ, 04-08-20 02:09:08




bool IsSystemWin98()
{
	OSVERSIONINFO osv;
	osv.dwOSVersionInfoSize = sizeof(OSVERSIONINFO);
	if (GetVersionEx(&osv))
	{
		switch(osv.dwPlatformId)
		{
			case VER_PLATFORM_WIN32_NT:
				return false;

			case VER_PLATFORM_WIN32s:
			case VER_PLATFORM_WIN32_WINDOWS:
			default:
				return true;
		}
	}
	else
		return true;
}

World of World. http://cpueblo.com by À¯±¤Èñ. mail to cpueblocpueblo.com