<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Code Library &#187; hardware</title>
	<atom:link href="http://www.ucosoft.com/tag/hardware/feed" rel="self" type="application/rss+xml" />
	<link>http://www.ucosoft.com</link>
	<description>Free Source Code and Program Tips</description>
	<lastBuildDate>Thu, 22 Jul 2010 05:17:10 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>How to read the graphics card RAM capacity</title>
		<link>http://www.ucosoft.com/how-to-read-the-graphics-card-ram-capacity.html</link>
		<comments>http://www.ucosoft.com/how-to-read-the-graphics-card-ram-capacity.html#comments</comments>
		<pubDate>Tue, 19 Dec 2006 07:43:32 +0000</pubDate>
		<dc:creator>hamo</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[API]]></category>
		<category><![CDATA[hardware]]></category>
		<category><![CDATA[How-to]]></category>

		<guid isPermaLink="false">http://www.ucosoft.com/archives/61.html</guid>
		<description><![CDATA[When you want to get the RAM capacity of the graphics card installed on the computer, It&#8217;s more simple to use WMI class. You can give a look at the AdapterRAM attribute of Win32_VideoController. The Win32_VideoController WMI class represents the capabilities and management capacity of the video controller. AdapterRAM is one of its attibute: AdapterRAM [...]]]></description>
			<content:encoded><![CDATA[<p>When you want to get the RAM capacity of the graphics card installed on the computer, It&#8217;s more simple to use <a href="http://www.ucosoft.com/archives/60.html">WMI class</a>.</p>
<p>You can give a look at the AdapterRAM attribute of Win32_VideoController.</p>
<p>The Win32_VideoController <a href="http://www.ucosoft.com/archives/60.html">WMI class</a> represents the capabilities and management capacity of the video controller. AdapterRAM is one of its attibute:</p>
<p><coolcode linenum="no"><br />
AdapterRAM<br />
Data type: uint32<br />
Access type: Read-only<br />
Qualifiers: Units(Bytes)<br />
Memory size of the video adapter. </p>
<p>Example: 64000<br />
</coolcode></p>
<p>The full syntax is listed here:</p>
<p><span id="more-61"></span><br />
<coolcode lang="cpp" linenum="no"><br />
class Win32_VideoController : CIM_PCVideoController<br />
{<br />
  uint16 AcceleratorCapabilities[]  ;<br />
  string AdapterCompatibility  ;<br />
  string AdapterDACType  ;<br />
  uint32 AdapterRAM  ;<br />
  uint16 Availability  ;<br />
  string CapabilityDescriptions[]  ;<br />
  string Caption  ;<br />
  uint32 ColorTableEntries  ;<br />
  uint32 ConfigManagerErrorCode  ;<br />
  boolean ConfigManagerUserConfig  ;<br />
  string CreationClassName  ;<br />
  uint32 CurrentBitsPerPixel  ;<br />
  uint32 CurrentHorizontalResolution  ;<br />
  uint64 CurrentNumberOfColors  ;<br />
  uint32 CurrentNumberOfColumns  ;<br />
  uint32 CurrentNumberOfRows  ;<br />
  uint32 CurrentRefreshRate  ;<br />
  uint16 CurrentScanMode  ;<br />
  uint32 CurrentVerticalResolution  ;<br />
  string Description  ;<br />
  string DeviceID  ;<br />
  uint32 DeviceSpecificPens  ;<br />
  uint32 DitherType  ;<br />
  datetime DriverDate  ;<br />
  string DriverVersion  ;<br />
  boolean ErrorCleared  ;<br />
  string ErrorDescription  ;<br />
  uint32 ICMIntent  ;<br />
  uint32 ICMMethod  ;<br />
  string InfFilename  ;<br />
  string InfSection  ;<br />
  datetime InstallDate  ;<br />
  string InstalledDisplayDrivers  ;<br />
  uint32 LastErrorCode  ;<br />
  uint32 MaxMemorySupported  ;<br />
  uint32 MaxNumberControlled  ;<br />
  uint32 MaxRefreshRate  ;<br />
  uint32 MinRefreshRate  ;<br />
  boolean Monochrome  ;<br />
  string Name  ;<br />
  uint16 NumberOfColorPlanes  ;<br />
  uint32 NumberOfVideoPages  ;<br />
  string PNPDeviceID  ;<br />
  uint16 PowerManagementCapabilities[]  ;<br />
  boolean PowerManagementSupported  ;<br />
  uint16 ProtocolSupported  ;<br />
  uint32 ReservedSystemPaletteEntries  ;<br />
  uint32 SpecificationVersion  ;<br />
  string Status  ;<br />
  uint16 StatusInfo  ;<br />
  string SystemCreationClassName  ;<br />
  string SystemName  ;<br />
  uint32 SystemPaletteEntries  ;<br />
  datetime TimeOfLastReset  ;<br />
  uint16 VideoArchitecture  ;<br />
  uint16 VideoMemoryType  ;<br />
  uint16 VideoMode  ;<br />
  string VideoModeDescription  ;<br />
  string VideoProcessor  ;<br />
};<br />
</coolcode></p>

	Tags: <strong><a href="http://www.ucosoft.com/tag/api" title="API" rel="tag">API</a>, <a href="http://www.ucosoft.com/tag/hardware" title="hardware" rel="tag">hardware</a>, <a href="http://www.ucosoft.com/tag/how-to" title="How-to" rel="tag">How-to</a></strong><br />
]]></content:encoded>
			<wfw:commentRss>http://www.ucosoft.com/how-to-read-the-graphics-card-ram-capacity.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

