<?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[&#x27;CDS_FUllSCREEN&#x27; undeclared (first use in this Function)]]></title><description><![CDATA[<p>Mit</p>
<p>ChangeDisplaySettings(&amp;devmode, CDS_FULLSCREEN);</p>
<p>will ich die Auflösung wechseln, allerdings sagt mit DevC++ 4:</p>
<p>'CDS_FUllSCREEN' undeclared (first use in this Function)</p>
<p>Allerdings steht auf msdn (<a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/gdi/devcons_7gz7.asp" rel="nofollow">http://msdn.microsoft.com/library/default.asp?url=/library/en-us/gdi/devcons_7gz7.asp</a>) das CDS_FULLSCREEN möhlich ist. Die anderen Parameter, die auf msdn beschrieben sind gehen auch, aber die will ich nicht! Woran liegts und wie kann ich das beheben? Gibt es andere Wege die Auflösung zu ändern?</p>
<p>mfg</p>
]]></description><link>https://www.c-plusplus.net/forum/topic/82443/cds_fullscreen-undeclared-first-use-in-this-function</link><generator>RSS for Node</generator><lastBuildDate>Wed, 15 Apr 2026 09:13:01 GMT</lastBuildDate><atom:link href="https://www.c-plusplus.net/forum/topic/82443.rss" rel="self" type="application/rss+xml"/><pubDate>Wed, 11 Aug 2004 10:25:03 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to &#x27;CDS_FUllSCREEN&#x27; undeclared (first use in this Function) on Wed, 11 Aug 2004 10:25:03 GMT]]></title><description><![CDATA[<p>Mit</p>
<p>ChangeDisplaySettings(&amp;devmode, CDS_FULLSCREEN);</p>
<p>will ich die Auflösung wechseln, allerdings sagt mit DevC++ 4:</p>
<p>'CDS_FUllSCREEN' undeclared (first use in this Function)</p>
<p>Allerdings steht auf msdn (<a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/gdi/devcons_7gz7.asp" rel="nofollow">http://msdn.microsoft.com/library/default.asp?url=/library/en-us/gdi/devcons_7gz7.asp</a>) das CDS_FULLSCREEN möhlich ist. Die anderen Parameter, die auf msdn beschrieben sind gehen auch, aber die will ich nicht! Woran liegts und wie kann ich das beheben? Gibt es andere Wege die Auflösung zu ändern?</p>
<p>mfg</p>
]]></description><link>https://www.c-plusplus.net/forum/post/579769</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/579769</guid><dc:creator><![CDATA[joomoo]]></dc:creator><pubDate>Wed, 11 Aug 2004 10:25:03 GMT</pubDate></item><item><title><![CDATA[Reply to &#x27;CDS_FUllSCREEN&#x27; undeclared (first use in this Function) on Wed, 11 Aug 2004 10:26:50 GMT]]></title><description><![CDATA[<p>der ist im DEV leider nicht implementiert.</p>
<p>CDS_FULLSCREEN hat den Wert <a href="http://4.Am" rel="nofollow">4.Am</a> besten, du machst nen<br />
#define CDS_FULLSCREEN 4</p>
]]></description><link>https://www.c-plusplus.net/forum/post/579773</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/579773</guid><dc:creator><![CDATA[DocJunioR]]></dc:creator><pubDate>Wed, 11 Aug 2004 10:26:50 GMT</pubDate></item><item><title><![CDATA[Reply to &#x27;CDS_FUllSCREEN&#x27; undeclared (first use in this Function) on Wed, 11 Aug 2004 10:32:40 GMT]]></title><description><![CDATA[<p>Jo Danke das klappt. Aber was heißt<br />
#define<br />
Warum mach ich nicht<br />
char CDS_FULLSCREEN = 4;<br />
?</p>
]]></description><link>https://www.c-plusplus.net/forum/post/579783</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/579783</guid><dc:creator><![CDATA[joomoo]]></dc:creator><pubDate>Wed, 11 Aug 2004 10:32:40 GMT</pubDate></item><item><title><![CDATA[Reply to &#x27;CDS_FUllSCREEN&#x27; undeclared (first use in this Function) on Wed, 11 Aug 2004 10:48:59 GMT]]></title><description><![CDATA[<p>rofl. du programmierst in winapi weißt aber die einfachsten sachen nicht?</p>
]]></description><link>https://www.c-plusplus.net/forum/post/579802</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/579802</guid><dc:creator><![CDATA[looool]]></dc:creator><pubDate>Wed, 11 Aug 2004 10:48:59 GMT</pubDate></item><item><title><![CDATA[Reply to &#x27;CDS_FUllSCREEN&#x27; undeclared (first use in this Function) on Wed, 11 Aug 2004 10:51:20 GMT]]></title><description><![CDATA[<p>#define ist eine Präprozessordirektive<br />
Du kannst einem Zeichen oder eine Zeichenkette einen Namen geben.</p>
<p>beispielsweise :</p>
<pre><code class="language-cpp">#define MainProgram     int main (int argc, char **argv)

#define BEGIN           {
#define PROGOK          return 0;
#define END             }
#define WRITE           printf

MainProgram
BEGIN
  WRITE (&quot;Hallo Welt!&quot;);
  PROGOK
END
</code></pre>
<p>Der Präprozessor des C-Compilers macht daraus</p>
<pre><code class="language-cpp">int main (int argc, char **argv)
{
  printf (&quot;Hallo Welt!&quot;);
  return 0;
}
</code></pre>
<p>benutzt du eigentlich header-dateien ?<br />
da sollte #define auch drin stehen</p>
]]></description><link>https://www.c-plusplus.net/forum/post/579803</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/579803</guid><dc:creator><![CDATA[DocJunioR]]></dc:creator><pubDate>Wed, 11 Aug 2004 10:51:20 GMT</pubDate></item><item><title><![CDATA[Reply to &#x27;CDS_FUllSCREEN&#x27; undeclared (first use in this Function) on Wed, 11 Aug 2004 10:58:32 GMT]]></title><description><![CDATA[<p>ähh. ich benutze eigentlich nur die windows.h und je nach gebrauch auch mal die anderen.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/579812</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/579812</guid><dc:creator><![CDATA[joomoo]]></dc:creator><pubDate>Wed, 11 Aug 2004 10:58:32 GMT</pubDate></item><item><title><![CDATA[Reply to &#x27;CDS_FUllSCREEN&#x27; undeclared (first use in this Function) on Wed, 11 Aug 2004 11:00:06 GMT]]></title><description><![CDATA[<p>kann ich eigentlich auch mehrere Zeilen mit #define machen?<br />
z.B.<br />
#define ABC &quot;{<br />
return;<br />
}&quot;<br />
?</p>
]]></description><link>https://www.c-plusplus.net/forum/post/579814</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/579814</guid><dc:creator><![CDATA[joomoo]]></dc:creator><pubDate>Wed, 11 Aug 2004 11:00:06 GMT</pubDate></item><item><title><![CDATA[Reply to &#x27;CDS_FUllSCREEN&#x27; undeclared (first use in this Function) on Wed, 11 Aug 2004 11:04:43 GMT]]></title><description><![CDATA[<p>nein</p>
]]></description><link>https://www.c-plusplus.net/forum/post/579819</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/579819</guid><dc:creator><![CDATA[DocJunioR]]></dc:creator><pubDate>Wed, 11 Aug 2004 11:04:43 GMT</pubDate></item><item><title><![CDATA[Reply to &#x27;CDS_FUllSCREEN&#x27; undeclared (first use in this Function) on Wed, 11 Aug 2004 11:26:05 GMT]]></title><description><![CDATA[<p>DocJunioR schrieb:</p>
<blockquote>
<p>nein</p>
</blockquote>
<p>lol. doch.</p>
<p>\ ans ende setzen</p>
]]></description><link>https://www.c-plusplus.net/forum/post/579848</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/579848</guid><dc:creator><![CDATA[&#x5C;&#x5C;&#x5C;&#x5C;]]></dc:creator><pubDate>Wed, 11 Aug 2004 11:26:05 GMT</pubDate></item><item><title><![CDATA[Reply to &#x27;CDS_FUllSCREEN&#x27; undeclared (first use in this Function) on Wed, 11 Aug 2004 11:55:55 GMT]]></title><description><![CDATA[<p>Wie ans Ende? Du meinst</p>
<p>#define &quot;blabla \<br />
blabla \<br />
blabla&quot;</p>
<p>Oder wie?</p>
]]></description><link>https://www.c-plusplus.net/forum/post/579884</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/579884</guid><dc:creator><![CDATA[joomoo]]></dc:creator><pubDate>Wed, 11 Aug 2004 11:55:55 GMT</pubDate></item></channel></rss>