[INCLUDES]

* Do not mix ReactOS and Wine style debugging.
[SPEC2DEF]
* Use DbgPrint instead of DPRINT1 for the stub functions.
[ACTIVEDS]
* Cleanup the stubs file.
CORE-7716

svn path=/trunk/; revision=61578
This commit is contained in:
Amine Khaldi 2014-01-10 18:58:31 +00:00
parent 2c47dbb49f
commit 6956547bc2
3 changed files with 15 additions and 15 deletions

View file

@ -19,7 +19,7 @@ PropVariantToAdsType(
PADSVALUE *ppAdsValues,
PDWORD pdwNumValues)
{
UNIMPLEMENTED;
DbgPrint("ACTIVEDS: %s is unimplemented, please try again later.\n", __FUNCTION__);
return E_NOTIMPL;
}
@ -30,7 +30,7 @@ AdsTypeToPropVariant(
DWORD dwNumValues,
VARIANT * pVariant)
{
UNIMPLEMENTED;
DbgPrint("ACTIVEDS: %s is unimplemented, please try again later.\n", __FUNCTION__);
return E_NOTIMPL;
}
@ -40,7 +40,7 @@ AdsFreeAdsValues(
PADSVALUE pAdsValues,
DWORD dwNumValues)
{
UNIMPLEMENTED;
DbgPrint("ACTIVEDS: %s is unimplemented, please try again later.\n", __FUNCTION__);
}
HRESULT
@ -50,34 +50,34 @@ ADsDecodeBinaryData(
PBYTE *ppbDestData,
ULONG *pdwDestLen)
{
UNIMPLEMENTED;
DbgPrint("ACTIVEDS: %s is unimplemented, please try again later.\n", __FUNCTION__);
return E_NOTIMPL;
}
int AdsTypeToPropVariant2()
{
DPRINT1("WARNING: calling stub AdsTypeToPropVariant2()\n");
DbgPrint("WARNING: calling stub AdsTypeToPropVariant2()\n");
__wine_spec_unimplemented_stub("activeds.dll", __FUNCTION__);
return 0;
}
int PropVariantToAdsType2()
{
DPRINT1("WARNING: calling stub PropVariantToAdsType2()\n");
DbgPrint("WARNING: calling stub PropVariantToAdsType2()\n");
__wine_spec_unimplemented_stub("activeds.dll", __FUNCTION__);
return 0;
}
int ConvertSecDescriptorToVariant()
{
DPRINT1("WARNING: calling stub ConvertSecDescriptorToVariant()\n");
DbgPrint("WARNING: calling stub ConvertSecDescriptorToVariant()\n");
__wine_spec_unimplemented_stub("activeds.dll", __FUNCTION__);
return 0;
}
int ConvertSecurityDescriptorToSecDes()
{
DPRINT1("WARNING: calling stub ConvertSecurityDescriptorToSecDes()\n");
DbgPrint("WARNING: calling stub ConvertSecurityDescriptorToSecDes()\n");
__wine_spec_unimplemented_stub("activeds.dll", __FUNCTION__);
return 0;
}

View file

@ -1,11 +1,11 @@
#include <stdarg.h>
#include "windef.h"
#include "winbase.h"
#include "wine/config.h"
#include "wine/exception.h"
#include <windef.h>
#include <winbase.h>
#include <reactos/debug.h>
#include <wine/config.h>
#include <wine/exception.h>
ULONG __cdecl DbgPrint(_In_z_ _Printf_format_string_ PCSTR Format, ...);
#define __wine_spec_unimplemented_stub(module, function) \
{ \

View file

@ -204,7 +204,7 @@ OutputLine_stub(FILE *file, EXPORT *pexp)
}
fprintf(file, " a%d", i);
}
fprintf(file, ")\n{\n\tDPRINT1(\"WARNING: calling stub %.*s(",
fprintf(file, ")\n{\n\tDbgPrint(\"WARNING: calling stub %.*s(",
pexp->strName.len, pexp->strName.buf);
for (i = 0; i < pexp->nArgCount; i++)