2 * Copyright (C) 2006 Dmitry Timoshkov
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.
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.
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
25 #include "wine/debug.h"
27 WINE_DEFAULT_DEBUG_CHANNEL(ntdsapi
);
29 /*****************************************************
32 BOOL WINAPI
DllMain(HINSTANCE hinst
, DWORD reason
, LPVOID reserved
)
34 TRACE("(%p, %d, %p)\n", hinst
, reason
, reserved
);
38 case DLL_WINE_PREATTACH
:
39 return FALSE
; /* prefer native version */
41 case DLL_PROCESS_ATTACH
:
42 DisableThreadLibraryCalls( hinst
);
48 /***********************************************************************
49 * DsMakeSpnW (NTDSAPI.@)
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
)
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
);
59 return ERROR_CALL_NOT_IMPLEMENTED
;
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
)
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
);
70 return ERROR_CALL_NOT_IMPLEMENTED
;