windows-nt/Source/XPSP1/NT/admin/wmi/wbem/winmgmt/wbemcomn/dothrow.cpp

17 lines
261 B
C++
Raw Normal View History

2020-09-26 03:20:57 -05:00
#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;