mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-08 04:27:37 +00:00
c89b0224a1
r= warren@netscape.com OS/2 bring up continues - Add !defined XP_OS2 to #ifdef XP_PC
65 lines
1.8 KiB
C
65 lines
1.8 KiB
C
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
/*
|
|
* The contents of this file are subject to the Netscape Public
|
|
* License Version 1.1 (the "License"); you may not use this file
|
|
* except in compliance with the License. You may obtain a copy of
|
|
* the License at http://www.mozilla.org/NPL/
|
|
*
|
|
* Software distributed under the License is distributed on an "AS
|
|
* IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
|
|
* implied. See the License for the specific language governing
|
|
* rights and limitations under the License.
|
|
*
|
|
* The Original Code is mozilla.org code.
|
|
*
|
|
* The Initial Developer of the Original Code is Netscape
|
|
* Communications Corporation. Portions created by Netscape are
|
|
* Copyright (C) 1998 Netscape Communications Corporation. All
|
|
* Rights Reserved.
|
|
*
|
|
* Contributor(s):
|
|
*/
|
|
|
|
#ifndef __netCore_h__
|
|
#define __netCore_h__
|
|
|
|
#include "nsError.h"
|
|
|
|
/* networking error codes */
|
|
|
|
// NET RANGE: 1 -20
|
|
// FTP RANGE: 21-30
|
|
// HTTP RANGE: 31-40
|
|
// DNS RANGE: 41-50
|
|
|
|
#define NS_ERROR_ALREADY_CONNECTED \
|
|
NS_ERROR_GENERATE_FAILURE(NS_ERROR_MODULE_NETWORK, 11)
|
|
|
|
#define NS_ERROR_NOT_CONNECTED \
|
|
NS_ERROR_GENERATE_FAILURE(NS_ERROR_MODULE_NETWORK, 12)
|
|
|
|
/* NS_ERROR_CONNECTION_REFUSED and NS_ERROR_NET_TIMEOUT moved to nsISocketTransportService.idl */
|
|
|
|
#define NS_ERROR_IN_PROGRESS \
|
|
NS_ERROR_GENERATE_FAILURE(NS_ERROR_MODULE_NETWORK, 15)
|
|
|
|
#define NS_ERROR_OFFLINE \
|
|
NS_ERROR_GENERATE_FAILURE(NS_ERROR_MODULE_NETWORK, 16)
|
|
|
|
#undef NS_NET
|
|
#ifdef _IMPL_NS_NET
|
|
#if defined(XP_PC) && !defined(XP_OS2)
|
|
#define NS_NET _declspec(dllexport)
|
|
#else /* !XP_PC */
|
|
#define NS_NET
|
|
#endif /* !XP_PC */
|
|
#else /* !_IMPL_NS_NET */
|
|
#if defined(XP_PC) && !defined(XP_OS2)
|
|
#define NS_NET _declspec(dllimport)
|
|
#else /* !XP_PC */
|
|
#define NS_NET
|
|
#endif /* !XP_PC */
|
|
#endif /* !_IMPL_NS_NET */
|
|
|
|
#endif // __netCore_h__
|