<?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[Programme aufs niedrigste kompressen]]></title><description><![CDATA[<p>Hi, mein Kumpel kann seine Exe Dateien auf 6 KB runterschrauben. Ich hab erst letztens seine Datei angesehen. Er benutzt irgendeine Technik. Kennt ihr die? Eine gewöhnliche Exe (ohne Inhalt) ist bei mir aber 29 KB o.ä. groß. Weis einer, was er da macht? Kann ihn nicht fragen er is im Urlaub^^</p>
]]></description><link>https://www.c-plusplus.net/forum/topic/193606/programme-aufs-niedrigste-kompressen</link><generator>RSS for Node</generator><lastBuildDate>Tue, 30 Jun 2026 13:08:50 GMT</lastBuildDate><atom:link href="https://www.c-plusplus.net/forum/topic/193606.rss" rel="self" type="application/rss+xml"/><pubDate>Thu, 27 Sep 2007 18:27:37 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to Programme aufs niedrigste kompressen on Thu, 27 Sep 2007 18:27:37 GMT]]></title><description><![CDATA[<p>Hi, mein Kumpel kann seine Exe Dateien auf 6 KB runterschrauben. Ich hab erst letztens seine Datei angesehen. Er benutzt irgendeine Technik. Kennt ihr die? Eine gewöhnliche Exe (ohne Inhalt) ist bei mir aber 29 KB o.ä. groß. Weis einer, was er da macht? Kann ihn nicht fragen er is im Urlaub^^</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1374018</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1374018</guid><dc:creator><![CDATA[Wolta]]></dc:creator><pubDate>Thu, 27 Sep 2007 18:27:37 GMT</pubDate></item><item><title><![CDATA[Reply to Programme aufs niedrigste kompressen on Thu, 27 Sep 2007 19:16:13 GMT]]></title><description><![CDATA[<p><a href="http://www.phreedom.org/solar/code/tinype/" rel="nofollow">http://www.phreedom.org/solar/code/tinype/</a><br />
mit kompirimieren hat das aber noch nix zu tun...</p>
<p>gibts aber auch: <a href="http://www.google.at/search?hl=de&amp;q=exe+packer&amp;btnG=Google-Suche&amp;meta=" rel="nofollow">http://www.google.at/search?hl=de&amp;q=exe+packer&amp;btnG=Google-Suche&amp;meta=</a></p>
]]></description><link>https://www.c-plusplus.net/forum/post/1374035</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1374035</guid><dc:creator><![CDATA[dot]]></dc:creator><pubDate>Thu, 27 Sep 2007 19:16:13 GMT</pubDate></item><item><title><![CDATA[Reply to Programme aufs niedrigste kompressen on Thu, 27 Sep 2007 19:32:55 GMT]]></title><description><![CDATA[<p>Das kleinste Programm mit VC2005EE geht so:</p>
<pre><code class="language-cpp">// Smallest program:
// Compile with: cl /c /O1 /GS- CPP_VS2005.cpp
// Link with: link /subsystem:console CPP_VS2005.obj kernel32.lib

#include &lt;windows.h&gt;
#pragma comment(linker, &quot;/entry:entry&quot;)

void entry()
{
  TCHAR szText[] = TEXT(&quot;Hello world\n&quot;);
  DWORD dwWritten;
  WriteConsole(GetStdHandle(STD_OUTPUT_HANDLE), szText, lstrlen(szText), &amp;dwWritten, NULL);
}
</code></pre>
<p>Ergibt bei mir:</p>
<pre><code>27.09.2007  21:30             2.048 CPP_VS2005.exe
</code></pre>
<p>Und das ganz ohne Tricks... (oder wo siehst Du hier ein Trick?)</p>
<p>Gut, ich verwende keine CRT, dass ist aber auch schon alles...</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1374042</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1374042</guid><dc:creator><![CDATA[Jochen Kalmbach]]></dc:creator><pubDate>Thu, 27 Sep 2007 19:32:55 GMT</pubDate></item><item><title><![CDATA[Reply to Programme aufs niedrigste kompressen on Thu, 27 Sep 2007 19:43:20 GMT]]></title><description><![CDATA[<p>Jochen Kalmbach schrieb:</p>
<blockquote>
<p>Ergibt bei mir:</p>
<pre><code>27.09.2007  21:30             2.048 CPP_VS2005.exe
</code></pre>
</blockquote>
<p>hmmm... für das, was das programm macht, finde ich's trotzdem sehr gross.<br />
woran liegt das?<br />
<img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f642.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--slightly_smiling_face"
      title=":)"
      alt="🙂"
    /></p>
]]></description><link>https://www.c-plusplus.net/forum/post/1374049</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1374049</guid><dc:creator><![CDATA[Apeman]]></dc:creator><pubDate>Thu, 27 Sep 2007 19:43:20 GMT</pubDate></item><item><title><![CDATA[Reply to Programme aufs niedrigste kompressen on Thu, 27 Sep 2007 19:44:23 GMT]]></title><description><![CDATA[<p>Und da du keine CRT verwendest kannst du auch kein RTTI, Exceptions etc. verwenden <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f609.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--winking_face"
      title=";)"
      alt="😉"
    /></p>
]]></description><link>https://www.c-plusplus.net/forum/post/1374050</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1374050</guid><dc:creator><![CDATA[hustbaer]]></dc:creator><pubDate>Thu, 27 Sep 2007 19:44:23 GMT</pubDate></item><item><title><![CDATA[Reply to Programme aufs niedrigste kompressen on Thu, 27 Sep 2007 19:45:09 GMT]]></title><description><![CDATA[<p>Das liegt am Format einer COFF-Datei (EXE). Kannst dazu mal die COFF-Specification durchlesen:<br />
<a href="http://www.microsoft.com/whdc/system/platform/firmware/PECOFF.mspx" rel="nofollow">http://www.microsoft.com/whdc/system/platform/firmware/PECOFF.mspx</a></p>
]]></description><link>https://www.c-plusplus.net/forum/post/1374051</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1374051</guid><dc:creator><![CDATA[Jochen Kalmbach]]></dc:creator><pubDate>Thu, 27 Sep 2007 19:45:09 GMT</pubDate></item><item><title><![CDATA[Reply to Programme aufs niedrigste kompressen on Thu, 27 Sep 2007 19:45:57 GMT]]></title><description><![CDATA[<p>Iiiii, wer will denn schon RTTI??? Sowas hab ich mir nie angetan... Und Exceptions ist nur was für Leute die nicht programmieren können <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f609.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--winking_face"
      title=";)"
      alt="😉"
    /></p>
]]></description><link>https://www.c-plusplus.net/forum/post/1374055</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1374055</guid><dc:creator><![CDATA[Jochen Kalmbach]]></dc:creator><pubDate>Thu, 27 Sep 2007 19:45:57 GMT</pubDate></item><item><title><![CDATA[Reply to Programme aufs niedrigste kompressen on Thu, 27 Sep 2007 19:50:10 GMT]]></title><description><![CDATA[<p>Jochen Kalmbach schrieb:</p>
<blockquote>
<p>Iiiii, wer will denn schon RTTI??? Sowas hab ich mir nie angetan... Und Exceptions ist nur was für Leute die nicht programmieren können <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f609.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--winking_face"
      title=";)"
      alt="😉"
    /></p>
</blockquote>
<p>&lt;°)))o&gt;&lt; :p</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1374056</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1374056</guid><dc:creator><![CDATA[dot]]></dc:creator><pubDate>Thu, 27 Sep 2007 19:50:10 GMT</pubDate></item><item><title><![CDATA[Reply to Programme aufs niedrigste kompressen on Thu, 27 Sep 2007 19:57:49 GMT]]></title><description><![CDATA[<p><a class="plugin-mentions-user plugin-mentions-a" href="https://www.c-plusplus.net/forum/uid/5675">@Jochen</a> Kalmbach:</p>
<p>Öhm naja. Der hat nen ganzen Editor komprimiert und das nachdem er ihn fertig geschrieben hat.<br />
Editor = Texteditor mit den Notepad Funktionen.</p>
<p>Dieses TinyPE oder was das war bringts nicht so wie ich das meinte.<br />
Gibts noch mehr Möglichkeiten?</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1374058</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1374058</guid><dc:creator><![CDATA[Wolta-Antwortet]]></dc:creator><pubDate>Thu, 27 Sep 2007 19:57:49 GMT</pubDate></item><item><title><![CDATA[Reply to Programme aufs niedrigste kompressen on Thu, 27 Sep 2007 19:59:18 GMT]]></title><description><![CDATA[<p>jo, klick meinen anderen link auch an.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1374060</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1374060</guid><dc:creator><![CDATA[dot]]></dc:creator><pubDate>Thu, 27 Sep 2007 19:59:18 GMT</pubDate></item><item><title><![CDATA[Reply to Programme aufs niedrigste kompressen on Thu, 27 Sep 2007 20:00:05 GMT]]></title><description><![CDATA[<p>Ein Texteditor ala Notepad zu machen ist fast so trivial wie &quot;Hello world&quot; das Sample ist auch im PSDK dabei...</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1374061</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1374061</guid><dc:creator><![CDATA[Jochen Kalmbach]]></dc:creator><pubDate>Thu, 27 Sep 2007 20:00:05 GMT</pubDate></item><item><title><![CDATA[Reply to Programme aufs niedrigste kompressen on Fri, 28 Sep 2007 00:53:46 GMT]]></title><description><![CDATA[<p>Jochen Kalmbach schrieb:</p>
<blockquote>
<p>Iiiii, wer will denn schon RTTI??? Sowas hab ich mir nie angetan... Und Exceptions ist nur was für Leute die nicht programmieren können <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f609.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--winking_face"
      title=";)"
      alt="😉"
    /></p>
</blockquote>
<p>Oder Leute die die STL verwenden möchten <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f609.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--winking_face"
      title=";)"
      alt="😉"
    /><br />
EDIT: ad RTTI: AFAIK braucht man auch für dynamic_cast die CRT, und dynamic_cast verwenden schon einige... /EDIT</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1374112</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1374112</guid><dc:creator><![CDATA[hustbaer]]></dc:creator><pubDate>Fri, 28 Sep 2007 00:53:46 GMT</pubDate></item></channel></rss>