windows-nt/Source/XPSP1/NT/windows/appcompat/tools/compatadmin/customlayer.h

22 lines
298 B
C
Raw Normal View History

2020-09-26 03:20:57 -05:00
enum
{
LAYERMODE_ADD=0,
LAYERMODE_EDIT,
LAYERMODE_COPY,
LAYERMODE_REMOVE,
};
class CCustomLayer
{
public:
UINT m_uMode;
HWND hDlg;
public:
BOOL AddCustomLayer(void);
BOOL EditCustomLayer(void);
BOOL RemoveCustomLayer(void);
};