的TBBUTTON結構是在MSDN的定義如下:
typedef struct {
int iBitmap;
int idCommand;
BYTE fsState;
BYTE fsStyle;
#ifdef _WIN64
BYTE bReserved[6];
#else
#if defined(_WIN32)
BYTE bReserved[2];
#endif
#endif
DWORD_PTR dwData;
INT_PTR iString;
} TBBUTTON, *PTBBUTTON, *LPTBBUTTON;
我需要使用這個結構做了一些互操作在C#。如何複製這個怪物,以便在爲AnyCPU編譯時正確定義它?谷歌顯然充滿了危險的錯誤信息!
感謝分享! – 2011-06-05 14:36:56