Changeset 1126
- Timestamp:
- Mar 8, 2013, 7:05:25 AM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/3rdparty/os2/xsystray/apilib/xsystray.c
r952 r1126 248 248 } 249 249 250 BOOL xstQuerySysTrayVersion(PULONG pulMajor,251 PULONG pulMinor,252 PULONG pulRevision)250 XSTAPI(BOOL, xstQuerySysTrayVersion)(PULONG pulMajor, 251 PULONG pulMinor, 252 PULONG pulRevision) 253 253 { 254 254 BOOL brc; … … 276 276 } 277 277 278 BOOL xstAddSysTrayIcon(HWND hwnd,279 USHORT usId,280 HPOINTER hIcon,281 PCSZ pcszToolTip,282 ULONG ulMsgId,283 ULONG ulFlags)278 XSTAPI(BOOL, xstAddSysTrayIcon)(HWND hwnd, 279 USHORT usId, 280 HPOINTER hIcon, 281 PCSZ pcszToolTip, 282 ULONG ulMsgId, 283 ULONG ulFlags) 284 284 { 285 285 BOOL brc; … … 397 397 } 398 398 399 BOOL xstReplaceSysTrayIcon(HWND hwnd,400 USHORT usId,401 HPOINTER hIcon)399 XSTAPI(BOOL, xstReplaceSysTrayIcon)(HWND hwnd, 400 USHORT usId, 401 HPOINTER hIcon) 402 402 { 403 403 BOOL brc; … … 433 433 } 434 434 435 BOOL xstRemoveSysTrayIcon(HWND hwnd,436 USHORT usId)435 XSTAPI(BOOL, xstRemoveSysTrayIcon)(HWND hwnd, 436 USHORT usId) 437 437 { 438 438 BOOL brc; … … 481 481 } 482 482 483 BOOL xstSetSysTrayIconToolTip(HWND hwnd,484 USHORT usId,485 PCSZ pcszToolTip)483 XSTAPI(BOOL, xstSetSysTrayIconToolTip)(HWND hwnd, 484 USHORT usId, 485 PCSZ pcszToolTip) 486 486 { 487 487 BOOL brc; … … 511 511 } 512 512 513 BOOL xstShowSysTrayIconBalloon(HWND hwnd, USHORT usId, PCSZ pcszTitle,514 PCSZ pcszText, ULONG ulFlags, ULONG ulTimeout)513 XSTAPI(BOOL, xstShowSysTrayIconBalloon)(HWND hwnd, USHORT usId, PCSZ pcszTitle, 514 PCSZ pcszText, ULONG ulFlags, ULONG ulTimeout) 515 515 { 516 516 // @todo implement … … 518 518 } 519 519 520 BOOL xstHideSysTrayIconBalloon(HWND hwnd, USHORT usId)520 XSTAPI(BOOL, xstHideSysTrayIconBalloon)(HWND hwnd, USHORT usId) 521 521 { 522 522 // @todo implement … … 524 524 } 525 525 526 BOOL xstQuerySysTrayIconRect(HWND hwnd, USHORT usId, PRECTL prclRect)526 XSTAPI(BOOL, xstQuerySysTrayIconRect)(HWND hwnd, USHORT usId, PRECTL prclRect) 527 527 { 528 528 BOOL brc; … … 546 546 } 547 547 548 ULONG xstGetSysTrayCreatedMsgId()548 XSTAPI(ULONG, xstGetSysTrayCreatedMsgId)() 549 549 { 550 550 if (WM_XST_CREATED == 0) … … 554 554 } 555 555 556 ULONG xstGetSysTrayMaxTextLen()556 XSTAPI(ULONG, xstGetSysTrayMaxTextLen)() 557 557 { 558 558 return sizeof(((PSYSTRAYCTLDATA)0)->u.icon.szToolTip);
Note:
See TracChangeset
for help on using the changeset viewer.