mirror of
https://github.com/reactos/reactos.git
synced 2025-08-07 00:43:09 +00:00
[PSDK] Import definitions needed by newer storage class drivers
CORE-17129
This commit is contained in:
parent
4aaf54e0a4
commit
075871076c
6 changed files with 902 additions and 68 deletions
|
@ -90,18 +90,18 @@ typedef struct _DEVPROPKEY {
|
|||
#ifdef INITGUID
|
||||
#ifdef __cplusplus
|
||||
#define DEFINE_DEVPROPKEY(name, l, w1, w2, b1, b2, b3, b4, b5, b6, b7, b8, pid) \
|
||||
EXTERN_C const DEVPROPKEY DECLSPEC_HIDDEN DECLSPEC_SELECTANY name = { { l, w1, w2, { b1, b2, b3, b4, b5, b6, b7, b8 } }, pid }
|
||||
EXTERN_C const DEVPROPKEY DECLSPEC_SELECTANY name = { { l, w1, w2, { b1, b2, b3, b4, b5, b6, b7, b8 } }, pid }
|
||||
#else
|
||||
#define DEFINE_DEVPROPKEY(name, l, w1, w2, b1, b2, b3, b4, b5, b6, b7, b8, pid) \
|
||||
const DEVPROPKEY DECLSPEC_HIDDEN DECLSPEC_SELECTANY name = { { l, w1, w2, { b1, b2, b3, b4, b5, b6, b7, b8 } }, pid }
|
||||
const DEVPROPKEY DECLSPEC_SELECTANY name = { { l, w1, w2, { b1, b2, b3, b4, b5, b6, b7, b8 } }, pid }
|
||||
#endif
|
||||
#else
|
||||
#ifdef __GNUC__
|
||||
#define DEFINE_DEVPROPKEY(name, l, w1, w2, b1, b2, b3, b4, b5, b6, b7, b8, pid) \
|
||||
EXTERN_C const DEVPROPKEY DECLSPEC_HIDDEN name
|
||||
EXTERN_C const DEVPROPKEY name
|
||||
#else
|
||||
#define DEFINE_DEVPROPKEY(name, l, w1, w2, b1, b2, b3, b4, b5, b6, b7, b8, pid) \
|
||||
EXTERN_C const DEVPROPKEY DECLSPEC_HIDDEN DECLSPEC_SELECTANY name
|
||||
EXTERN_C const DEVPROPKEY DECLSPEC_SELECTANY name
|
||||
#endif
|
||||
#endif /* INITGUID */
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue