mirror of
https://github.com/reactos/reactos.git
synced 2025-08-06 18:53:33 +00:00
[CMAKE] Define _DEBUG for better ATL debugging (Retry) (#3519)
CORE-17505
This commit is contained in:
parent
0a26c7c5d2
commit
98203cea23
4 changed files with 7 additions and 5 deletions
|
@ -68,19 +68,19 @@ public:
|
|||
|
||||
HRESULT STDMETHODCALLTYPE QueryInterface(const IID & /* riid */, void ** /* ppvObject */ )
|
||||
{
|
||||
ATLASSERT(_T("statically linked in CRegObject is not a com object. Do not callthis function"));
|
||||
ATLASSERT(FALSE && TEXT("statically linked in CRegObject is not a com object. Do not call this function"));
|
||||
return E_NOTIMPL;
|
||||
}
|
||||
|
||||
ULONG STDMETHODCALLTYPE AddRef()
|
||||
{
|
||||
ATLASSERT(_T("statically linked in CRegObject is not a com object. Do not callthis function"));
|
||||
ATLASSERT(FALSE && TEXT("statically linked in CRegObject is not a com object. Do not call this function"));
|
||||
return 1;
|
||||
}
|
||||
|
||||
ULONG STDMETHODCALLTYPE Release()
|
||||
{
|
||||
ATLASSERT(_T("statically linked in CRegObject is not a com object. Do not callthis function"));
|
||||
ATLASSERT(FALSE && TEXT("statically linked in CRegObject is not a com object. Do not call this function"));
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue