mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-01-13 07:24:47 +00:00
92b4962700
- Add support for Set/Get Colors on Background/Foreground/Border via Scripting - Add nsXPFCError.h header file for XPFC specific errors and macros - Changed CommandServer to block upon calls across network. This is to allow returns values on queries like GetBackgroundColor() to return synchronously - Added support for 'class' type commands in zulutest - Threw JS on it's own thread for interactive testing purposes - support for command-line useage for zulutest includes verbose, quiet, console output & source JS script file - ZuluTest implements nsIStreamListener for obtaining JS over network
32 lines
964 B
C
32 lines
964 B
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.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 nsXPFCError_h
|
|
#define nsXPFCError_h
|
|
|
|
#include "nsError.h"
|
|
|
|
#define NSRESULT_TO_NSTRING(a,b) \
|
|
if (NS_OK == a) \
|
|
b = "NS_OK"; \
|
|
else \
|
|
b = "RESULTS UNDEFINED"
|
|
|
|
#endif
|
|
|