1<html>
2<head>
3<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
4<meta http-equiv="Content-Style-Type" content="text/css">
5<title>TCLPictureInfo</title>
6<link rel="stylesheet" href="../css/nitro.css" type="text/css">
7</head>
8<body>
9<h1 align="left">TCLPictureInfo <img src="../image/TWL.gif" align="middle"></h1>
10
11<h2>Definition</h2>
12<dl>
13	<dd>
14	<code>#include &lt;twl/tcl.h&gt;</code><br/> <br/>
15	<pre><code>
16typedef struct
17{
18    s64 second;
19    int favoriteOrder;
20
21    union
22    {
23        u32 bitField;
24        struct
25        {
26            u32 validity     :  1;
27            u32 dirIdx       : 10;
28            u32 fileIdx      :  7;
29            u32 favoriteType :  2;
30            u32 imageType    :  2;
31            u32 keyType      :  2;
32            u32 defaultFrame :  1;
33            u32 reserved     :  7;
34        };
35    };
36} TCLPictureInfo;
37	</code></pre>
38</dl>
39
40<h2>Description</h2>
41<p>This structure defines the image information stored in the management file.</p>
42<p>The direct use of any of its members from an application is prohibited.</p>
43<p>The details of each member are explained in the following list.</p>
44<table>
45<tr><td>second<td>The time when the photo was taken, expressed in seconds.
46<tr><td>favoriteOrder<td>The ordering of favorites when favorites are specified.
47<tr><td>validity<td>Whether photo is valid or invalid.
48<tr><td>dirIdx<td>The directory where the photo is stored.<br/>If set to 0, the photo is stored in <CODE>DCIM/100NIN02</CODE>.
49<tr><td>fileIdx<td>The name of the photo file.<br/>If set to 0, the photo is stored in <CODE>HNI_0001.JPG</CODE>.
50<tr><td>favoriteType<td>The favorite type specified by <a href="TCLFavoriteType.html"><code>TCLFavoriteType</code></a>.
51<tr><td>keyType<td>The key type represented by <a href="TCLKeyType.html"><code>TCLKeyType</code></a>.
52<tr><td>defaultFrame<td>This value is used internally.
53<tr><td>reserved<td>A reserved region.
54</table>
55
56<h2>See Also</h2>
57<p><a href="TCL_SearchNextPictureInfo.html"><CODE>TCL_SearchNextPictureInfo</CODE></a><BR> <a href="TCL_SearchPictureInfoByIndex.html"><CODE>TCL_SearchPictureInfoByIndex</CODE></a><BR> <a href="TCL_PrintPicturePath.html"><CODE>TCL_PrintPicturePath</CODE></a></p>
58
59<h2>Revision History</h2>
60<p>
612008/10/07 Initial version.
62</p>
63
64<hr><p>CONFIDENTIAL</p></body>
65</html>
66