<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="FeedCreator 1.8" -->
<?xml-stylesheet href="http://update.proggen.org/lib/exe/css.php?s=feed" type="text/css"?>
<rdf:RDF
    xmlns="http://purl.org/rss/1.0/"
    xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
    xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
    xmlns:dc="http://purl.org/dc/elements/1.1/">
    <channel rdf:about="http://update.proggen.org/feed.php">
        <title>proggen.org windows:api:tutorial</title>
        <description></description>
        <link>http://update.proggen.org/</link>
        <image rdf:resource="http://update.proggen.org/lib/tpl/proggenY/images/favicon.ico" />
       <dc:date>2026-04-19T19:19:15+0200</dc:date>
        <items>
            <rdf:Seq>
                <rdf:li rdf:resource="http://update.proggen.org/doku.php?id=windows:api:tutorial:firstwindow&amp;rev=1663868366"/>
                <rdf:li rdf:resource="http://update.proggen.org/doku.php?id=windows:api:tutorial:helloworld&amp;rev=1663868366"/>
                <rdf:li rdf:resource="http://update.proggen.org/doku.php?id=windows:api:tutorial:start&amp;rev=1663868366"/>
            </rdf:Seq>
        </items>
    </channel>
    <image rdf:about="http://update.proggen.org/lib/tpl/proggenY/images/favicon.ico">
        <title>proggen.org</title>
        <link>http://update.proggen.org/</link>
        <url>http://update.proggen.org/lib/tpl/proggenY/images/favicon.ico</url>
    </image>
    <item rdf:about="http://update.proggen.org/doku.php?id=windows:api:tutorial:firstwindow&amp;rev=1663868366">
        <dc:format>text/html</dc:format>
        <dc:date>2022-09-22T19:39:26+0200</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>windows:api:tutorial:firstwindow</title>
        <link>http://update.proggen.org/doku.php?id=windows:api:tutorial:firstwindow&amp;rev=1663868366</link>
        <description>Das erste Fenster

Der Code


#include &lt;windows.h&gt;

LRESULT CALLBACK WndProc(HWND, UINT, WPARAM, LPARAM);

int WINAPI WinMain (HINSTANCE hInstance, HINSTANCE hPrevInstance, 
                    LPSTR lpCmdLine, int nCmdShow)
{
    MSG msg;
    HWND hwnd;
    WNDCLASS WndClass;
    
    WndClass.style = CS_HREDRAW | CS_VREDRAW;
    WndClass.cbClsExtra = 0;
    WndClass.cbWndExtra = 0;
    WndClass.lpszClassName = TEXT (&quot;MainWindow&quot;);
    WndClass.hInstance = hInstance;
    WndClass.hbrBackground …</description>
    </item>
    <item rdf:about="http://update.proggen.org/doku.php?id=windows:api:tutorial:helloworld&amp;rev=1663868366">
        <dc:format>text/html</dc:format>
        <dc:date>2022-09-22T19:39:26+0200</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>windows:api:tutorial:helloworld</title>
        <link>http://update.proggen.org/doku.php?id=windows:api:tutorial:helloworld&amp;rev=1663868366</link>
        <description>Hello World Programm

Wie in jedem anständigen Tutorial will ich Ihnen die Besonderheiten eines Windowsprogrammes aufzeigen, indem ich Ihnen ein kleines Hello World Programm vorstelle.

Der Code


#include &lt;windows.h&gt;

int WINAPI WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, 
                   PSTR szCmdLine, int iCmdShow)
{
    MessageBox(NULL, TEXT(&quot;Hello World&quot;), TEXT(&quot;Hello World - Programm&quot;), 0);
    return 0;
}</description>
    </item>
    <item rdf:about="http://update.proggen.org/doku.php?id=windows:api:tutorial:start&amp;rev=1663868366">
        <dc:format>text/html</dc:format>
        <dc:date>2022-09-22T19:39:26+0200</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>windows:api:tutorial:start</title>
        <link>http://update.proggen.org/doku.php?id=windows:api:tutorial:start&amp;rev=1663868366</link>
        <description>WinAPI Tutorial

Die WinAPI (Windows Application Programming Interface) stellt eine Programmierschnittstelle von Windows dar. Sie wird dazu verwendet Windows-Anwendungen zu entwickeln. Sie stellt einen sehr direkten Weg dar Windows zu nutzen. Allerdings sind Anwendungen die Sie unter Benutzung der WinAPI entwickeln nicht unter einem anderen Betriebssystem startbar, es sei denn man benutzt</description>
    </item>
</rdf:RDF>
