reactos/sdk/include/psdk/l2cmn.h
Pierre Schweitzer 321bcc056d Create the AHCI branch for Aman's work
svn path=/branches/GSoC_2016/AHCI/; revision=71203
2016-04-24 20:17:09 +00:00

17 lines
352 B
C

#ifndef _L2CMN_H
#define _L2CMN_H
typedef struct _L2_NOTIFICATION_DATA {
DWORD NotificationSource;
DWORD NotificationCode;
GUID InterfaceGuid;
DWORD dwDataSize;
#if defined(__midl) || defined(__WIDL__)
[unique, size_is(dwDataSize)] PBYTE pData;
#else
PVOID pData;
#endif
} L2_NOTIFICATION_DATA, *PL2_NOTIFICATION_DATA;
#endif