push 2cb3c55a66a85d63efe36907fa6cad8804808438
[wine/hacks.git] / dlls / dnsapi / main.c
blob0c5020a7f2cff0f57fbdb61374131774bc4533f7
1 /*
2 * DNS support
4 * Copyright (C) 2006 Matthew Kehrer
5 * Copyright (C) 2006 Hans Leidekker
7 * This library is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Lesser General Public
9 * License as published by the Free Software Foundation; either
10 * version 2.1 of the License, or (at your option) any later version.
12 * This library is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Lesser General Public License for more details.
17 * You should have received a copy of the GNU Lesser General Public
18 * License along with this library; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
22 #include <stdarg.h>
24 #include "windef.h"
25 #include "winbase.h"
26 #include "winerror.h"
27 #include "windns.h"
29 #include "wine/debug.h"
31 WINE_DEFAULT_DEBUG_CHANNEL(dnsapi);
33 static HINSTANCE hdnsapi;
35 BOOL WINAPI DllMain( HINSTANCE hinst, DWORD reason, LPVOID reserved )
37 TRACE( "(%p, %d, %p)\n", hinst, reason, reserved );
39 switch (reason)
41 case DLL_WINE_PREATTACH:
42 return FALSE; /* prefer native version */
43 case DLL_PROCESS_ATTACH:
44 hdnsapi = hinst;
45 DisableThreadLibraryCalls( hinst );
46 break;
47 case DLL_PROCESS_DETACH:
48 break;
50 return TRUE;
53 /******************************************************************************
54 * DnsAcquireContextHandle_A [DNSAPI.@]
57 DNS_STATUS WINAPI DnsAcquireContextHandle_A( DWORD flags, PVOID cred,
58 PHANDLE context )
60 FIXME( "(0x%08x,%p,%p) stub\n", flags, cred, context );
62 *context = (HANDLE)0xdeadbeef;
63 return ERROR_SUCCESS;
66 /******************************************************************************
67 * DnsAcquireContextHandle_UTF8 [DNSAPI.@]
70 DNS_STATUS WINAPI DnsAcquireContextHandle_UTF8( DWORD flags, PVOID cred,
71 PHANDLE context )
73 FIXME( "(0x%08x,%p,%p) stub\n", flags, cred, context );
75 *context = (HANDLE)0xdeadbeef;
76 return ERROR_SUCCESS;
79 /******************************************************************************
80 * DnsAcquireContextHandle_W [DNSAPI.@]
83 DNS_STATUS WINAPI DnsAcquireContextHandle_W( DWORD flags, PVOID cred,
84 PHANDLE context )
86 FIXME( "(0x%08x,%p,%p) stub\n", flags, cred, context );
88 *context = (HANDLE)0xdeadbeef;
89 return ERROR_SUCCESS;
92 /******************************************************************************
93 * DnsReleaseContextHandle [DNSAPI.@]
96 VOID WINAPI DnsReleaseContextHandle( HANDLE context )
98 FIXME( "(%p) stub\n", context );
101 /******************************************************************************
102 * DnsExtractRecordsFromMessage_UTF8 [DNSAPI.@]
105 DNS_STATUS WINAPI DnsExtractRecordsFromMessage_UTF8( PDNS_MESSAGE_BUFFER buffer,
106 WORD len, PDNS_RECORDA *record )
108 FIXME( "(%p,%d,%p) stub\n", buffer, len, record );
110 *record = NULL;
111 return ERROR_SUCCESS;
114 /******************************************************************************
115 * DnsExtractRecordsFromMessage_W [DNSAPI.@]
118 DNS_STATUS WINAPI DnsExtractRecordsFromMessage_W( PDNS_MESSAGE_BUFFER buffer,
119 WORD len, PDNS_RECORDW *record )
121 FIXME( "(%p,%d,%p) stub\n", buffer, len, record );
123 *record = NULL;
124 return ERROR_SUCCESS;
127 /******************************************************************************
128 * DnsModifyRecordsInSet_A [DNSAPI.@]
131 DNS_STATUS WINAPI DnsModifyRecordsInSet_A( PDNS_RECORDA add, PDNS_RECORDA delete,
132 DWORD options, HANDLE context,
133 PVOID servers, PVOID reserved )
135 FIXME( "(%p,%p,0x%08x,%p,%p,%p) stub\n", add, delete, options,
136 context, servers, reserved );
137 return ERROR_SUCCESS;
140 /******************************************************************************
141 * DnsModifyRecordsInSet_UTF8 [DNSAPI.@]
144 DNS_STATUS WINAPI DnsModifyRecordsInSet_UTF8( PDNS_RECORDA add, PDNS_RECORDA delete,
145 DWORD options, HANDLE context,
146 PVOID servers, PVOID reserved )
148 FIXME( "(%p,%p,0x%08x,%p,%p,%p) stub\n", add, delete, options,
149 context, servers, reserved );
150 return ERROR_SUCCESS;
153 /******************************************************************************
154 * DnsModifyRecordsInSet_W [DNSAPI.@]
157 DNS_STATUS WINAPI DnsModifyRecordsInSet_W( PDNS_RECORDW add, PDNS_RECORDW delete,
158 DWORD options, HANDLE context,
159 PVOID servers, PVOID reserved )
161 FIXME( "(%p,%p,0x%08x,%p,%p,%p) stub\n", add, delete, options,
162 context, servers, reserved );
163 return ERROR_SUCCESS;
166 /******************************************************************************
167 * DnsWriteQuestionToBuffer_UTF8 [DNSAPI.@]
170 BOOL WINAPI DnsWriteQuestionToBuffer_UTF8( PDNS_MESSAGE_BUFFER buffer, PDWORD size,
171 PCSTR name, WORD type, WORD xid,
172 BOOL recurse )
174 FIXME( "(%p,%p,%s,%d,%d,%d) stub\n", buffer, size, debugstr_a(name),
175 type, xid, recurse );
176 return FALSE;
179 /******************************************************************************
180 * DnsWriteQuestionToBuffer_W [DNSAPI.@]
183 BOOL WINAPI DnsWriteQuestionToBuffer_W( PDNS_MESSAGE_BUFFER buffer, PDWORD size,
184 PCWSTR name, WORD type, WORD xid,
185 BOOL recurse )
187 FIXME( "(%p,%p,%s,%d,%d,%d) stub\n", buffer, size, debugstr_w(name),
188 type, xid, recurse );
189 return FALSE;
192 /******************************************************************************
193 * DnsReplaceRecordSetA [DNSAPI.@]
196 DNS_STATUS WINAPI DnsReplaceRecordSetA( PDNS_RECORDA set, DWORD options,
197 HANDLE context, PVOID servers,
198 PVOID reserved )
200 FIXME( "(%p,0x%08x,%p,%p,%p) stub\n", set, options, context,
201 servers, reserved );
202 return ERROR_SUCCESS;
205 /******************************************************************************
206 * DnsReplaceRecordSetUTF8 [DNSAPI.@]
209 DNS_STATUS WINAPI DnsReplaceRecordSetUTF8( PDNS_RECORDA set, DWORD options,
210 HANDLE context, PVOID servers,
211 PVOID reserved )
213 FIXME( "(%p,0x%08x,%p,%p,%p) stub\n", set, options, context,
214 servers, reserved );
215 return ERROR_SUCCESS;
218 /******************************************************************************
219 * DnsReplaceRecordSetW [DNSAPI.@]
222 DNS_STATUS WINAPI DnsReplaceRecordSetW( PDNS_RECORDW set, DWORD options,
223 HANDLE context, PVOID servers,
224 PVOID reserved )
226 FIXME( "(%p,0x%08x,%p,%p,%p) stub\n", set, options, context,
227 servers, reserved );
228 return ERROR_SUCCESS;