/usr/include/ncarg/hlu/XWorkstation.h is in libncarg-dev 6.1.2-7.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 | /*
* $Id: XWorkstation.h,v 1.8 1997-08-25 20:20:39 boote Exp $
*/
/************************************************************************
* *
* Copyright (C) 1992 *
* University Corporation for Atmospheric Research *
* All Rights Reserved *
* *
************************************************************************/
/*
* File: XWorkstation.h
*
* Author: Ethan Alpert
* National Center for Atmospheric Research
* PO 3000, Boulder, Colorado
*
* Date: Mon Sep 14 17:03:36 MDT 1992
*
* Description: Public header for XWorkstation class
*/
#ifndef _NXWorkstation_h
#define _NXWorkstation_h
#include <ncarg/hlu/Workstation.h>
#define NhlNwkWindowId "wkWindowId"
#define NhlCwkWindowId "WkWindowId"
#define NhlNwkXColorMode "wkXColorMode"
#define NhlCwkXColorMode "WkXColorMode"
#define NhlNwkPause "wkPause"
#define NhlCwkPause "WkPause"
#define NhlNwkX "wkX"
#define NhlCwkX "WkX"
#define NhlNwkY "wkY"
#define NhlCwkY "WkY"
#define NhlNwkWidth "wkWidth"
#define NhlCwkWidth "WkWidth"
#define NhlNwkHeight "wkHeight"
#define NhlCwkHeight "WkHeight"
#define NhlNwkTitle "wkTitle"
#define NhlCwkTitle "WkTitle"
#define NhlNwkIconTitle "wkIconTitle"
#define NhlCwkIconTitle "WkIconTitle"
#define NhlTXColorMode "XColorMode"
typedef enum _NhlXColorMode{
NhlSHARE = 0,
NhlPRIVATE = 1,
NhlMIXED = 2
} NhlXColorMode;
typedef unsigned long NhlXPixel;
extern NhlErrorTypes
NhlGetXPixel(
#if NhlNeedProto
int id,
int hluci,
NhlXPixel *xpix
#endif
);
extern NhlClass NhlxWorkstationClass;
#endif /* _NXWorkstation_h */
|