1. 程式人生 > >【Win32 API】在系統托盤顯示圖示和彈出氣泡

【Win32 API】在系統托盤顯示圖示和彈出氣泡

原因在於VS2010對作業系統版本進行了重新定義,在這個標頭檔案WinSDKVer.h中:

#ifndef _INC_WINSDKVER
#define _INC_WINSDKVER
#pragma once
// This list contains the highest version constants supported by content in the Windows SDK.
#define _WIN32_MAXVER           0x0601
#define _WIN32_WINDOWS_MAXVER   0x0601
#define NTDDI_MAXVER            0x0601
#define _WIN32_IE_MAXVER        0x0800
#define _WIN32_WINNT_MAXVER     0x0601
#define WINVER_MAXVER           0x0601
#endif
把對應OS版本號0x0601全部修改為0x0501,重新編譯。