mirror of
https://github.com/reactos/reactos.git
synced 2024-11-04 22:00:55 +00:00
[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:
parent
2c47dbb49f
commit
6956547bc2
3 changed files with 15 additions and 15 deletions
|
@ -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;
|
||||
}
|
||||
|
|
|
@ -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) \
|
||||
{ \
|
||||
|
|
|
@ -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++)
|
||||
|
|
Loading…
Reference in a new issue