/usr/src/openafs-1.6.1/include/afs/gtxtextobj.h is in openafs-modules-dkms 1.6.1-1.
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 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 | /*
* Copyright 2000, International Business Machines Corporation and others.
* All Rights Reserved.
*
* This software has been released under the terms of the IBM Public
* License. For details, see the LICENSE file in the top-level source
* directory or online at http://www.openafs.org/dl/license10.html
*/
#ifndef __gator_textobject_h
#define __gator_textobject_h 1
#include "gtxobjects.h" /*Basic gator object definitions */
#include "gtxtextcb.h" /*Text object's circular buffer facility */
/*Value for onode o_type field*/
#define GATOR_OBJ_TEXT 0
/*Scroll directions*/
#define GATOR_TEXT_SCROLL_DOWN 0
#define GATOR_TEXT_SCROLL_UP 1
/*Private data for text onode*/
struct gator_textobj {
int *llrock; /*Rock for lower-level graphics layer */
int numLines; /*Num lines we can display */
struct gator_textcb_hdr *cbHdr; /*Ptr to circular buffer header */
int firstEntShown; /*ID of first text entry displayed */
int lastEntShown; /*ID of last text entry displayed */
};
/*Text object's creation parameters*/
struct gator_textobj_params {
struct onode_createparams onode_params; /*Params for the whole onode */
int maxEntries; /*Max text entries to store */
int maxCharsPerEntry; /*Max chars per text entry */
};
/*Text object's creation routine*/
extern int gator_text_create(struct onode *, struct onode_createparams *);
/*
* Summary:
* Create a gator text object.
*
* Args:
* struct onode *text_onp : Ptr to the text onode to fill out.
* struct onode_createparams *params : Ptr to creation params.
* (Note: this actually points to a gator_text_crparams
* structure, but we use the generic version of the ptr)
*
* Returns:
* Zero if successful,
* Error value otherwise.
*/
/*Text object's generic onode routines*/
extern int gator_text_destroy(struct onode *);
/*
* Summary:
* Destroy a gator text object.
*
* Args:
* struct onode *onp : Ptr to the text onode to delete.
*
* Returns:
* 0: Success.
* Error value otherwise.
*/
extern int gator_text_display(struct onode *);
/*
* Summary:
* Display/redraw a gator text object.
*
* Args:
* struct onode *onp: Ptr to the text onode to display.
*
* Returns:
* 0: Success.
* Error value otherwise.
*/
extern int gator_text_release(struct onode *);
/*
* Summary:
* Drop the refcount on a gator text object.
*
* Args:
* struct onode *onp : Ptr to the onode whose refcount is
* to be dropped.
*
* Returns:
* 0: Success.
* Error value otherwise.
*/
/*
* Additional, text-specific operations.
*/
extern int gator_text_Scroll(struct onode *, int, int);
/*
* Summary:
* Scroll a text object some number of lines.
*
* Args:
* struct onode *onp : Ptr to the text onode to be scrolled.
* int nlines : Number of lines to scroll.
* int down : Scroll down?
*
* Returns:
* 0: Success.
* Error value otherwise.
*/
extern int gator_text_Write(struct onode *, char *, int, int, int);
/*
* Summary:
* Write the given string to the end of the gator text object.
*
* Args:
* struct onode *onp : Ptr to the text onode to which we're
* writing.
* char *strToWrite : String to write.
* int numChars : Number of chars to write.
* int highlight : Use highlighting?
* int skip : Force a skip to the next line?
*
* Returns:
* 0: Success.
* Error value otherwise.
*/
extern int gator_text_BlankLine(struct onode *, int);
/*
* Summary:
* Write a given number of blank lines to the given text object.
*
* Args:
* struct onode *onp : Ptr to the onode to which we're writing.
* int numBlanks : Number of blank lines to write.
*
* Returns:
* 0: Success.
* Error value otherwise.
*/
/*
* Set of exported generic text onode operations.
*/
extern struct onodeops gator_text_ops;
#endif /* __gator_textobject_h */
|