Last active
August 29, 2015 14:03
-
-
Save jerstlouis/7e0e5a3d01a199f919fc to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
typedef struct _userSTGMEDIUM | |
{ | |
struct _STGMEDIUM_UNION | |
{ | |
DWORD tymed; | |
union | |
{ | |
wireHMETAFILEPICT hMetaFilePict; | |
wireHENHMETAFILE hHEnhMetaFile; | |
GDI_OBJECT * hGdiHandle; | |
wireHGLOBAL hGlobal; | |
LPOLESTR lpszFileName; | |
BYTE_BLOB * pstm; | |
BYTE_BLOB * pstg; | |
} __attribute__ ((gcc_struct)) u; | |
} __attribute__ ((gcc_struct)); | |
IUnknown * pUnkForRelease; | |
} __attribute__ ((gcc_struct)) userSTGMEDIUM; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment