IECSpooler.i 398 B

12345678910111213
  1. class IECSpooler {
  2. public:
  3. // Gets an IMAPITable containing all the outgoing messages on the server
  4. virtual HRESULT GetMasterOutgoingTable(ULONG ulFlags, IMAPITable **lppTable) = 0;
  5. // Removes a message from the master outgoing table
  6. virtual HRESULT DeleteFromMasterOutgoingTable(ULONG cbEntryID, LPENTRYID lpEntryID, ULONG ulFlags) = 0;
  7. %extend {
  8. ~IECSpooler() { self->Release(); }
  9. }
  10. };