windows-nt/Source/XPSP1/NT/admin/wmi/wbem/winmgmt/wbemcomn/dothrow.cpp
2020-09-26 16:20:57 +08:00

17 lines
261 B
C++

#include "precomp.h"
#include <dothrow.h>
const CX_MemoryException wmibad_alloc;
void dothrow_t::raise_bad_alloc()
{
throw wmibad_alloc;
}
void dothrow_t::raise_lock_failure()
{
throw wmibad_alloc;
}
const dothrow_t dothrow;
const wminothrow_t wminothrow;