15 lines
310 B
Plaintext
15 lines
310 B
Plaintext
interface MailCore : BaseAppCore
|
|
{
|
|
/* IID: { 0x18c2f980, 0xb09f, 0x11d2, \
|
|
{0xbc, 0xde, 0x00, 0x80, 0x5f, 0x0e, 0x13, 0x53}} */
|
|
|
|
void MailCore();
|
|
|
|
void SendMail(in wstring addrTo, in wstring subject, in wstring msg);
|
|
void MailCompleteCallback(in wstring script);
|
|
void SetWindow(in Window win);
|
|
|
|
};
|
|
|
|
|