mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-05 16:46:26 +00:00
42 lines
1.5 KiB
C
42 lines
1.5 KiB
C
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*-
|
|
*
|
|
* The contents of this file are subject to the Netscape Public License
|
|
* Version 1.0 (the "NPL"); you may not use this file except in
|
|
* compliance with the NPL. You may obtain a copy of the NPL at
|
|
* http://www.mozilla.org/NPL/
|
|
*
|
|
* Software distributed under the NPL is distributed on an "AS IS" basis,
|
|
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the NPL
|
|
* for the specific language governing rights and limitations under the
|
|
* NPL.
|
|
*
|
|
* The Initial Developer of this code under the NPL is Netscape
|
|
* Communications Corporation. Portions created by Netscape are
|
|
* Copyright (C) 1998 Netscape Communications Corporation. All Rights
|
|
* Reserved.
|
|
*/
|
|
|
|
#ifndef nsMessageBaseCID_h__
|
|
#define nsMessageBaseCID_h__
|
|
|
|
#include "nsISupports.h"
|
|
#include "nsIFactory.h"
|
|
#include "nsIComponentManager.h"
|
|
|
|
#define NS_MSGCOMPOSE_CID \
|
|
{ /* EB5BDAF8-BBC6-11d2-A6EC-0060B0EB39B5 */ \
|
|
0xeb5bdaf8, 0xbbc6, 0x11d2, \
|
|
{0xa6, 0xec, 0x0, 0x60, 0xb0, 0xeb, 0x39, 0xb5}}
|
|
|
|
#define NS_MSGCOMPFIELDS_CID \
|
|
{ /* 6D222BA0-BD46-11d2-8293-000000000000 */ \
|
|
0x6d222ba0, 0xbd46, 0x11d2, \
|
|
{0x82, 0x93, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}}
|
|
|
|
#define NS_MSGSEND_CID \
|
|
{ /* 935284E0-C5D8-11d2-8297-000000000000 */ \
|
|
0x935284e0, 0xc5d8, 0x11d2, \
|
|
{0x82, 0x97, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}}
|
|
|
|
#endif // nsMessageBaseCID_h__
|