hlink: Added HlinkGetSpecialReference implementation.
[wine] / dlls / ntdsapi / ntdsapi.c
1 /*
2  * Copyright (C) 2006 Dmitry Timoshkov
3  *
4  * This library is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU Lesser General Public
6  * License as published by the Free Software Foundation; either
7  * version 2.1 of the License, or (at your option) any later version.
8  *
9  * This library is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * Lesser General Public License for more details.
13  *
14  * You should have received a copy of the GNU Lesser General Public
15  * License along with this library; if not, write to the Free Software
16  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
17  */
18
19 #include <stdarg.h>
20
21 #include "windef.h"
22 #include "winbase.h"
23 #include "winerror.h"
24 #include "ntdsapi.h"
25 #include "wine/debug.h"
26
27 WINE_DEFAULT_DEBUG_CHANNEL(ntdsapi);
28
29 /*****************************************************
30  *      DllMain
31  */
32 BOOL WINAPI DllMain(HINSTANCE hinst, DWORD reason, LPVOID reserved)
33 {
34     TRACE("(%p, %d, %p)\n", hinst, reason, reserved);
35
36     switch(reason)
37     {
38     case DLL_WINE_PREATTACH:
39         return FALSE;  /* prefer native version */
40
41     case DLL_PROCESS_ATTACH:
42         DisableThreadLibraryCalls( hinst );
43         break;
44     }
45     return TRUE;
46 }
47
48 /***********************************************************************
49  *             DsMakeSpnW (NTDSAPI.@)
50  */
51 DWORD WINAPI DsMakeSpnW(LPCWSTR svc_class, LPCWSTR svc_name,
52                         LPCWSTR inst_name, USHORT inst_port,
53                         LPCWSTR ref, DWORD *spn_length, LPWSTR spn)
54 {
55     FIXME("(%s,%s,%s,%d,%s,%p,%p): stub!\n", debugstr_w(svc_class),
56             debugstr_w(svc_name), debugstr_w(inst_name), inst_port,
57             debugstr_w(ref), spn_length, spn);
58
59     return ERROR_CALL_NOT_IMPLEMENTED;
60 }
61
62 DWORD WINAPI DsMakeSpnA(LPCSTR svc_class, LPCSTR svc_name,
63                         LPCSTR inst_name, USHORT inst_port,
64                         LPCSTR ref, DWORD *spn_length, LPSTR spn)
65 {
66     FIXME("(%s,%s,%s,%d,%s,%p,%p): stub!\n", debugstr_a(svc_class),
67             debugstr_a(svc_name), debugstr_a(inst_name), inst_port,
68             debugstr_a(ref), spn_length, spn);
69
70     return ERROR_CALL_NOT_IMPLEMENTED;
71 }