Changeset 1643
- Timestamp:
- Aug 27, 2004, 1:10:16 PM (22 years ago)
- File:
-
- 1 edited
-
trunk/archive/pslib/include/psMetadata.h (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/archive/pslib/include/psMetadata.h
r1639 r1643 69 69 /// Add item to the end of the metadata 70 70 bool *psMetadataAddItem(psMetadata *md, ///< metadata to add to 71 int where,///< Where to add item72 psMetadataItem *item) ///< Metatdata item to add71 int location, ///< Where to add item 72 psMetadataItem *item) ///< Metatdata item to add 73 73 ; 74 74 75 75 /// Add item to the end of the metadata. Combines psMetadataItemAlloc and psMetadataAppendItem 76 bool *psMetadataAdd(psMetadata *md, ///< Metadata to add to77 int where,///< Where to add item78 const char *name,///< name of new item of metadata (sprintf format)79 int format,///< type of this piece of metadata + flags80 const char *comment, ///< comment associated with item81 ...)///< possible arguments for name format76 bool *psMetadataAdd(psMetadata *md, ///< Metadata to add to 77 int location, ///< Where to add item 78 const char *name, ///< name of new item of metadata (sprintf format) 79 int format, ///< type of this piece of metadata + flags 80 const char *comment, ///< comment associated with item 81 ...) ///< possible arguments for name format 82 82 ; 83 83 84 84 /// delete item from the metadata 85 85 bool *psMetadataRemove(psMetadata *md, ///< metadata to delete from 86 int where, ///< Where to remove86 int location, ///< Where to remove 87 87 const char *key ///< Key to delete 88 88 ); … … 95 95 /// retrieve the metadata on the basis of entry position 96 96 psMetadataItem *psMetadataGet(const psMetadata *md, ///< metadata to look up 97 int which///< entry position97 int location ///< entry position 98 98 ); 99 99 100 100 /// reset the iterator to the start of the list 101 101 void psMetadataSetIterator(psMetadata *md, ///< metadata to set iterator for 102 int which,///< Which iterator to set103 int where///< Where to set iterator102 int iterator, ///< Which iterator to set 103 int location ///< Where to set iterator 104 104 ); 105 105 … … 107 107 psMetadataItem *psMetadataGetNext(psMetadata *md, ///< metadata to get from 108 108 const char *match, ///< String to match 109 int which///< Which iterator to use109 int iterator ///< Which iterator to use 110 110 ); 111 111 … … 113 113 psMetadataItem *psMetadataGetPrevious(psMetadata *md, ///< metadata to get from 114 114 const char *match, ///< String to match 115 int which///< Which iterator to use115 int iterator ///< Which iterator to use 116 116 ); 117 117
Note:
See TracChangeset
for help on using the changeset viewer.
