<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[mein compiler meckert!]]></title><description><![CDATA[<pre><code class="language-cpp">WNDCLASSEX   wc;
wc.hIconSm       =  LoadIcon(NULL, IDI_APPLICATION);
</code></pre>
<p>Die Meckernachricht:</p>
<blockquote>
<p>warning C4133: '=': Inkompatible Typen - von 'HICON' zu 'LPCWSTR'</p>
</blockquote>
<p>Muss ich das casten oder so? Wie?</p>
]]></description><link>https://www.c-plusplus.net/forum/topic/234787/mein-compiler-meckert</link><generator>RSS for Node</generator><lastBuildDate>Wed, 08 Apr 2026 13:07:32 GMT</lastBuildDate><atom:link href="https://www.c-plusplus.net/forum/topic/234787.rss" rel="self" type="application/rss+xml"/><pubDate>Sun, 22 Feb 2009 14:15:32 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to mein compiler meckert! on Sun, 22 Feb 2009 14:15:32 GMT]]></title><description><![CDATA[<pre><code class="language-cpp">WNDCLASSEX   wc;
wc.hIconSm       =  LoadIcon(NULL, IDI_APPLICATION);
</code></pre>
<p>Die Meckernachricht:</p>
<blockquote>
<p>warning C4133: '=': Inkompatible Typen - von 'HICON' zu 'LPCWSTR'</p>
</blockquote>
<p>Muss ich das casten oder so? Wie?</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1668081</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1668081</guid><dc:creator><![CDATA[compiler meckerer]]></dc:creator><pubDate>Sun, 22 Feb 2009 14:15:32 GMT</pubDate></item><item><title><![CDATA[Reply to mein compiler meckert! on Sun, 22 Feb 2009 14:35:08 GMT]]></title><description><![CDATA[<p>Mit WinAPI mach ich schon einige Zeit fast nix mehr.</p>
<p>Einige Sachen sind Compilerabhängig - weis aber nicht<br />
ob das auch dazu gehört.</p>
<p>Probier mal:</p>
<pre><code class="language-cpp">wc.hIconSm         = LoadIcon(GetModuleHandle(NULL),
                       IDI_APPLICATION);
</code></pre>
]]></description><link>https://www.c-plusplus.net/forum/post/1668095</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1668095</guid><dc:creator><![CDATA[f.-th.]]></dc:creator><pubDate>Sun, 22 Feb 2009 14:35:08 GMT</pubDate></item><item><title><![CDATA[Reply to mein compiler meckert! on Sun, 22 Feb 2009 14:56:44 GMT]]></title><description><![CDATA[<p>das warning bleibt leider das gleiche.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1668106</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1668106</guid><dc:creator><![CDATA[compiler meckerer]]></dc:creator><pubDate>Sun, 22 Feb 2009 14:56:44 GMT</pubDate></item><item><title><![CDATA[Reply to mein compiler meckert! on Sun, 22 Feb 2009 14:59:15 GMT]]></title><description><![CDATA[<pre><code class="language-cpp">LoadIcon(NULL,  MAKEINTRESOURCE (IDI_APPLICATION)
</code></pre>
]]></description><link>https://www.c-plusplus.net/forum/post/1668107</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1668107</guid><dc:creator><![CDATA[load icon n00b]]></dc:creator><pubDate>Sun, 22 Feb 2009 14:59:15 GMT</pubDate></item></channel></rss>