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.
39 lines
695 B
39 lines
695 B
|
|
enum
|
|
{
|
|
LAYERMODE_ADD=0,
|
|
LAYERMODE_EDIT
|
|
};
|
|
|
|
/*++
|
|
|
|
class CCustomLayer
|
|
|
|
Desc: Used for creating or editing a custom compatibility layer
|
|
|
|
Members:
|
|
UINT m_uMode: The type of operation we want to perform. One of LAYERMODE_ADD,
|
|
LAYERMODE_EDIT
|
|
--*/
|
|
|
|
class CCustomLayer
|
|
{
|
|
public:
|
|
|
|
UINT m_uMode;
|
|
PDATABASE m_pCurrentSelectedDB;
|
|
|
|
public:
|
|
|
|
BOOL
|
|
AddCustomLayer(
|
|
PLAYER_FIX pLayer,
|
|
PDATABASE pPresentDatabase
|
|
);
|
|
|
|
BOOL
|
|
EditCustomLayer(
|
|
PLAYER_FIX pLayer,
|
|
PDATABASE pPresentDatabase
|
|
);
|
|
};
|