使用soui开发的mbc,只支持windows版本
w1146869587
2022-01-24 479b1995ef435713c2cf4f0da8de3a6af6c30922
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#pragma once
 
// CCursorBase command target
#define    ROWTYPE_NONE            ( 0 )
#define    ROWTYPE_MSG                ( 1 )
#define    ROWTYPE_MSGFOLDER        ( 2 )
#define ROWTYPE_FOLDERMGR        ( 3 )
#define ROWTYPE_EXTPROPERTY        ( 4 )
#define    ROWTYPE_CROWDMSG        ( 5 )
 
class AFX_EXT_CLASS CCursorBase 
{
public:
    CCursorBase();
    virtual ~CCursorBase();
// Attributers
public:
    int        m_nRowType;
 
// Operations
public:
    virtual    BOOL    GetItemValue( CString strName, CString &strValue );
    virtual    BOOL    GetItemValue( CString strName, COleVariant &varData )    { return false; }
 
};