зеркало из https://github.com/mozilla/pjs.git
42 строки
1.4 KiB
Plaintext
42 строки
1.4 KiB
Plaintext
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*-
|
||
|
*
|
||
|
* 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.
|
||
|
*/
|
||
|
|
||
|
#include "nsISupports.idl"
|
||
|
|
||
|
%{C++
|
||
|
#include "prio.h"
|
||
|
%}
|
||
|
|
||
|
[ptr] native nsFileDescStar(PRFileDesc);
|
||
|
|
||
|
[noscript, uuid(0906de00-5414-11d3-bbc8-0000861d1237)]
|
||
|
interface nsISocketProvider : nsISupports {
|
||
|
|
||
|
nsFileDescStar NewSocket ( );
|
||
|
|
||
|
};
|
||
|
|
||
|
%{C++
|
||
|
#define NS_NETWORK_SOCKET_PROGID "component://netscape/network/socket"
|
||
|
#define NS_NETWORK_SOCKET_PROGID_PREFIX NS_NETWORK_SOCKET_PROGID "?type="
|
||
|
#define NS_NETWORK_SOCKET_PROGID_PREFIX_LENGTH 41 // strlen(NS_NETWORK_SOCKET_PROGID_PREFIX)
|
||
|
|
||
|
#define NS_ERROR_UNKNOWN_SOCKET_TYPE NS_ERROR_GENERATE_FAILURE(NS_ERROR_MODULE_NETWORK, 51)
|
||
|
#define NS_ERROR_SOCKET_CREATE_FAILED NS_ERROR_GENERATE_FAILURE(NS_ERROR_MODULE_NETWORK, 52)
|
||
|
%}
|