Changeset 838 for trunk/src/3rdparty/os2/xsystray/apilib/xsystray.h
- Timestamp:
- Mar 18, 2011, 4:53:58 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/3rdparty/os2/xsystray/apilib/xsystray.h
r837 r838 33 33 #endif 34 34 35 36 37 38 39 35 40 #ifdef XSTAPI_IMPL 36 # define XSTAPI __declspec(dllexport) EXPENTRY41 # 37 42 #else 38 #define XSTAPI EXPENTRY 43 # if defined(XSTAPI_FPTRS) 44 # define XSTAPI(rt,fn) rt (* EXPENTRY fn) 45 # elif defined(XSTAPI_FPTRS_STATIC) 46 # define XSTAPI(rt,fn) static rt (* EXPENTRY fn) 47 # else 48 # define XSTAPI(rt,fn) rt EXPENTRY fn 49 # endif 39 50 #endif 40 51 … … 97 108 */ 98 109 99 BOOL XSTAPI xstQuerySysTrayVersion(PULONG pulMajor, PULONG pulMinor,100 PULONG pulRevision);110 (PULONG pulMajor, PULONG pulMinor, 111 PULONG pulRevision); 101 112 102 113 /* … … 141 152 */ 142 153 143 BOOL XSTAPI xstAddSysTrayIcon(HWND hwnd, USHORT usId, HPOINTER hIcon,144 PCSZ pcszToolTip, ULONG ulMsgId, ULONG ulFlags);154 (HWND hwnd, USHORT usId, HPOINTER hIcon, 155 PCSZ pcszToolTip, ULONG ulMsgId, ULONG ulFlags); 145 156 146 157 /* … … 153 164 */ 154 165 155 BOOL XSTAPI xstReplaceSysTrayIcon(HWND hwnd, USHORT usId, HPOINTER hIcon);166 (HWND hwnd, USHORT usId, HPOINTER hIcon); 156 167 157 168 /* … … 164 175 */ 165 176 166 BOOL XSTAPI xstRemoveSysTrayIcon(HWND hwnd, USHORT usId);177 (HWND hwnd, USHORT usId); 167 178 168 179 /* … … 183 194 */ 184 195 185 BOOL XSTAPI xstSetSysTrayIconToolTip(HWND hwnd, USHORT usId, PCSZ pcszToolTip);196 (HWND hwnd, USHORT usId, PCSZ pcszToolTip); 186 197 187 198 /* … … 191 202 */ 192 203 193 BOOL XSTAPI xstShowSysTrayIconBalloon(HWND hwnd, USHORT usId, PCSZ pcszTitle,204 (HWND hwnd, USHORT usId, PCSZ pcszTitle, 194 205 PCSZ pcszText, ULONG ulFlags, 195 206 ULONG ulTimeout); … … 201 212 */ 202 213 203 BOOL XSTAPI xstHideSysTrayIconBalloon(HWND hwnd, USHORT usId);214 (HWND hwnd, USHORT usId); 204 215 205 216 /* … … 212 223 */ 213 224 214 BOOL XSTAPI xstQuerySysTrayIconRect(HWND hwnd, USHORT usId, PRECTL prclRect);225 (HWND hwnd, USHORT usId, PRECTL prclRect); 215 226 216 227 /* … … 226 237 */ 227 238 228 ULONG XSTAPI xstGetSysTrayCreatedMsgId();239 (); 229 240 230 241 /* … … 246 257 */ 247 258 248 ULONG XSTAPI xstGetSysTrayMaxTextLen();259 (); 249 260 250 261 #if __cplusplus
Note:
See TracChangeset
for help on using the changeset viewer.