Changeset 206 for trunk/include


Ignore:
Timestamp:
Aug 12, 2002, 5:54:49 PM (23 years ago)
Author:
umoeller
Message:

Minor updates.

Location:
trunk/include/helpers
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/include/helpers/procstat.h

    r155 r206  
    813813                                         const char *pcszName);
    814814
     815    PQPROCESS32 prc32FindProcessFromPID(PQTOPLEVEL32 pInfo,
     816                                        ULONG pid);
     817
    815818    PQS32SEM16 prc32FindSem16(PQTOPLEVEL32 pInfo,
    816819                              USHORT usSemID);
  • trunk/include/helpers/textview.h

    r201 r206  
    232232                                    // CHS_STRIKEOUT flags set
    233233
    234         PSZ         pszLinkTarget; // if != NULL, pointer to a string in XFORMATDATA.llLinks;
     234        PCSZ        pcszLinkTarget; // if != NULL, pointer to a string in XFORMATDATA.llLinks;
    235235                                    // the word is then part of a link
    236236                                    // V0.9.20 (2002-08-10) [umoeller]
     
    430430     *      Parameters:
    431431     *
    432      *      -- USHORT SHORT1FROMMP(mp1): id of the control.
    433      *      -- USHORT SHORT2FROMMP(mp1): nofify code (TXVN_LINK).
    434      *      -- const char *mp2: link target.
     432     *      --  USHORT SHORT1FROMMP(mp1): id of the control.
     433     *
     434     *      --  USHORT SHORT2FROMMP(mp1): nofify code (TXVN_LINK).
     435     *
     436     *      --  const char *mp2: target of the link that the
     437     *          user clicked on.
    435438     *
    436439     *@@added V0.9.3 (2000-05-18) [umoeller]
  • trunk/include/helpers/winh.h

    r199 r206  
    254254     */
    255255
    256     #define winhRemoveMenuItem(hwndMenu, sItemId) \
    257             (SHORT)WinSendMsg(hwndMenu, MM_REMOVEITEM, MPFROM2SHORT(sItemId, FALSE), 0)
     256    #define winhRemoveMenuItem(hwndMenu, sItemID) \
     257            (SHORT)WinSendMsg(hwndMenu, MM_REMOVEITEM, MPFROM2SHORT(sItemID, FALSE), 0)
     258
     259    BOOL XWPENTRY winhRemoveMenuItems(HWND hwndMenu,
     260                                      const SHORT *asItemIDs,
     261                                      ULONG cItemIDs);
    258262
    259263    /*
Note: See TracChangeset for help on using the changeset viewer.