tsuserex_i.c 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. /**
  2. * This file has no copyright assigned and is placed in the Public Domain.
  3. * This file is part of the mingw-w64 runtime package.
  4. * No warranty is given; refer to the file DISCLAIMER.PD within this package.
  5. */
  6. #ifdef __cplusplus
  7. extern "C" {
  8. #endif
  9. #include <rpc.h>
  10. #include <rpcndr.h>
  11. #ifdef _MIDL_USE_GUIDDEF_
  12. #ifndef INITGUID
  13. #define INITGUID
  14. #include <guiddef.h>
  15. #undef INITGUID
  16. #else
  17. #include <guiddef.h>
  18. #endif
  19. #define MIDL_DEFINE_GUID(type,name,l,w1,w2,b1,b2,b3,b4,b5,b6,b7,b8) DEFINE_GUID(name,l,w1,w2,b1,b2,b3,b4,b5,b6,b7,b8)
  20. #else
  21. #ifndef __IID_DEFINED__
  22. #define __IID_DEFINED__
  23. typedef struct _IID {
  24. unsigned long x;
  25. unsigned short s1;
  26. unsigned short s2;
  27. unsigned char c[8];
  28. } IID;
  29. #endif
  30. #ifndef CLSID_DEFINED
  31. #define CLSID_DEFINED
  32. typedef IID CLSID;
  33. #endif
  34. #define MIDL_DEFINE_GUID(type,name,l,w1,w2,b1,b2,b3,b4,b5,b6,b7,b8) const type name = {l,w1,w2,{b1,b2,b3,b4,b5,b6,b7,b8}}
  35. #endif
  36. MIDL_DEFINE_GUID(IID,LIBID_TSUSEREXLib,0x45413F04,0xDF86,0x11D1,0xAE,0x27,0x00,0xC0,0x4F,0xA3,0x58,0x13);
  37. MIDL_DEFINE_GUID(CLSID,CLSID_TSUserExInterfaces,0x0910dd01,0xdf8c,0x11d1,0xae,0x27,0x00,0xc0,0x4f,0xa3,0x58,0x13);
  38. MIDL_DEFINE_GUID(IID,IID_IADsTSUserEx,0xC4930E79,0x2989,0x4462,0x8A,0x60,0x2F,0xCF,0x2F,0x29,0x55,0xEF);
  39. MIDL_DEFINE_GUID(CLSID,CLSID_ADsTSUserEx,0xE2E9CAE6,0x1E7B,0x4B8E,0xBA,0xBD,0xE9,0xBF,0x62,0x92,0xAC,0x29);
  40. #undef MIDL_DEFINE_GUID
  41. #ifdef __cplusplus
  42. }
  43. #endif