[WIN/API/Doku]

Von: , Frage gestellt am Di, 9. Nov 1999

Hallo,

weiß jemand ob es eine gute, vollständige Dokumentation der WIN32-API gibt?

Danke, Markus

5 Antworten zu dieser Frage

  1. Antwort von nach 52 Minuten hilfreich
    Re: [WIN/API/Doku]

    Welche Programmiersprache willst du denn einsetzen?
    Ansonsten: "Die" Dokumentation ist natürlich die des Windows-SDK:
    http://msdn.microsoft.com/library/psdk/buildapp/win3...

    Reinhard [Bei dieser Antwort wurde das Vollzitat nachträglich automatisiert entfernt]

    • Antwort von nach 4 Stunden hilfreich
      Re^2: [WIN/API/Doku]

      Ja natürlich. Ich habe aber nach einer guten, sprich verständlichen Doku gesucht.
      Eine in der alle Funktionen gut erklärt werden, mit Parametern usw.

      Trotzdem danke [Bei dieser Antwort wurde das Vollzitat nachträglich automatisiert entfernt]

      • Antwort von nach 4 Stunden hilfreich
        Re^3: [WIN/API/Doku]

        Ja natürlich. Ich habe aber nach einer
        guten, sprich verständlichen Doku
        gesucht.
        Eine in der alle Funktionen gut erklärt
        werden, mit Parametern usw.
        Also, besser kann man es doch nicht erklären, z.B. "RegisterClipboardFormat":
        ..................................

        RegisterClipboardFormat

        The RegisterClipboardFormat function registers a new clipboard format. This format can then be used as a valid clipboard format.

        UINT RegisterClipboardFormat(
        LPCTSTR lpszFormat // name of new format
        );

        Parameters
        lpszFormat
        [in] Pointer to a null-terminated string that names the new format.

        Return Values
        If the function succeeds, the return value identifies the registered clipboard format.

        If the function fails, the return value is zero. To get extended error information, call GetLastError.

        Remarks
        If a registered format with the specified name already exists, a new format is not registered and the return value identifies the existing format. This enables more than one application to copy and paste data using the same registered clipboard format. Note that the format name comparison is case-insensitive.

        Registered clipboard formats are identified by values in the range 0xC000 through 0xFFFF.

        When registered clipboard formats are placed on or retrieved from the clipboard, they must be in the form of an HGLOBAL value.

        Requirements
        Windows NT/2000: Requires Windows NT 3.1 or later.
        Windows 95/98: Requires Windows 95 or later.
        Windows CE: Requires version 1.0 or later.
        Header: Declared in winuser.h; include windows.h.
        Library: Use user32.lib.
        Unicode: Implemented as Unicode and ANSI versions on Windows NT/2000.

        See Also
        Clipboard Overview, Clipboard Functions, CountClipboardFormats, EnumClipboardFormats, GetClipboardFormatName
        ..........................

        Es sind doch alle Parameter und Rückgabewerte der Länge und Breite nach definiert ...

        Reinhard

  2. Antwort von nach einem Tag hilfreich
    Schau doch mal im Petzold nach!

    Dies ist angeblich die Standardantwort, und sie ist nicht schlecht. Dort wird erklärt, wie ein Windows-Programm aufgebaut ist und vieles mehr, und wenn Du dann noch in den Hilfedateien zu Delphi, C++ oder MS-SDK nachschaust, erfährst Du auch, wie Du einem Button eine Windows-Titelzeile verpassen kannst.

    Roland

Keine passende Antwort gefunden? Jetzt eigene Frage stellen!