Changeset 147 for trunk/include/helpers


Ignore:
Timestamp:
Mar 16, 2002, 8:53:47 AM (23 years ago)
Author:
umoeller
Message:

Misc updates for Unicode.

Location:
trunk/include/helpers
Files:
7 edited

Legend:

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

    r113 r147  
    8686    {
    8787        ULONG   ulFieldOffset;
    88         PSZ     pszColumnTitle;
     88        PCSZ    pszColumnTitle;
    8989        ULONG   ulDataType;
    9090        ULONG   ulOrientation;
     
    450450     *      This can only be used after BEGIN_CNRINFO().
    451451     *
     452     *      Container sort funcs must have this prototype:
     453     +
     454     +      SHORT EXPENTRY fnCompare(PRECORDCORE p1, PRECORDCORE p2, PVOID pStorage)
     455     *
    452456     *@@added V0.9.0
    453457     */
  • trunk/include/helpers/configsys.h

    r117 r147  
    6666                    // -- CFGRPL_REMOVEPART mode (5)
    6767
    68         PSZ         pszUniqueSearchString2;
     68        PCSZ        pszUniqueSearchString2;
    6969                    // for UNIQUE(statement2):
    7070                    // the "statement2" to search for
     
    7676                    // 2: add before pszSearchString
    7777                    // 3: add after pszSearchString
    78         PSZ         pszVerticalSearchString;
     78        PCSZ        pszVerticalSearchString;
    7979                    // for iVertical == 2 or 3
    8080
    81         PSZ         pszNewLine;
     81        PCSZ        pszNewLine;
    8282                    // this is a copy of stuff before the "|" char
    8383                    // in pszConfigSys given to the constructor
  • trunk/include/helpers/linklist.h

    r141 r147  
    9595    #define LINKLISTMAGIC 0xf124        // could be anything
    9696
    97     typedef signed short _System FNSORTLIST(void*, void*, void*);
     97    typedef signed short XWPENTRY FNSORTLIST(void*, void*, void*);
    9898                            // changed V0.9.0 (99-10-22) [umoeller]
    9999    typedef FNSORTLIST *PFNSORTLIST;
  • trunk/include/helpers/nls.h

    r115 r147  
    9999    APIRET XWPENTRY nlsUpper(PSZ psz, ULONG ulLength);
    100100
     101    /*
     102     *@@ STRINGENTITY:
     103     *
     104     *@@added V0.9.16 (2001-09-29) [umoeller]
     105     */
     106
     107    typedef struct _STRINGENTITY
     108    {
     109        PCSZ    pcszEntity;
     110        PCSZ    *ppcszString;
     111    } STRINGENTITY, *PSTRINGENTITY;
     112
     113    typedef const struct _STRINGENTITY *PCSTRINGENTITY;
     114
     115    VOID nlsInitStrings(HAB hab,
     116                        HMODULE hmod,
     117                        PCSTRINGENTITY paEntities,
     118                        ULONG cEntities);
     119
     120    PCSZ nlsGetString(ULONG ulStringID);
     121
    101122#endif
    102123
  • trunk/include/helpers/stringh.h

    r143 r147  
    145145    ULONG XWPENTRY strhGetBlock(const char *pszSearchIn,
    146146                                PULONG pulSearchOffset,
    147                                 PSZ pszTag,
     147                                const char *pszTag,
    148148                                PSZ *ppszBlock,
    149149                                PSZ *ppszAttribs,
  • trunk/include/helpers/tmsgfile.h

    r113 r147  
    5454                         PCSZ pcszMessageName,
    5555                         PXSTRING pstr,
    56                          PSZ *pTable,
     56                         PCSZ *pTable,
    5757                         ULONG cTableEntries);
    5858
  • trunk/include/helpers/winh.h

    r135 r147  
    652652
    653653    BOOL XWPENTRY winhAdjustControls(HWND hwndDlg,
    654                                      MPARAM *pmpFlags,
     654                                     const MPARAM *pmpFlags,
    655655                                     ULONG ulCount,
    656656                                     PSWP pswpNew,
Note: See TracChangeset for help on using the changeset viewer.