Leaked source code of windows server 2003
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.

38 lines
695 B

  1. enum
  2. {
  3. LAYERMODE_ADD=0,
  4. LAYERMODE_EDIT
  5. };
  6. /*++
  7. class CCustomLayer
  8. Desc: Used for creating or editing a custom compatibility layer
  9. Members:
  10. UINT m_uMode: The type of operation we want to perform. One of LAYERMODE_ADD,
  11. LAYERMODE_EDIT
  12. --*/
  13. class CCustomLayer
  14. {
  15. public:
  16. UINT m_uMode;
  17. PDATABASE m_pCurrentSelectedDB;
  18. public:
  19. BOOL
  20. AddCustomLayer(
  21. PLAYER_FIX pLayer,
  22. PDATABASE pPresentDatabase
  23. );
  24. BOOL
  25. EditCustomLayer(
  26. PLAYER_FIX pLayer,
  27. PDATABASE pPresentDatabase
  28. );
  29. };