C# 与C++怎样通过CopyData传送字体解决思路

C# 与C++怎样通过CopyData传送字体现在C#的结构体里有字体类型Font font,C++的结构体应该用什么类型与之

C# 与C++怎样通过CopyData传送字体
现在C#的结构体里有字体类型Font font;,C++的结构体应该用什么类型与之对应呢?

[解决办法]
LOGFONT
The LOGFONT structure defines the attributes of a font. 

typedef struct tagLOGFONT { 
LONG lfHeight; 
LONG lfWidth; 
LONG lfEscapement; 
LONG lfOrientation; 
LONG lfWeight; 
BYTE lfItalic; 
BYTE lfUnderline; 
BYTE lfStrikeOut; 
BYTE lfCharSet; 
BYTE lfOutPrecision; 
BYTE lfClipPrecision; 
BYTE lfQuality; 
BYTE lfPitchAndFamily; 
TCHAR lfFaceName[LF_FACESIZE]; 
} LOGFONT, *PLOGFONT;