Source code of Windows XP (NT5)
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.

21 lines
298 B

  1. enum
  2. {
  3. LAYERMODE_ADD=0,
  4. LAYERMODE_EDIT,
  5. LAYERMODE_COPY,
  6. LAYERMODE_REMOVE,
  7. };
  8. class CCustomLayer
  9. {
  10. public:
  11. UINT m_uMode;
  12. HWND hDlg;
  13. public:
  14. BOOL AddCustomLayer(void);
  15. BOOL EditCustomLayer(void);
  16. BOOL RemoveCustomLayer(void);
  17. };