blob: f1616a4cdaebb7b66f7aa9bc7a4f37edf1ba59b0 (
plain)
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
|
/*******************************************************************************
(C) Nick Marley, 2001 -
This software is distributed under the GNU Lesser General Public Licence.
Please read and understand the comments at the top of vf_iface.h before use!
FILE
$Workfile: vf_modified.h $
$Revision: 1.1 $
$Author: tilda $
ORIGINAL AUTHOR
Nick Marley
DESCRIPTION
Library internal access to the modification status.
REFERENCES
(none)
MODIFICATION HISTORY
* $Log: vf_modified.h,v $
* Revision 1.1 2002/10/11 20:22:32 tilda
* Added / repaired vf_modified.h
*
*
* 2 9/05/02 3:49p Nm2
* Adjust memoruy allocation system for use in an embedded build.
*
* 1 7/08/02 7:24a Nm2
*
*******************************************************************************/
#ifndef _VF_MODIFIED_H_
#define _VF_MODIFIED_H_
#ifndef NORCSID
static const char vf_modified_h_vss_id[] = "$Header: /cvsroot/vformat/src/vformat/src/vf_modified.h,v 1.1 2002/10/11 20:22:32 tilda Exp $";
#endif
/*=============================================================================*
Public Includes
*============================================================================*/
/* None */
/*=============================================================================*
Public Defines
*============================================================================*/
/* None */
/*=============================================================================*
Public Types
*============================================================================*/
/* None */
/*=============================================================================*
Public Functions
*============================================================================*/
/*---------------------------------------------------------------------------*
* NAME
* mark_property_modified()
*
* DESCRIPTION
* Mark indicated property and it's owning object as modified. If the
* recurse flag is st, then the owning object's parent object is also
* marked as modified recursively up to the top of the tree.
*
* RETURNS
* (none)
*---------------------------------------------------------------------------*/
extern void mark_property_modified(
VPROP_T *p_prop, /* The property */
bool_t recurse /* Recurse? */
);
/*=============================================================================*
End of file
*============================================================================*/
#endif /*_VF_MODIFIED_H_*/
|