[ACTIVEDS]
[reactos.git] / reactos / dll / win32 / activeds / stubs.c
1 #define WIN32_NO_STATUS
2 #define _INC_WINDOWS
3 #define COM_NO_WINDOWS_H
4 #include <stdarg.h>
5 #include <windef.h>
6 #include <winbase.h>
7 #include <objbase.h>
8 #include <iads.h>
9 #include <stubs.h>
10
11 // FIXME: should go to iads.h
12 typedef struct _adsvalue *PADSVALUE;
13
14 HRESULT
15 WINAPI
16 PropVariantToAdsType(
17 VARIANT * pVariant,
18 DWORD dwNumVariant,
19 PADSVALUE *ppAdsValues,
20 PDWORD pdwNumValues)
21 {
22 UNIMPLEMENTED;
23 return E_NOTIMPL;
24 }
25
26 HRESULT
27 WINAPI
28 AdsTypeToPropVariant(
29 PADSVALUE pAdsValues,
30 DWORD dwNumValues,
31 VARIANT * pVariant)
32 {
33 UNIMPLEMENTED;
34 return E_NOTIMPL;
35 }
36
37 void
38 WINAPI
39 AdsFreeAdsValues(
40 PADSVALUE pAdsValues,
41 DWORD dwNumValues)
42 {
43 UNIMPLEMENTED;
44 }
45
46 HRESULT
47 WINAPI
48 ADsDecodeBinaryData(
49 LPCWSTR szSrcData,
50 PBYTE *ppbDestData,
51 ULONG *pdwDestLen)
52 {
53 UNIMPLEMENTED;
54 return E_NOTIMPL;
55 }
56
57 int AdsTypeToPropVariant2()
58 {
59 DPRINT1("WARNING: calling stub AdsTypeToPropVariant2()\n");
60 __wine_spec_unimplemented_stub("activeds.dll", __FUNCTION__);
61 return 0;
62 }
63
64 int PropVariantToAdsType2()
65 {
66 DPRINT1("WARNING: calling stub PropVariantToAdsType2()\n");
67 __wine_spec_unimplemented_stub("activeds.dll", __FUNCTION__);
68 return 0;
69 }
70
71 int ConvertSecDescriptorToVariant()
72 {
73 DPRINT1("WARNING: calling stub ConvertSecDescriptorToVariant()\n");
74 __wine_spec_unimplemented_stub("activeds.dll", __FUNCTION__);
75 return 0;
76 }
77
78 int ConvertSecurityDescriptorToSecDes()
79 {
80 DPRINT1("WARNING: calling stub ConvertSecurityDescriptorToSecDes()\n");
81 __wine_spec_unimplemented_stub("activeds.dll", __FUNCTION__);
82 return 0;
83 }