1234567891011121314151617181920212223242526272829303132333435363738 |
- // IECMultiStoreTable.h: interface for the IECMultiStoreTable class.
- //
- //////////////////////////////////////////////////////////////////////
- namespace KC {
- class IECMultiStoreTable : public IUnknown {
- public:
- /* ulFlags is currently unused */
- virtual HRESULT __stdcall OpenMultiStoreTable(LPENTRYLIST lpMsgList, ULONG ulFlags, LPMAPITABLE *lppTable) = 0;
- };
- } /* namespace */
|