<?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[low- und highbyte]]></title><description><![CDATA[<p>Hi,</p>
<p>weiss jemand ob es in der MFC Funktionen gibt, die das High-Byte und das Low-Byte eines Wertes ermitteln können. Oder anders gefragt: wie kann man das selber machen?</p>
]]></description><link>https://www.c-plusplus.net/forum/topic/83848/low-und-highbyte</link><generator>RSS for Node</generator><lastBuildDate>Mon, 13 Apr 2026 06:15:19 GMT</lastBuildDate><atom:link href="https://www.c-plusplus.net/forum/topic/83848.rss" rel="self" type="application/rss+xml"/><pubDate>Wed, 25 Aug 2004 08:15:03 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to low- und highbyte on Wed, 25 Aug 2004 08:15:03 GMT]]></title><description><![CDATA[<p>Hi,</p>
<p>weiss jemand ob es in der MFC Funktionen gibt, die das High-Byte und das Low-Byte eines Wertes ermitteln können. Oder anders gefragt: wie kann man das selber machen?</p>
]]></description><link>https://www.c-plusplus.net/forum/post/590537</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/590537</guid><dc:creator><![CDATA[q150022]]></dc:creator><pubDate>Wed, 25 Aug 2004 08:15:03 GMT</pubDate></item><item><title><![CDATA[Reply to low- und highbyte on Wed, 25 Aug 2004 08:21:03 GMT]]></title><description><![CDATA[<p>Kennst du schon HIBYTE und LOBYTE? <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f603.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--grinning_face_with_big_eyes"
      title=":D"
      alt="😃"
    /></p>
]]></description><link>https://www.c-plusplus.net/forum/post/590539</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/590539</guid><dc:creator><![CDATA[estartu]]></dc:creator><pubDate>Wed, 25 Aug 2004 08:21:03 GMT</pubDate></item><item><title><![CDATA[Reply to low- und highbyte on Wed, 25 Aug 2004 08:28:43 GMT]]></title><description><![CDATA[<p>q150022 schrieb:</p>
<blockquote>
<p>Hi,</p>
<p>weiss jemand ob es in der MFC Funktionen gibt, die das High-Byte und das Low-Byte eines Wertes ermitteln können. Oder anders gefragt: wie kann man das selber machen?</p>
</blockquote>
<p>Hängt von Endianness des Systems ab. Bei handelsüblichen 32 Bit Systemen (little-endian) geht folgendes:</p>
<pre><code class="language-cpp">WORD w; //...
BYTE lo = w &amp; 0xff;
BYTE hi = w &gt;&gt; 8 &amp; 0xff;
</code></pre>
]]></description><link>https://www.c-plusplus.net/forum/post/590545</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/590545</guid><dc:creator><![CDATA[Shlo]]></dc:creator><pubDate>Wed, 25 Aug 2004 08:28:43 GMT</pubDate></item></channel></rss>