You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
766 B
25 lines
766 B
typedef enum
|
|
{
|
|
CBSHOW_HIDE = -1,
|
|
CBSHOW_SHOW = 0,
|
|
} CBSHOW;
|
|
|
|
typedef struct
|
|
{
|
|
POINT pt; // REQUIRED - maybe OPTIONAL?
|
|
HINSTANCE hinst; // REQUIRED - for LoadString
|
|
int idsTitle; // REQUIRED
|
|
int idsMessage; // REQUIRED
|
|
int ttiIcon; // REQUIRED one of TTI_ values
|
|
|
|
DWORD dwMSecs; // OPTIONAL
|
|
DWORD cLimit; // OPTIONAL - if non-zero then query registry
|
|
HKEY hKey; // OPTIONAL - REQUIRED if cLimit > 0
|
|
LPCWSTR pszSubKey; // OPTIONAL - REQUIRED if cLimit > 0
|
|
LPCWSTR pszValue; // OPTIONAL - REQUIRED if cLimit > 0
|
|
} CONDITIONALBALLOON;
|
|
|
|
STDAPI SHShowConditionalBalloon(HWND hwnd, CBSHOW show, CONDITIONALBALLOON *pscb);
|
|
|
|
|
|
|