Changeset 147 for trunk/include/helpers
- Timestamp:
- Mar 16, 2002, 8:53:47 AM (23 years ago)
- Location:
- trunk/include/helpers
- Files:
-
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/helpers/cnrh.h
r113 r147 86 86 { 87 87 ULONG ulFieldOffset; 88 P SZpszColumnTitle;88 PCSZ pszColumnTitle; 89 89 ULONG ulDataType; 90 90 ULONG ulOrientation; … … 450 450 * This can only be used after BEGIN_CNRINFO(). 451 451 * 452 * Container sort funcs must have this prototype: 453 + 454 + SHORT EXPENTRY fnCompare(PRECORDCORE p1, PRECORDCORE p2, PVOID pStorage) 455 * 452 456 *@@added V0.9.0 453 457 */ -
trunk/include/helpers/configsys.h
r117 r147 66 66 // -- CFGRPL_REMOVEPART mode (5) 67 67 68 P SZpszUniqueSearchString2;68 PCSZ pszUniqueSearchString2; 69 69 // for UNIQUE(statement2): 70 70 // the "statement2" to search for … … 76 76 // 2: add before pszSearchString 77 77 // 3: add after pszSearchString 78 P SZpszVerticalSearchString;78 PCSZ pszVerticalSearchString; 79 79 // for iVertical == 2 or 3 80 80 81 P SZpszNewLine;81 PCSZ pszNewLine; 82 82 // this is a copy of stuff before the "|" char 83 83 // in pszConfigSys given to the constructor -
trunk/include/helpers/linklist.h
r141 r147 95 95 #define LINKLISTMAGIC 0xf124 // could be anything 96 96 97 typedef signed short _SystemFNSORTLIST(void*, void*, void*);97 typedef signed short XWPENTRY FNSORTLIST(void*, void*, void*); 98 98 // changed V0.9.0 (99-10-22) [umoeller] 99 99 typedef FNSORTLIST *PFNSORTLIST; -
trunk/include/helpers/nls.h
r115 r147 99 99 APIRET XWPENTRY nlsUpper(PSZ psz, ULONG ulLength); 100 100 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 101 122 #endif 102 123 -
trunk/include/helpers/stringh.h
r143 r147 145 145 ULONG XWPENTRY strhGetBlock(const char *pszSearchIn, 146 146 PULONG pulSearchOffset, 147 PSZpszTag,147 const char *pszTag, 148 148 PSZ *ppszBlock, 149 149 PSZ *ppszAttribs, -
trunk/include/helpers/tmsgfile.h
r113 r147 54 54 PCSZ pcszMessageName, 55 55 PXSTRING pstr, 56 P SZ *pTable,56 PCSZ *pTable, 57 57 ULONG cTableEntries); 58 58 -
trunk/include/helpers/winh.h
r135 r147 652 652 653 653 BOOL XWPENTRY winhAdjustControls(HWND hwndDlg, 654 MPARAM *pmpFlags,654 const MPARAM *pmpFlags, 655 655 ULONG ulCount, 656 656 PSWP pswpNew,
Note:
See TracChangeset
for help on using the changeset viewer.