mirror of https://github.com/tongzx/nt5src
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
298 B
22 lines
298 B
|
|
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);
|
|
};
|