Changeset 15 for trunk/include
- Timestamp:
- Dec 11, 2000, 8:54:20 AM (25 years ago)
- Location:
- trunk/include
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/helpers/cnrh.h
r14 r15 347 347 * 348 348 * <B>Target emphasis:</B> 349 * 349 350 * For Name, Text, and Details view, per default target emphasis 350 351 * during d'n'd is only displayed _around_ the record core. 352 * This allows users to drop records onto each other. 351 353 * If you add CA_ORDEREDTARGETEMPH, target emphasis is only 352 * displayed _be low_ the record core. If you add CA_MIXEDTARGETEMPH,353 * both emphasis types are possible.354 * displayed _between_ records (to reorder records). 355 * If you add CA_MIXEDTARGETEMPH, both emphasis types are possible. 354 356 * 355 357 * Additional flags for _all_ views: -
trunk/include/helpers/dosh.h
r14 r15 46 46 47 47 BOOL doshIsWarp4(VOID); 48 49 APIRET doshQueryAvailPhysMem(PULONG pulMem,50 ULONG ulLogicalSwapDrive);51 48 52 49 PSZ doshQuerySysErrorMsg(APIRET arc); -
trunk/include/helpers/undoc.h
r14 r15 73 73 74 74 /* 75 * WPS object styles 76 * V0.9.7 (2000-12-10) [umoeller] 77 */ 78 79 #ifndef OBJSTYLE_LOCKEDINPLACE 80 #define OBJSTYLE_LOCKEDINPLACE 0x00020000 81 #endif 82 83 /* 75 84 * Some more OS/2 default menu items: 76 85 * -
trunk/include/helpers/xstring.h
r14 r15 55 55 56 56 void XWPENTRY xstrInitSet(PXSTRING pxstr, PSZ pszNew); 57 typedef void XWPENTRY XSTRINITSET(PXSTRING pxstr, PSZ pszNew); 58 typedef XSTRINITSET *PXSTRINITSET; 57 59 58 60 void XWPENTRY xstrInitCopy(PXSTRING pxstr, const char *pcszSource); 61 typedef void XWPENTRY XSTRINITCOPY(PXSTRING pxstr, const char *pcszSource); 62 typedef XSTRINITCOPY *PXSTRINITCOPY; 59 63 60 64 void XWPENTRY xstrClear(PXSTRING pxstr); … … 63 67 64 68 PXSTRING XWPENTRY xstrCreate(ULONG ulPreAllocate); 69 typedef PXSTRING XWPENTRY XSTRCREATE(ULONG ulPreAllocate); 70 typedef XSTRCREATE *PXSTRCREATE; 65 71 66 72 VOID XWPENTRY xstrFree(PXSTRING pxstr); 73 typedef VOID XWPENTRY XSTRFREE(PXSTRING pxstr); 74 typedef XSTRFREE *PXSTRFREE; 67 75 68 76 ULONG XWPENTRY xstrset(PXSTRING pxstr, PSZ pszNew); 77 typedef ULONG XWPENTRY XSTRSET(PXSTRING pxstr, PSZ pszNew); 78 typedef XSTRSET *PXSTRSET; 69 79 70 80 ULONG XWPENTRY xstrcpy(PXSTRING pxstr, const char *pcszSource); 81 typedef ULONG XWPENTRY XSTRCPY(PXSTRING pxstr, const char *pcszSource); 82 typedef XSTRCPY *PXSTRCPY; 71 83 72 84 ULONG XWPENTRY xstrcat(PXSTRING pxstr, const char *pcszSource); 73 85 typedef ULONG XWPENTRY XSTRCAT(PXSTRING pxstr, const char *pcszSource); 74 86 typedef XSTRCAT *PXSTRCAT; 87 88 ULONG XWPENTRY xstrcatc(PXSTRING pxstr, CHAR c); 89 typedef ULONG XWPENTRY XSTRCATC(PXSTRING pxstr, CHAR c); 90 typedef XSTRCATC *PXSTRCATC; 75 91 76 92 /* … … 90 106 const char *pcszBeginChars, 91 107 const char *pcszEndChars); 108 typedef PSZ XWPENTRY XSTRFINDWORD(const XSTRING *pxstr, 109 ULONG ulOfs, 110 const XSTRING *pstrFind, 111 size_t *pShiftTable, 112 PBOOL pfRepeatFind, 113 const char *pcszBeginChars, 114 const char *pcszEndChars); 115 typedef XSTRFINDWORD *PXSTRFINDWORD; 92 116 93 117 ULONG XWPENTRY xstrrpl(PXSTRING pxstr, … … 97 121 size_t *pShiftTable, 98 122 PBOOL pfRepeatFind); 123 typedef ULONG XWPENTRY XSTRRPL(PXSTRING pxstr, 124 PULONG pulOfs, 125 const XSTRING *pstrSearch, 126 const XSTRING *pstrReplace, 127 size_t *pShiftTable, 128 PBOOL pfRepeatFind); 129 typedef XSTRRPL *PXSTRRPL; 99 130 100 131 ULONG XWPENTRY xstrcrpl(PXSTRING pxstr, … … 102 133 const char *pcszSearch, 103 134 const char *pcszReplace); 135 typedef ULONG XWPENTRY XSTRCRPL(PXSTRING pxstr, 136 PULONG pulOfs, 137 const char *pcszSearch, 138 const char *pcszReplace); 139 typedef XSTRCRPL *PXSTRCRPL; 104 140 #endif 105 141 -
trunk/include/setup.h
r7 r15 8 8 #ifndef SETUP_HEADER_INCLUDED 9 9 #define SETUP_HEADER_INCLUDED 10 11 // XWPEXPORT defines the standard linkage for the 12 // XWorkplace helpers. 13 #ifdef __EMX__ 14 #define XWPENTRY 15 #elif defined (__IBMCPP__) || defined (__IBMC__) 16 #define XWPENTRY _Optlink 17 #endif 10 18 11 19 /*************************************************************
Note:
See TracChangeset
for help on using the changeset viewer.