File: modify.h

package info (click to toggle)
ctn 3.2.0~dfsg-2
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 15,336 kB
  • ctags: 21,262
  • sloc: ansic: 179,501; makefile: 7,004; java: 1,863; csh: 1,067; yacc: 523; sh: 424; cpp: 394; sql: 389; lex: 170
file content (70 lines) | stat: -rw-r--r-- 1,621 bytes parent folder | download | duplicates (6)
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

/*
+-+-+-+-+-+-+-+-+-
*/
/*
**		     Electronic Radiology Laboratory
**		   Mallinckrodt Institute of Radiology
**		Washington University School of Medicine
**
** Module Name(s):
** Author, Date:	Aniruddha Gokhale, 24-May-1995
** Intent:		Common declarations shared between many files
** Last Update:		$Author: smm $, $Date: 1998-08-03 16:13:18 $
** Source File:		$RCSfile: modify.h,v $
** Revision:		$Revision: 1.4 $
** Status:		$State: Exp $
*/

#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#ifdef _MSC_VER
#include <io.h>
#include <fcntl.h>
#else
#include <sys/file.h>
#endif
#ifdef SOLARIS
#include <sys/fcntl.h>
#endif
#include <sys/types.h>
#include <sys/stat.h>

#include "dicom.h"
#include "ctnthread.h"
#include "condition.h"
#include "lst.h"
#include "dicom_objects.h"

#define APP_NORMAL		FORM_COND(FAC_APP, SEV_SUCC, 1)
#define APP_FAILURE		FORM_COND(FAC_APP, SEV_ERROR, 2)
typedef struct {		/* list of elements to be modified */
    void *reserved[2];
    DCM_ELEMENT *e;
}   APP_ELEMLIST;

typedef struct {
    void *reserved[2];
    LST_HEAD *ael;		/* sequence of a list of elements */
}   APP_ITEMSEQ;

typedef struct {
    void *reserved[2];
    char str[DICOM_LO_LENGTH + 1];	/* allocate largest length in DICOM */
}   MULTVAL_ITEM;

extern FILE
*   yyin;			/* file parsed by the YACC parser */
extern LST_HEAD
*   modlist;			/* holds the modifications to the object */
extern CTNBOOLEAN
    verbose;

CONDITION
makeElement(int, int, void *, DCM_ELEMENT **);
CONDITION
makeModifications(LST_HEAD **, DCM_OBJECT **);
void
    APP_DumpModList(LST_HEAD **, int);
void yyerror(const char *);