/usr/include/ncarg/hlu/CallbacksP.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 | /*
* $Id: CallbacksP.h,v 1.4 1996-11-28 01:14:22 dbrown Exp $
*/
/************************************************************************
* *
* Copyright (C) 1996 *
* University Corporation for Atmospheric Research *
* All Rights Reserved *
* *
************************************************************************/
/*
* File: CallbacksP.h
*
* Author: Jeff W. Boote
* National Center for Atmospheric Research
* PO 3000, Boulder, Colorado
*
* Date: Sat May 4 00:40:29 MDT 1996
*
* Description:
*/
#ifndef _NHL_CALLBACKSP_H
#define _NHL_CALLBACKSP_H
#include <ncarg/hlu/Callbacks.h>
#define _NhlCBCALLING (0x01)
#define _NhlCBNODEDESTROY (0x02)
#define _NhlCBLISTDESTROY (0x04)
struct _NhlCBRec {
int state;
_NhlCBList cblist;
int index;
_NhlCBFunc cbfunc;
NhlArgVal udata;
NhlPointer cbnode_data;
_NhlCB next;
};
struct _NhlCBListRec {
int state;
int size;
long mask;
_NhlCB single;
_NhlCB *hash;
_NhlCBAddHash add_hash;
_NhlCBCallHash call_hash;
_NhlCBTaskProc task_proc;
NhlPointer task_proc_data;
};
#endif /* _NHL_CALLBACKSP_H */
|