reactos/include/psdk/provexce.h
Amine Khaldi 527f2f9057 [SHELL/EXPERIMENTS]
* Create a branch for some evul shell experiments.

svn path=/branches/shell-experiments/; revision=61927
2014-02-02 19:37:27 +00:00

24 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