mirror of
https://github.com/reactos/reactos.git
synced 2024-11-09 08:08:38 +00:00
b819608ed8
svn path=/branches/condrv_restructure/; revision=63104
23 lines
357 B
C++
23 lines
357 B
C++
#pragma once
|
|
|
|
#ifndef _PROVIDER_EXCEPT_H
|
|
#define _PROVIDER_EXCEPT_H
|
|
|
|
class CHeap_Exception
|
|
{
|
|
public:
|
|
enum HEAP_ERROR
|
|
{
|
|
E_ALLOCATION_ERROR = 0 ,
|
|
E_FREE_ERROR
|
|
};
|
|
|
|
CHeap_Exception(HEAP_ERROR e) : m_Error(e) {}
|
|
~CHeap_Exception() {}
|
|
|
|
HEAP_ERROR GetError() { return m_Error ; }
|
|
private:
|
|
HEAP_ERROR m_Error;
|
|
};
|
|
|
|
#endif
|