1<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
2<html xmlns="http://www.w3.org/1999/xhtml">
3<head>
4<meta http-equiv="Content-Type" content="text/html; charset=windows-1252" />
5<meta http-equiv="Content-Style-Type" content="text/css" />
6<title>FSDateTime</title>
7<link rel="stylesheet" href="../css/nitro.css" type="text/css" />
8</head>
9<body>
10
11<h1>FSDateTime <img src="../image/NTR.gif"align="middle"><img src="../image/TWL.gif" align="middle"></h1>
12<h2>Definition</h2>
13<pre><code>
14typedef struct FSDateTime
15{
16    u32     year;    // 0-
17    u32     month;   // 1-12
18    u32     day;     // 1-31
19    u32     hour;    // 0-23
20    u32     minute;  // 0-59
21    u32     second;  // 0-60
22}
23FSDateTime;
24
25</code></pre>
26
27<h2>Description</h2>
28<p>A structure that indicates the date and time information handled by the FS library. The details of each member are as follows.</p>
29<table>
30<tr><td>year</td><td>A value 0 or higher that indicates the year.</td></tr>
31<tr><td>month</td><td>A value between 1 and 12 that indicates the month.</td></tr>
32<tr><td>day</td><td>A value between 1 and 31 that indicates the date.</td></tr>
33<tr><td>hour</td><td>A value between 0 and 23 that indicates the hour.</td></tr>
34<tr><td>minute</td><td>A value between 0 and 59 that indicates the minute.</td></tr>
35<tr><td>second</td><td>A value between 0 and 60 that indicates the second.</td></tr>
36</table>
37
38<h2>See Also</h2>
39<p><code><a href="FSDirectoryEntryInfo.html">FSDirectoryEntryInfo</a> <br /> <a href="directory/FS_ReadDirectory.html">FS_ReadDirectory</a></code></p>
40
41<h2>Revision History</h2>
42<p>
432007/09/18 Initial version.
44</p>
45<hr><p>CONFIDENTIAL</p></body>
46</html>
47