Sophie

Sophie

distrib > Mageia > 4 > x86_64 > by-pkgid > 0c0dd6e11043087f51fbcb6418e6a9ed > files > 100

libpst-0.6.61-2.mga4.x86_64.rpm

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
<title>libpst.so.4: libpst/libpst.h Source File</title>
<link href="tabs.css" rel="stylesheet" type="text/css"/>
<link href="doxygen.css" rel="stylesheet" type="text/css"/>
</head>
<body>
<!-- Generated by Doxygen 1.6.1 -->
<div class="navigation" id="top">
  <div class="tabs">
    <ul>
      <li><a href="main.html"><span>Main&nbsp;Page</span></a></li>
      <li><a href="annotated.html"><span>Data&nbsp;Structures</span></a></li>
      <li class="current"><a href="files.html"><span>Files</span></a></li>
      <li><a href="dirs.html"><span>Directories</span></a></li>
    </ul>
  </div>
  <div class="tabs">
    <ul>
      <li><a href="files.html"><span>File&nbsp;List</span></a></li>
      <li><a href="globals.html"><span>Globals</span></a></li>
    </ul>
  </div>
  <div class="navpath"><a class="el" href="dir_b70fe5ddb0cf22452a64074199c6435e.html">libpst</a>
  </div>
</div>
<div class="contents">
<h1>libpst.h</h1><a href="libpst_8h.html">Go to the documentation of this file.</a><div class="fragment"><pre class="fragment"><a name="l00001"></a>00001 <span class="comment">/***</span>
<a name="l00002"></a>00002 <span class="comment"> * libpst.h</span>
<a name="l00003"></a>00003 <span class="comment"> * Part of LibPST project</span>
<a name="l00004"></a>00004 <span class="comment"> * Written by David Smith</span>
<a name="l00005"></a>00005 <span class="comment"> *            dave.s@earthcorp.com</span>
<a name="l00006"></a>00006 <span class="comment"> */</span>
<a name="l00007"></a>00007 <span class="comment">// LibPST - Library for Accessing Outlook .pst files</span>
<a name="l00008"></a>00008 <span class="comment">// Dave Smith - davesmith@users.sourceforge.net</span>
<a name="l00009"></a>00009 
<a name="l00010"></a>00010 <span class="preprocessor">#ifndef __PST_LIBPST_H</span>
<a name="l00011"></a>00011 <span class="preprocessor"></span><span class="preprocessor">#define __PST_LIBPST_H</span>
<a name="l00012"></a>00012 <span class="preprocessor"></span>
<a name="l00013"></a>00013 <span class="preprocessor">#include &quot;<a class="code" href="common_8h.html">common.h</a>&quot;</span>
<a name="l00014"></a>00014 
<a name="l00015"></a>00015 
<a name="l00016"></a>00016 <span class="comment">// switch to maximal packing for all structures in the libpst interface</span>
<a name="l00017"></a>00017 <span class="comment">// this is reverted at the end of this file</span>
<a name="l00018"></a>00018 <span class="preprocessor">#ifdef _MSC_VER</span>
<a name="l00019"></a>00019 <span class="preprocessor"></span><span class="preprocessor">    #pragma pack(push, 1)</span>
<a name="l00020"></a>00020 <span class="preprocessor"></span><span class="preprocessor">#endif</span>
<a name="l00021"></a>00021 <span class="preprocessor"></span><span class="preprocessor">#if defined(__GNUC__) || defined (__SUNPRO_C) || defined(__SUNPRO_CC)</span>
<a name="l00022"></a>00022 <span class="preprocessor"></span><span class="preprocessor">    #pragma pack(1)</span>
<a name="l00023"></a>00023 <span class="preprocessor"></span><span class="preprocessor">#endif</span>
<a name="l00024"></a>00024 <span class="preprocessor"></span>
<a name="l00025"></a>00025 
<a name="l00026"></a><a class="code" href="libpst_8h.html#a067dd115bf089d9ad599636a9930a325">00026</a> <span class="preprocessor">#define PST_TYPE_NOTE        1</span>
<a name="l00027"></a><a class="code" href="libpst_8h.html#a7eb1a4a493adeccdacddea66ae5404ce">00027</a> <span class="preprocessor"></span><span class="preprocessor">#define PST_TYPE_SCHEDULE    2</span>
<a name="l00028"></a><a class="code" href="libpst_8h.html#a54082867a5abcead048db3acd65b6964">00028</a> <span class="preprocessor"></span><span class="preprocessor">#define PST_TYPE_APPOINTMENT 8</span>
<a name="l00029"></a><a class="code" href="libpst_8h.html#a3c3bb7f95ca205b0a8702bab0e14e666">00029</a> <span class="preprocessor"></span><span class="preprocessor">#define PST_TYPE_CONTACT     9</span>
<a name="l00030"></a><a class="code" href="libpst_8h.html#a33b5a70bc92fce5ba585f2023f0895f2">00030</a> <span class="preprocessor"></span><span class="preprocessor">#define PST_TYPE_JOURNAL    10</span>
<a name="l00031"></a><a class="code" href="libpst_8h.html#a926cfe619ea6d2d1c98ca64573aa472f">00031</a> <span class="preprocessor"></span><span class="preprocessor">#define PST_TYPE_STICKYNOTE 11</span>
<a name="l00032"></a><a class="code" href="libpst_8h.html#a433c134116f3cd9fc50eed17d4ffecf9">00032</a> <span class="preprocessor"></span><span class="preprocessor">#define PST_TYPE_TASK       12</span>
<a name="l00033"></a><a class="code" href="libpst_8h.html#a8bfbfef3820e80b8179703e4edd04352">00033</a> <span class="preprocessor"></span><span class="preprocessor">#define PST_TYPE_OTHER      13</span>
<a name="l00034"></a><a class="code" href="libpst_8h.html#add063ff5de7cfe292f0161d787537b3a">00034</a> <span class="preprocessor"></span><span class="preprocessor">#define PST_TYPE_REPORT     14</span>
<a name="l00035"></a>00035 <span class="preprocessor"></span>
<a name="l00036"></a>00036 <span class="comment">// defines types of possible encryption</span>
<a name="l00037"></a><a class="code" href="libpst_8h.html#a39b02a237e27af2fd112b0938af1fae0">00037</a> <span class="preprocessor">#define PST_NO_ENCRYPT   0</span>
<a name="l00038"></a><a class="code" href="libpst_8h.html#a32d08cb8b6424d43069c4499bc3b6f27">00038</a> <span class="preprocessor"></span><span class="preprocessor">#define PST_COMP_ENCRYPT 1</span>
<a name="l00039"></a><a class="code" href="libpst_8h.html#a163bea19c92aaa50258a4bddf407a4c3">00039</a> <span class="preprocessor"></span><span class="preprocessor">#define PST_ENCRYPT      2</span>
<a name="l00040"></a>00040 <span class="preprocessor"></span>
<a name="l00041"></a>00041 <span class="comment">// defines different types of mappings</span>
<a name="l00042"></a><a class="code" href="libpst_8h.html#a26c34b0bec45e2686ac62432cf54c8a7">00042</a> <span class="preprocessor">#define PST_MAP_ATTRIB (uint32_t)1</span>
<a name="l00043"></a><a class="code" href="libpst_8h.html#a422a29b193e2d7f19f0e6be87feb458a">00043</a> <span class="preprocessor"></span><span class="preprocessor">#define PST_MAP_HEADER (uint32_t)2</span>
<a name="l00044"></a>00044 <span class="preprocessor"></span>
<a name="l00045"></a>00045 <span class="comment">// define my custom email attributes.</span>
<a name="l00046"></a><a class="code" href="libpst_8h.html#a2d0c9a47945bd379de5d6633bd0ff28b">00046</a> <span class="preprocessor">#define PST_ATTRIB_HEADER -1</span>
<a name="l00047"></a>00047 <span class="preprocessor"></span>
<a name="l00048"></a>00048 <span class="comment">// defines types of free/busy values for appointment-&gt;showas</span>
<a name="l00049"></a><a class="code" href="libpst_8h.html#a2eac7bd0e0a2fa970c9f5a2e2c8030d6">00049</a> <span class="preprocessor">#define PST_FREEBUSY_FREE          0</span>
<a name="l00050"></a><a class="code" href="libpst_8h.html#a68739dcc9e1222341be0e8f57f3d6ba0">00050</a> <span class="preprocessor"></span><span class="preprocessor">#define PST_FREEBUSY_TENTATIVE     1</span>
<a name="l00051"></a><a class="code" href="libpst_8h.html#a6ce77555f39712cb0b660a814a8be018">00051</a> <span class="preprocessor"></span><span class="preprocessor">#define PST_FREEBUSY_BUSY          2</span>
<a name="l00052"></a><a class="code" href="libpst_8h.html#a561ffae871b0e11d18ffca858a2196f9">00052</a> <span class="preprocessor"></span><span class="preprocessor">#define PST_FREEBUSY_OUT_OF_OFFICE 3</span>
<a name="l00053"></a>00053 <span class="preprocessor"></span>
<a name="l00054"></a>00054 <span class="comment">// defines labels for appointment-&gt;label</span>
<a name="l00055"></a><a class="code" href="libpst_8h.html#adad9c4fef50363d2cc32e9b2a7219a91">00055</a> <span class="preprocessor">#define PST_APP_LABEL_NONE        0</span>
<a name="l00056"></a><a class="code" href="libpst_8h.html#aa33c417bb32712bd14134d80934d0127">00056</a> <span class="preprocessor"></span><span class="preprocessor">#define PST_APP_LABEL_IMPORTANT   1</span>
<a name="l00057"></a><a class="code" href="libpst_8h.html#abea16bc612283092363915c337ba365b">00057</a> <span class="preprocessor"></span><span class="preprocessor">#define PST_APP_LABEL_BUSINESS    2</span>
<a name="l00058"></a><a class="code" href="libpst_8h.html#af06d39899840c3f7fe26917d43f7c5c7">00058</a> <span class="preprocessor"></span><span class="preprocessor">#define PST_APP_LABEL_PERSONAL    3</span>
<a name="l00059"></a><a class="code" href="libpst_8h.html#ab2ef6185e89a11e8809aff4a61faf9fc">00059</a> <span class="preprocessor"></span><span class="preprocessor">#define PST_APP_LABEL_VACATION    4</span>
<a name="l00060"></a><a class="code" href="libpst_8h.html#abf557f45202ccf131f9fd16daf3295f0">00060</a> <span class="preprocessor"></span><span class="preprocessor">#define PST_APP_LABEL_MUST_ATTEND 5</span>
<a name="l00061"></a><a class="code" href="libpst_8h.html#af4cc660964ac550cb4bdd1528fbbf6b7">00061</a> <span class="preprocessor"></span><span class="preprocessor">#define PST_APP_LABEL_TRAVEL_REQ  6</span>
<a name="l00062"></a><a class="code" href="libpst_8h.html#a5e8f4cde70751b8e5eb24a304d2dea47">00062</a> <span class="preprocessor"></span><span class="preprocessor">#define PST_APP_LABEL_NEEDS_PREP  7</span>
<a name="l00063"></a><a class="code" href="libpst_8h.html#adb0851d426058ce224f071be3176055f">00063</a> <span class="preprocessor"></span><span class="preprocessor">#define PST_APP_LABEL_BIRTHDAY    8</span>
<a name="l00064"></a><a class="code" href="libpst_8h.html#aaa1218e538a3d7e88ca5a64cabf1d8ec">00064</a> <span class="preprocessor"></span><span class="preprocessor">#define PST_APP_LABEL_ANNIVERSARY 9</span>
<a name="l00065"></a><a class="code" href="libpst_8h.html#a1cea5aa39674fc0e4ba9e5add208fd32">00065</a> <span class="preprocessor"></span><span class="preprocessor">#define PST_APP_LABEL_PHONE_CALL  10</span>
<a name="l00066"></a>00066 <span class="preprocessor"></span>
<a name="l00067"></a>00067 <span class="comment">// define type of recuring event</span>
<a name="l00068"></a><a class="code" href="libpst_8h.html#a74d30012e75dc5bd6215c9eb18047676">00068</a> <span class="preprocessor">#define PST_APP_RECUR_NONE        0</span>
<a name="l00069"></a><a class="code" href="libpst_8h.html#a9872f281684f9c1165ffb65044d81b82">00069</a> <span class="preprocessor"></span><span class="preprocessor">#define PST_APP_RECUR_DAILY       1</span>
<a name="l00070"></a><a class="code" href="libpst_8h.html#ab91a69e8127873f344554b6c2bbf3a6f">00070</a> <span class="preprocessor"></span><span class="preprocessor">#define PST_APP_RECUR_WEEKLY      2</span>
<a name="l00071"></a><a class="code" href="libpst_8h.html#a7396f2fb2a6d26b09869c15c774023d2">00071</a> <span class="preprocessor"></span><span class="preprocessor">#define PST_APP_RECUR_MONTHLY     3</span>
<a name="l00072"></a><a class="code" href="libpst_8h.html#a3db1ef5ddd05cf02a7f17f16382bced4">00072</a> <span class="preprocessor"></span><span class="preprocessor">#define PST_APP_RECUR_YEARLY      4</span>
<a name="l00073"></a>00073 <span class="preprocessor"></span>
<a name="l00074"></a>00074 <span class="comment">// define attachment types</span>
<a name="l00075"></a><a class="code" href="libpst_8h.html#a03404b2838144bfd6750ba44be7c1d57">00075</a> <span class="preprocessor">#define PST_ATTACH_NONE             0</span>
<a name="l00076"></a><a class="code" href="libpst_8h.html#aa7dbdb545b71dac410daf924b726b7a5">00076</a> <span class="preprocessor"></span><span class="preprocessor">#define PST_ATTACH_BY_VALUE         1</span>
<a name="l00077"></a><a class="code" href="libpst_8h.html#a1ee65134bcb3435a3832b7f9621c15e4">00077</a> <span class="preprocessor"></span><span class="preprocessor">#define PST_ATTACH_BY_REF           2</span>
<a name="l00078"></a><a class="code" href="libpst_8h.html#a1c841dee29e34e402ddfb88cdc0d8db2">00078</a> <span class="preprocessor"></span><span class="preprocessor">#define PST_ATTACH_BY_REF_RESOLV    3</span>
<a name="l00079"></a><a class="code" href="libpst_8h.html#ad4ca3b4383c2cee25089cc67956bb2c3">00079</a> <span class="preprocessor"></span><span class="preprocessor">#define PST_ATTACH_BY_REF_ONLY      4</span>
<a name="l00080"></a><a class="code" href="libpst_8h.html#a398b281e861cde6cbc9e683b1a67e735">00080</a> <span class="preprocessor"></span><span class="preprocessor">#define PST_ATTACH_EMBEDDED         5</span>
<a name="l00081"></a><a class="code" href="libpst_8h.html#af1070fb93407977247375f64f9b24ce7">00081</a> <span class="preprocessor"></span><span class="preprocessor">#define PST_ATTACH_OLE              6</span>
<a name="l00082"></a>00082 <span class="preprocessor"></span>
<a name="l00083"></a>00083 <span class="comment">// define flags</span>
<a name="l00084"></a><a class="code" href="libpst_8h.html#aa8312976f71769ae8f6402010cbb3ed5">00084</a> <span class="preprocessor">#define PST_FLAG_READ           0x01</span>
<a name="l00085"></a><a class="code" href="libpst_8h.html#a8041d9ae897a479e405c99e88c4ae183">00085</a> <span class="preprocessor"></span><span class="preprocessor">#define PST_FLAG_UNMODIFIED     0x02</span>
<a name="l00086"></a><a class="code" href="libpst_8h.html#ad8c3b0f42552a81fd3265111957b103f">00086</a> <span class="preprocessor"></span><span class="preprocessor">#define PST_FLAG_SUBMIT         0x04</span>
<a name="l00087"></a><a class="code" href="libpst_8h.html#ad861124a87d3646d3ea88de686dacf6f">00087</a> <span class="preprocessor"></span><span class="preprocessor">#define PST_FLAG_UNSENT         0x08</span>
<a name="l00088"></a><a class="code" href="libpst_8h.html#ae71414d4c41bcc53f8c8f5e7b92533d3">00088</a> <span class="preprocessor"></span><span class="preprocessor">#define PST_FLAG_HAS_ATTACHMENT 0x10</span>
<a name="l00089"></a><a class="code" href="libpst_8h.html#a4adcd75eea64bb26ebd4b406e3ebc046">00089</a> <span class="preprocessor"></span><span class="preprocessor">#define PST_FLAG_FROM_ME        0x20</span>
<a name="l00090"></a><a class="code" href="libpst_8h.html#a5c98f74d9b5e47780d70b2f2e461266c">00090</a> <span class="preprocessor"></span><span class="preprocessor">#define PST_FLAG_ASSOCIATED     0x40</span>
<a name="l00091"></a><a class="code" href="libpst_8h.html#a9445ee3442156cfd81b2515c4fd42f74">00091</a> <span class="preprocessor"></span><span class="preprocessor">#define PST_FLAG_RESEND         0x80</span>
<a name="l00092"></a><a class="code" href="libpst_8h.html#a2ddd23ac39df654c6549797ccc52b232">00092</a> <span class="preprocessor"></span><span class="preprocessor">#define PST_FLAG_RN_PENDING     0x100</span>
<a name="l00093"></a><a class="code" href="libpst_8h.html#a6106da25010cdc0742c3010ba3bdc62b">00093</a> <span class="preprocessor"></span><span class="preprocessor">#define PST_FLAG_NRN_PENDING    0x200</span>
<a name="l00094"></a>00094 <span class="preprocessor"></span>
<a name="l00095"></a>00095 
<a name="l00096"></a><a class="code" href="structpst__entryid.html">00096</a> <span class="keyword">typedef</span> <span class="keyword">struct </span><a class="code" href="structpst__entryid.html">pst_entryid</a> {
<a name="l00097"></a><a class="code" href="structpst__entryid.html#a519ea480934678588156fcfc1b16953e">00097</a>     int32_t <a class="code" href="structpst__entryid.html#a519ea480934678588156fcfc1b16953e">u1</a>;
<a name="l00098"></a><a class="code" href="structpst__entryid.html#a712b892005cccc699994fb0327204957">00098</a>     <span class="keywordtype">char</span> <a class="code" href="structpst__entryid.html#a712b892005cccc699994fb0327204957">entryid</a>[16];
<a name="l00099"></a><a class="code" href="structpst__entryid.html#a2be6cdcf88ecd55ecb5b5445802ce7c4">00099</a>     uint32_t <a class="code" href="structpst__entryid.html#a2be6cdcf88ecd55ecb5b5445802ce7c4">id</a>;
<a name="l00100"></a>00100 } <a class="code" href="structpst__entryid.html">pst_entryid</a>;
<a name="l00101"></a>00101 
<a name="l00102"></a>00102 
<a name="l00103"></a><a class="code" href="structpst__index__ll.html">00103</a> <span class="keyword">typedef</span> <span class="keyword">struct </span><a class="code" href="structpst__index__ll.html">pst_index_ll</a> {
<a name="l00104"></a><a class="code" href="structpst__index__ll.html#af3bfd9db3bc96d57a04a7d2c585d4f7e">00104</a>     uint64_t <a class="code" href="structpst__index__ll.html#af3bfd9db3bc96d57a04a7d2c585d4f7e">i_id</a>;
<a name="l00105"></a><a class="code" href="structpst__index__ll.html#a81ec68a3057a52954e2ae92b40377d9b">00105</a>     uint64_t <a class="code" href="structpst__index__ll.html#a81ec68a3057a52954e2ae92b40377d9b">offset</a>;
<a name="l00106"></a><a class="code" href="structpst__index__ll.html#a62bb80ec3d00aac5e06ac08203265db3">00106</a>     uint64_t <a class="code" href="structpst__index__ll.html#a62bb80ec3d00aac5e06ac08203265db3">size</a>;
<a name="l00107"></a><a class="code" href="structpst__index__ll.html#a2d533fe2bef0c05f933fb4a7da71c8bd">00107</a>     int64_t  <a class="code" href="structpst__index__ll.html#a2d533fe2bef0c05f933fb4a7da71c8bd">u1</a>;
<a name="l00108"></a><a class="code" href="structpst__index__ll.html#aff26507a9b7996b878019dde0fba5688">00108</a>     <span class="keyword">struct </span><a class="code" href="structpst__index__ll.html">pst_index_ll</a> *<a class="code" href="structpst__index__ll.html#aff26507a9b7996b878019dde0fba5688">next</a>;
<a name="l00109"></a>00109 } <a class="code" href="structpst__index__ll.html">pst_index_ll</a>;
<a name="l00110"></a>00110 
<a name="l00111"></a>00111 
<a name="l00112"></a><a class="code" href="structpst__id2__tree.html">00112</a> <span class="keyword">typedef</span> <span class="keyword">struct </span><a class="code" href="structpst__id2__tree.html">pst_id2_tree</a> {
<a name="l00113"></a><a class="code" href="structpst__id2__tree.html#af9ed169c9113d625ca1f186ca924214d">00113</a>     uint64_t            <a class="code" href="structpst__id2__tree.html#af9ed169c9113d625ca1f186ca924214d">id2</a>;
<a name="l00114"></a><a class="code" href="structpst__id2__tree.html#ae282a5874f087ca71dc0731992778780">00114</a>     <a class="code" href="structpst__index__ll.html">pst_index_ll</a>        *<a class="code" href="structpst__id2__tree.html#ae282a5874f087ca71dc0731992778780">id</a>;
<a name="l00115"></a><a class="code" href="structpst__id2__tree.html#a18f1f6bc836a706774e12f01974ec42a">00115</a>     <span class="keyword">struct </span><a class="code" href="structpst__id2__tree.html">pst_id2_tree</a> *<a class="code" href="structpst__id2__tree.html#a18f1f6bc836a706774e12f01974ec42a">child</a>;
<a name="l00116"></a><a class="code" href="structpst__id2__tree.html#a5b8e15175830cd62a888f836e1bf8c30">00116</a>     <span class="keyword">struct </span><a class="code" href="structpst__id2__tree.html">pst_id2_tree</a> *<a class="code" href="structpst__id2__tree.html#a5b8e15175830cd62a888f836e1bf8c30">next</a>;
<a name="l00117"></a>00117 } <a class="code" href="structpst__id2__tree.html">pst_id2_tree</a>;
<a name="l00118"></a>00118 
<a name="l00119"></a>00119 
<a name="l00120"></a><a class="code" href="structpst__desc__tree.html">00120</a> <span class="keyword">typedef</span> <span class="keyword">struct </span><a class="code" href="structpst__desc__tree.html">pst_desc_tree</a> {
<a name="l00121"></a><a class="code" href="structpst__desc__tree.html#ae63bfa0506df0c39b27e02ce7101b0df">00121</a>     uint64_t              <a class="code" href="structpst__desc__tree.html#ae63bfa0506df0c39b27e02ce7101b0df">d_id</a>;
<a name="l00122"></a><a class="code" href="structpst__desc__tree.html#a95886c82a833909549fbd5eff3c2003e">00122</a>     uint64_t              <a class="code" href="structpst__desc__tree.html#a95886c82a833909549fbd5eff3c2003e">parent_d_id</a>;
<a name="l00123"></a><a class="code" href="structpst__desc__tree.html#a97871cdc8ac25519742b49d81a06cc17">00123</a>     <a class="code" href="structpst__index__ll.html">pst_index_ll</a>         *<a class="code" href="structpst__desc__tree.html#a97871cdc8ac25519742b49d81a06cc17">desc</a>;
<a name="l00124"></a><a class="code" href="structpst__desc__tree.html#a4053f4efe7fabd0e0d19ead57b14bc98">00124</a>     <a class="code" href="structpst__index__ll.html">pst_index_ll</a>         *<a class="code" href="structpst__desc__tree.html#a4053f4efe7fabd0e0d19ead57b14bc98">assoc_tree</a>;
<a name="l00125"></a><a class="code" href="structpst__desc__tree.html#a79bc2b124a95a3777eac6ec650bb717a">00125</a>     int32_t               <a class="code" href="structpst__desc__tree.html#a79bc2b124a95a3777eac6ec650bb717a">no_child</a>;
<a name="l00126"></a><a class="code" href="structpst__desc__tree.html#a4202afc77ea4db474ecc821e7ca22324">00126</a>     <span class="keyword">struct </span><a class="code" href="structpst__desc__tree.html">pst_desc_tree</a> *<a class="code" href="structpst__desc__tree.html#a4202afc77ea4db474ecc821e7ca22324">prev</a>;
<a name="l00127"></a><a class="code" href="structpst__desc__tree.html#a13ca30f1c5d38a9cd886e93a674876cb">00127</a>     <span class="keyword">struct </span><a class="code" href="structpst__desc__tree.html">pst_desc_tree</a> *<a class="code" href="structpst__desc__tree.html#a13ca30f1c5d38a9cd886e93a674876cb">next</a>;
<a name="l00128"></a><a class="code" href="structpst__desc__tree.html#a9b07fced4289c54b2f9db701309b9ac7">00128</a>     <span class="keyword">struct </span><a class="code" href="structpst__desc__tree.html">pst_desc_tree</a> *<a class="code" href="structpst__desc__tree.html#a9b07fced4289c54b2f9db701309b9ac7">parent</a>;
<a name="l00129"></a><a class="code" href="structpst__desc__tree.html#a2e049e1efeddc15532e05839c6174aca">00129</a>     <span class="keyword">struct </span><a class="code" href="structpst__desc__tree.html">pst_desc_tree</a> *<a class="code" href="structpst__desc__tree.html#a2e049e1efeddc15532e05839c6174aca">child</a>;
<a name="l00130"></a><a class="code" href="structpst__desc__tree.html#a9adf0457b752c08aeac9cf4a9ee26b89">00130</a>     <span class="keyword">struct </span><a class="code" href="structpst__desc__tree.html">pst_desc_tree</a> *<a class="code" href="structpst__desc__tree.html#a9adf0457b752c08aeac9cf4a9ee26b89">child_tail</a>;
<a name="l00131"></a>00131 } <a class="code" href="structpst__desc__tree.html">pst_desc_tree</a>;
<a name="l00132"></a>00132 
<a name="l00133"></a>00133 
<a name="l00138"></a><a class="code" href="structpst__string.html">00138</a> <span class="keyword">typedef</span> <span class="keyword">struct </span><a class="code" href="structpst__string.html" title="The string is either utf8 encoded, or it is in the code page specified by the containing...">pst_string</a> {
<a name="l00141"></a><a class="code" href="structpst__string.html#a143e846cde590cea9dd34a595333082d">00141</a>     <span class="keywordtype">int</span>     <a class="code" href="structpst__string.html#a143e846cde590cea9dd34a595333082d">is_utf8</a>;
<a name="l00142"></a><a class="code" href="structpst__string.html#a8a0c092f11d7cd6b6218e2881cfab51c">00142</a>     <span class="keywordtype">char</span>   *<a class="code" href="structpst__string.html#a8a0c092f11d7cd6b6218e2881cfab51c">str</a>;
<a name="l00143"></a>00143 } <a class="code" href="structpst__string.html" title="The string is either utf8 encoded, or it is in the code page specified by the containing...">pst_string</a>;
<a name="l00144"></a>00144 
<a name="l00145"></a>00145 
<a name="l00147"></a><a class="code" href="structpst__binary.html">00147</a> <span class="keyword">typedef</span> <span class="keyword">struct </span><a class="code" href="structpst__binary.html" title="a simple wrapper for binary blobs">pst_binary</a> {
<a name="l00148"></a><a class="code" href="structpst__binary.html#a3aea360370d0414a1a25fa878a14e8dc">00148</a>     <span class="keywordtype">size_t</span>  <a class="code" href="structpst__binary.html#a3aea360370d0414a1a25fa878a14e8dc">size</a>;
<a name="l00149"></a><a class="code" href="structpst__binary.html#a2d172aa42caca6a4e58510e3eddd9ea8">00149</a>     <span class="keywordtype">char</span>   *<a class="code" href="structpst__binary.html#a2d172aa42caca6a4e58510e3eddd9ea8">data</a>;
<a name="l00150"></a>00150 } <a class="code" href="structpst__binary.html" title="a simple wrapper for binary blobs">pst_binary</a>;
<a name="l00151"></a>00151 
<a name="l00152"></a>00152 
<a name="l00155"></a><a class="code" href="structpst__item__email.html">00155</a> <span class="keyword">typedef</span> <span class="keyword">struct </span><a class="code" href="structpst__item__email.html" title="This contains the email related mapi elements.">pst_item_email</a> {
<a name="l00157"></a><a class="code" href="structpst__item__email.html#aafccd6bf533dd7cd73ccab5fc11ca426">00157</a>     <a class="code" href="structFILETIME.html">FILETIME</a>   *<a class="code" href="structpst__item__email.html#aafccd6bf533dd7cd73ccab5fc11ca426" title="mapi element 0x0e06 PR_MESSAGE_DELIVERY_TIME">arrival_date</a>;
<a name="l00162"></a><a class="code" href="structpst__item__email.html#a6674ea3cc6d2916f0e4b6f797fbdfa05">00162</a>     <span class="keywordtype">int</span>         <a class="code" href="structpst__item__email.html#a6674ea3cc6d2916f0e4b6f797fbdfa05" title="mapi element 0x0002 PR_ALTERNATE_RECIPIENT_ALLOWED">autoforward</a>;
<a name="l00164"></a><a class="code" href="structpst__item__email.html#af140d3c908603bbf83d95ddbc1495aa4">00164</a>     <a class="code" href="structpst__string.html" title="The string is either utf8 encoded, or it is in the code page specified by the containing...">pst_string</a>  <a class="code" href="structpst__item__email.html#af140d3c908603bbf83d95ddbc1495aa4" title="mapi element 0x0e03 PR_DISPLAY_CC">cc_address</a>;
<a name="l00166"></a><a class="code" href="structpst__item__email.html#a8a7585dad8e6fbbec12f3f5dff8f4d0a">00166</a>     <a class="code" href="structpst__string.html" title="The string is either utf8 encoded, or it is in the code page specified by the containing...">pst_string</a>  <a class="code" href="structpst__item__email.html#a8a7585dad8e6fbbec12f3f5dff8f4d0a" title="mapi element 0x0e02 PR_DISPLAY_BCC">bcc_address</a>;
<a name="l00168"></a><a class="code" href="structpst__item__email.html#ade89df2bc3cacd2dcaef9e4ecc27c90f">00168</a>     <a class="code" href="structpst__binary.html" title="a simple wrapper for binary blobs">pst_binary</a>  <a class="code" href="structpst__item__email.html#ade89df2bc3cacd2dcaef9e4ecc27c90f" title="mapi element 0x0071 PR_CONVERSATION_INDEX">conversation_index</a>;
<a name="l00172"></a><a class="code" href="structpst__item__email.html#a11824835e62de48c6bf99f2322375d3c">00172</a>     <span class="keywordtype">int</span>         <a class="code" href="structpst__item__email.html#a11824835e62de48c6bf99f2322375d3c" title="mapi element 0x3a03 PR_CONVERSION_PROHIBITED">conversion_prohibited</a>;
<a name="l00176"></a><a class="code" href="structpst__item__email.html#a5b8721cf9f59d694b6a40b594f03b89d">00176</a>     <span class="keywordtype">int</span>         <a class="code" href="structpst__item__email.html#a5b8721cf9f59d694b6a40b594f03b89d" title="mapi element 0x0e01 PR_DELETE_AFTER_SUBMIT">delete_after_submit</a>;
<a name="l00180"></a><a class="code" href="structpst__item__email.html#a63442008fbf1f7fdc8a8767e49808855">00180</a>     <span class="keywordtype">int</span>         <a class="code" href="structpst__item__email.html#a63442008fbf1f7fdc8a8767e49808855" title="mapi element 0x0023 PR_ORIGINATOR_DELIVERY_REPORT_REQUESTED">delivery_report</a>;
<a name="l00182"></a><a class="code" href="structpst__item__email.html#a2ca35b30bd9576cfa64c3568f7f1cbad">00182</a>     <a class="code" href="structpst__binary.html" title="a simple wrapper for binary blobs">pst_binary</a>  <a class="code" href="structpst__item__email.html#a2ca35b30bd9576cfa64c3568f7f1cbad" title="mapi element 0x6f04">encrypted_body</a>;
<a name="l00184"></a><a class="code" href="structpst__item__email.html#a41d929b72fde59a49e367916d9669f27">00184</a>     <a class="code" href="structpst__binary.html" title="a simple wrapper for binary blobs">pst_binary</a>  <a class="code" href="structpst__item__email.html#a41d929b72fde59a49e367916d9669f27" title="mapi element 0x6f02">encrypted_htmlbody</a>;
<a name="l00186"></a><a class="code" href="structpst__item__email.html#ab345f4f45f406f6556b46567df5fc50f">00186</a>     <a class="code" href="structpst__string.html" title="The string is either utf8 encoded, or it is in the code page specified by the containing...">pst_string</a>  <a class="code" href="structpst__item__email.html#ab345f4f45f406f6556b46567df5fc50f" title="mapi element 0x007d PR_TRANSPORT_MESSAGE_HEADERS">header</a>;
<a name="l00188"></a><a class="code" href="structpst__item__email.html#a9b920a2bc2fcc69d745dcb34d2c0ae4e">00188</a>     <a class="code" href="structpst__string.html" title="The string is either utf8 encoded, or it is in the code page specified by the containing...">pst_string</a>  <a class="code" href="structpst__item__email.html#a9b920a2bc2fcc69d745dcb34d2c0ae4e" title="mapi element 0x1013">htmlbody</a>;
<a name="l00193"></a><a class="code" href="structpst__item__email.html#a9c479dded5e18d6917e7edae1271678d">00193</a>     int32_t     <a class="code" href="structpst__item__email.html#a9c479dded5e18d6917e7edae1271678d" title="mapi element 0x0017 PR_IMPORTANCE">importance</a>;
<a name="l00195"></a><a class="code" href="structpst__item__email.html#a546ef8423b20d572f6e296c60eac4e79">00195</a>     <a class="code" href="structpst__string.html" title="The string is either utf8 encoded, or it is in the code page specified by the containing...">pst_string</a>  <a class="code" href="structpst__item__email.html#a546ef8423b20d572f6e296c60eac4e79" title="mapi element 0x1042">in_reply_to</a>;
<a name="l00199"></a><a class="code" href="structpst__item__email.html#a684bc967f090e34276246865b8dfb0df">00199</a>     <span class="keywordtype">int</span>         <a class="code" href="structpst__item__email.html#a684bc967f090e34276246865b8dfb0df" title="mapi element 0x0058 PR_MESSAGE_CC_ME, this user is listed explicitly in the CC address...">message_cc_me</a>;
<a name="l00203"></a><a class="code" href="structpst__item__email.html#aff394f8c717e693ee3c0e6ae94106fc1">00203</a>     <span class="keywordtype">int</span>         <a class="code" href="structpst__item__email.html#aff394f8c717e693ee3c0e6ae94106fc1" title="mapi element 0x0059 PR_MESSAGE_RECIP_ME, this user appears in TO, CC or BCC address...">message_recip_me</a>;
<a name="l00207"></a><a class="code" href="structpst__item__email.html#a61a2c84e0b1c491972e856f2fb50ad20">00207</a>     <span class="keywordtype">int</span>         <a class="code" href="structpst__item__email.html#a61a2c84e0b1c491972e856f2fb50ad20" title="mapi element 0x0057 PR_MESSAGE_TO_ME, this user is listed explicitly in the TO address...">message_to_me</a>;
<a name="l00209"></a><a class="code" href="structpst__item__email.html#a01bd645a3a657dd424895eb93a058de8">00209</a>     <a class="code" href="structpst__string.html" title="The string is either utf8 encoded, or it is in the code page specified by the containing...">pst_string</a>  <a class="code" href="structpst__item__email.html#a01bd645a3a657dd424895eb93a058de8" title="mapi element 0x1035">messageid</a>;
<a name="l00215"></a><a class="code" href="structpst__item__email.html#a42a7c0e43aac56ba1bd94a464dca906a">00215</a>     int32_t     <a class="code" href="structpst__item__email.html#a42a7c0e43aac56ba1bd94a464dca906a" title="mapi element 0x002e PR_ORIGINAL_SENSITIVITY">original_sensitivity</a>;
<a name="l00217"></a><a class="code" href="structpst__item__email.html#ad7071dfba24f9a408b3ae3fdad02143b">00217</a>     <a class="code" href="structpst__string.html" title="The string is either utf8 encoded, or it is in the code page specified by the containing...">pst_string</a>  <a class="code" href="structpst__item__email.html#ad7071dfba24f9a408b3ae3fdad02143b" title="mapi element 0x0072 PR_ORIGINAL_DISPLAY_BCC">original_bcc</a>;
<a name="l00219"></a><a class="code" href="structpst__item__email.html#a6ca98b22712fc959fb93f6ee594158a1">00219</a>     <a class="code" href="structpst__string.html" title="The string is either utf8 encoded, or it is in the code page specified by the containing...">pst_string</a>  <a class="code" href="structpst__item__email.html#a6ca98b22712fc959fb93f6ee594158a1" title="mapi element 0x0073 PR_ORIGINAL_DISPLAY_CC">original_cc</a>;
<a name="l00221"></a><a class="code" href="structpst__item__email.html#a89b5d1c92dad6e78028d80a191056ff5">00221</a>     <a class="code" href="structpst__string.html" title="The string is either utf8 encoded, or it is in the code page specified by the containing...">pst_string</a>  <a class="code" href="structpst__item__email.html#a89b5d1c92dad6e78028d80a191056ff5" title="mapi element 0x0074 PR_ORIGINAL_DISPLAY_TO">original_to</a>;
<a name="l00223"></a><a class="code" href="structpst__item__email.html#adb32f3edf51bb3454bca57888c1adf43">00223</a>     <a class="code" href="structpst__string.html" title="The string is either utf8 encoded, or it is in the code page specified by the containing...">pst_string</a>  <a class="code" href="structpst__item__email.html#adb32f3edf51bb3454bca57888c1adf43" title="mapi element 0x0051 PR_RECEIVED_BY_SEARCH_KEY">outlook_recipient</a>;
<a name="l00225"></a><a class="code" href="structpst__item__email.html#a81cb4791d6e3011048ec5d04787bb7a9">00225</a>     <a class="code" href="structpst__string.html" title="The string is either utf8 encoded, or it is in the code page specified by the containing...">pst_string</a>  <a class="code" href="structpst__item__email.html#a81cb4791d6e3011048ec5d04787bb7a9" title="mapi element 0x0044 PR_RCVD_REPRESENTING_NAME">outlook_recipient_name</a>;
<a name="l00227"></a><a class="code" href="structpst__item__email.html#a9842432b1c8424920215ed4e44ee2751">00227</a>     <a class="code" href="structpst__string.html" title="The string is either utf8 encoded, or it is in the code page specified by the containing...">pst_string</a>  <a class="code" href="structpst__item__email.html#a9842432b1c8424920215ed4e44ee2751" title="mapi element 0x0052 PR_RCVD_REPRESENTING_SEARCH_KEY">outlook_recipient2</a>;
<a name="l00229"></a><a class="code" href="structpst__item__email.html#af332f879ee7ebd0ce4213141f8260560">00229</a>     <a class="code" href="structpst__string.html" title="The string is either utf8 encoded, or it is in the code page specified by the containing...">pst_string</a>  <a class="code" href="structpst__item__email.html#af332f879ee7ebd0ce4213141f8260560" title="mapi element 0x003b PR_SENT_REPRESENTING_SEARCH_KEY">outlook_sender</a>;
<a name="l00231"></a><a class="code" href="structpst__item__email.html#adb014ff1c4450478fe487c59ee3d5b46">00231</a>     <a class="code" href="structpst__string.html" title="The string is either utf8 encoded, or it is in the code page specified by the containing...">pst_string</a>  <a class="code" href="structpst__item__email.html#adb014ff1c4450478fe487c59ee3d5b46" title="mapi element 0x0042 PR_SENT_REPRESENTING_NAME">outlook_sender_name</a>;
<a name="l00233"></a><a class="code" href="structpst__item__email.html#a03ce2291f02d13799b938412440e79a2">00233</a>     <a class="code" href="structpst__string.html" title="The string is either utf8 encoded, or it is in the code page specified by the containing...">pst_string</a>  <a class="code" href="structpst__item__email.html#a03ce2291f02d13799b938412440e79a2" title="mapi element 0x0c1d PR_SENDER_SEARCH_KEY">outlook_sender2</a>;
<a name="l00239"></a><a class="code" href="structpst__item__email.html#acb9109331cffa13c7d7ac52cb65cf034">00239</a>     int32_t     <a class="code" href="structpst__item__email.html#acb9109331cffa13c7d7ac52cb65cf034" title="mapi element 0x0026 PR_PRIORITY">priority</a>;
<a name="l00241"></a><a class="code" href="structpst__item__email.html#a0647e8060f83d5c1df3f149e635ec2a5">00241</a>     <a class="code" href="structpst__string.html" title="The string is either utf8 encoded, or it is in the code page specified by the containing...">pst_string</a>  <a class="code" href="structpst__item__email.html#a0647e8060f83d5c1df3f149e635ec2a5" title="mapi element 0x0070 PR_CONVERSATION_TOPIC">processed_subject</a>;
<a name="l00245"></a><a class="code" href="structpst__item__email.html#a15bc0bb659ab9bc2d87089171d0bcaec">00245</a>     <span class="keywordtype">int</span>         <a class="code" href="structpst__item__email.html#a15bc0bb659ab9bc2d87089171d0bcaec" title="mapi element 0x0029 PR_READ_RECEIPT_REQUESTED">read_receipt</a>;
<a name="l00247"></a><a class="code" href="structpst__item__email.html#af592e526ab1df991918f19e46bca88ae">00247</a>     <a class="code" href="structpst__string.html" title="The string is either utf8 encoded, or it is in the code page specified by the containing...">pst_string</a>  <a class="code" href="structpst__item__email.html#af592e526ab1df991918f19e46bca88ae" title="mapi element 0x0075 PR_RECEIVED_BY_ADDRTYPE">recip_access</a>;
<a name="l00249"></a><a class="code" href="structpst__item__email.html#ad7fabe8260c19a5fa438846d555e7526">00249</a>     <a class="code" href="structpst__string.html" title="The string is either utf8 encoded, or it is in the code page specified by the containing...">pst_string</a>  <a class="code" href="structpst__item__email.html#ad7fabe8260c19a5fa438846d555e7526" title="mapi element 0x0076 PR_RECEIVED_BY_EMAIL_ADDRESS">recip_address</a>;
<a name="l00251"></a><a class="code" href="structpst__item__email.html#acd282ea3cfd70dce5c6cdc031f006a15">00251</a>     <a class="code" href="structpst__string.html" title="The string is either utf8 encoded, or it is in the code page specified by the containing...">pst_string</a>  <a class="code" href="structpst__item__email.html#acd282ea3cfd70dce5c6cdc031f006a15" title="mapi element 0x0077 PR_RCVD_REPRESENTING_ADDRTYPE">recip2_access</a>;
<a name="l00253"></a><a class="code" href="structpst__item__email.html#a7f8dfe042e0cd1843f786a4dc08e2e0b">00253</a>     <a class="code" href="structpst__string.html" title="The string is either utf8 encoded, or it is in the code page specified by the containing...">pst_string</a>  <a class="code" href="structpst__item__email.html#a7f8dfe042e0cd1843f786a4dc08e2e0b" title="mapi element 0x0078 PR_RCVD_REPRESENTING_EMAIL_ADDRESS">recip2_address</a>;
<a name="l00257"></a><a class="code" href="structpst__item__email.html#af2b786fb53772143f9fc7990e4c2db61">00257</a>     <span class="keywordtype">int</span>         <a class="code" href="structpst__item__email.html#af2b786fb53772143f9fc7990e4c2db61" title="mapi element 0x0c17 PR_REPLY_REQUESTED">reply_requested</a>;
<a name="l00259"></a><a class="code" href="structpst__item__email.html#ad5c1dfc01259ea19e224f9e295c7e510">00259</a>     <a class="code" href="structpst__string.html" title="The string is either utf8 encoded, or it is in the code page specified by the containing...">pst_string</a>  <a class="code" href="structpst__item__email.html#ad5c1dfc01259ea19e224f9e295c7e510" title="mapi element 0x0050 PR_REPLY_RECIPIENT_NAMES">reply_to</a>;
<a name="l00261"></a><a class="code" href="structpst__item__email.html#a492117ca2110da1f3478c59d11b6704b">00261</a>     <a class="code" href="structpst__string.html" title="The string is either utf8 encoded, or it is in the code page specified by the containing...">pst_string</a>  <a class="code" href="structpst__item__email.html#a492117ca2110da1f3478c59d11b6704b" title="mapi element 0x1046, this seems to be the message-id of the rfc822 mail that is being...">return_path_address</a>;
<a name="l00265"></a><a class="code" href="structpst__item__email.html#ab138a04a6a51294fe0256102d771be02">00265</a>     int32_t     <a class="code" href="structpst__item__email.html#ab138a04a6a51294fe0256102d771be02" title="mapi element 0x1007 PR_RTF_SYNC_BODY_COUNT, a count of the *significant* charcters...">rtf_body_char_count</a>;
<a name="l00267"></a><a class="code" href="structpst__item__email.html#a53a4e97e386814e4efed857f4b0e0f8d">00267</a>     int32_t     <a class="code" href="structpst__item__email.html#a53a4e97e386814e4efed857f4b0e0f8d" title="mapi element 0x1006 PR_RTF_SYNC_BODY_CRC">rtf_body_crc</a>;
<a name="l00271"></a><a class="code" href="structpst__item__email.html#a298ff8ebf0931b87729d5d6600fe32d6">00271</a>     <a class="code" href="structpst__string.html" title="The string is either utf8 encoded, or it is in the code page specified by the containing...">pst_string</a>  <a class="code" href="structpst__item__email.html#a298ff8ebf0931b87729d5d6600fe32d6" title="mapi element 0x1008 PR_RTF_SYNC_BODY_TAG, the first couple of lines of RTF body so...">rtf_body_tag</a>;
<a name="l00275"></a><a class="code" href="structpst__item__email.html#a8c44e289091d31ef6b011f3118dd68ae">00275</a>     <a class="code" href="structpst__binary.html" title="a simple wrapper for binary blobs">pst_binary</a>  <a class="code" href="structpst__item__email.html#a8c44e289091d31ef6b011f3118dd68ae" title="mapi element 0x1009 PR_RTF_COMPRESSED, the compressed rtf body data.">rtf_compressed</a>;
<a name="l00283"></a><a class="code" href="structpst__item__email.html#a401619d5406585f743c49b8e22217712">00283</a>     <span class="keywordtype">int</span>         <a class="code" href="structpst__item__email.html#a401619d5406585f743c49b8e22217712" title="mapi element 0x0e1f PR_RTF_IN_SYNC, True means that the rtf version is same as text...">rtf_in_sync</a>;
<a name="l00286"></a><a class="code" href="structpst__item__email.html#ad025130ba1db7578ef4ab60b492efcad">00286</a>     int32_t     <a class="code" href="structpst__item__email.html#ad025130ba1db7578ef4ab60b492efcad" title="mapi element 0x1010 PR_RTF_SYNC_PREFIX_COUNT, a count of the ignored characters before...">rtf_ws_prefix_count</a>;
<a name="l00289"></a><a class="code" href="structpst__item__email.html#af7e9b5cf9cc60ef7b7fba1b383261134">00289</a>     int32_t     <a class="code" href="structpst__item__email.html#af7e9b5cf9cc60ef7b7fba1b383261134" title="mapi element 0x1011 PR_RTF_SYNC_TRAILING_COUNT, a count of the ignored characters...">rtf_ws_trailing_count</a>;
<a name="l00291"></a><a class="code" href="structpst__item__email.html#a145519dae3222d5ee8724b29d2921877">00291</a>     <a class="code" href="structpst__string.html" title="The string is either utf8 encoded, or it is in the code page specified by the containing...">pst_string</a>  <a class="code" href="structpst__item__email.html#a145519dae3222d5ee8724b29d2921877" title="mapi element 0x0064 PR_SENT_REPRESENTING_ADDRTYPE">sender_access</a>;
<a name="l00293"></a><a class="code" href="structpst__item__email.html#a7b78f68b36d62388aa0c32d8f8a6e95c">00293</a>     <a class="code" href="structpst__string.html" title="The string is either utf8 encoded, or it is in the code page specified by the containing...">pst_string</a>  <a class="code" href="structpst__item__email.html#a7b78f68b36d62388aa0c32d8f8a6e95c" title="mapi element 0x0065 PR_SENT_REPRESENTING_EMAIL_ADDRESS">sender_address</a>;
<a name="l00295"></a><a class="code" href="structpst__item__email.html#a3835b2f93e5ec4480d3a8670f88d36ff">00295</a>     <a class="code" href="structpst__string.html" title="The string is either utf8 encoded, or it is in the code page specified by the containing...">pst_string</a>  <a class="code" href="structpst__item__email.html#a3835b2f93e5ec4480d3a8670f88d36ff" title="mapi element 0x0c1e PR_SENDER_ADDRTYPE">sender2_access</a>;
<a name="l00297"></a><a class="code" href="structpst__item__email.html#a8d451810fe1a4f2404e8847b044baaac">00297</a>     <a class="code" href="structpst__string.html" title="The string is either utf8 encoded, or it is in the code page specified by the containing...">pst_string</a>  <a class="code" href="structpst__item__email.html#a8d451810fe1a4f2404e8847b044baaac" title="mapi element 0x0c1f PR_SENDER_EMAIL_ADDRESS">sender2_address</a>;
<a name="l00303"></a><a class="code" href="structpst__item__email.html#a2635c309bc96a102da0580ad76350f20">00303</a>     int32_t     <a class="code" href="structpst__item__email.html#a2635c309bc96a102da0580ad76350f20" title="mapi element 0x0036 PR_SENSITIVITY">sensitivity</a>;
<a name="l00305"></a><a class="code" href="structpst__item__email.html#aea1a53ed2b77899d8bac029d84288abe">00305</a>     <a class="code" href="structFILETIME.html">FILETIME</a>    *<a class="code" href="structpst__item__email.html#aea1a53ed2b77899d8bac029d84288abe" title="mapi element 0x0039 PR_CLIENT_SUBMIT_TIME">sent_date</a>;
<a name="l00307"></a><a class="code" href="structpst__item__email.html#ac5d0f9eb4902f84c1d7c60e85f67e637">00307</a>     <a class="code" href="structpst__entryid.html">pst_entryid</a> *<a class="code" href="structpst__item__email.html#ac5d0f9eb4902f84c1d7c60e85f67e637" title="mapi element 0x0e0a PR_SENTMAIL_ENTRYID">sentmail_folder</a>;
<a name="l00309"></a><a class="code" href="structpst__item__email.html#a19b29f6ed466a6fe3897751b2a599c0c">00309</a>     <a class="code" href="structpst__string.html" title="The string is either utf8 encoded, or it is in the code page specified by the containing...">pst_string</a>  <a class="code" href="structpst__item__email.html#a19b29f6ed466a6fe3897751b2a599c0c" title="mapi element 0x0e04 PR_DISPLAY_TO">sentto_address</a>;
<a name="l00311"></a><a class="code" href="structpst__item__email.html#aa70c69b42ed2d45bf71418b6ebd8df92">00311</a>     <a class="code" href="structpst__string.html" title="The string is either utf8 encoded, or it is in the code page specified by the containing...">pst_string</a>  <a class="code" href="structpst__item__email.html#aa70c69b42ed2d45bf71418b6ebd8df92" title="mapi element 0x1001 PR_REPORT_TEXT, delivery report dsn body">report_text</a>;
<a name="l00313"></a><a class="code" href="structpst__item__email.html#a2c5db16cf7b94166108bd6fb49d24ef2">00313</a>     <a class="code" href="structFILETIME.html">FILETIME</a>   *<a class="code" href="structpst__item__email.html#a2c5db16cf7b94166108bd6fb49d24ef2" title="mapi element 0x0032 PR_REPORT_TIME, delivery report time">report_time</a>;
<a name="l00315"></a><a class="code" href="structpst__item__email.html#a8680408a1343bef4651d9f454f36696c">00315</a>     int32_t     <a class="code" href="structpst__item__email.html#a8680408a1343bef4651d9f454f36696c" title="mapi element 0x0c04 PR_NDR_REASON_CODE">ndr_reason_code</a>;
<a name="l00317"></a><a class="code" href="structpst__item__email.html#a50a898611da08d2d40b4af3e8d23c439">00317</a>     int32_t     <a class="code" href="structpst__item__email.html#a50a898611da08d2d40b4af3e8d23c439" title="mapi element 0x0c05 PR_NDR_DIAG_CODE">ndr_diag_code</a>;
<a name="l00319"></a><a class="code" href="structpst__item__email.html#ac38bbee5afec3d1cf4811548dd884deb">00319</a>     <a class="code" href="structpst__string.html" title="The string is either utf8 encoded, or it is in the code page specified by the containing...">pst_string</a>  <a class="code" href="structpst__item__email.html#ac38bbee5afec3d1cf4811548dd884deb" title="mapi element 0x0c1b PR_SUPPLEMENTARY_INFO">supplementary_info</a>;
<a name="l00321"></a><a class="code" href="structpst__item__email.html#a5faea81506bae20910f801f87152a816">00321</a>     int32_t     <a class="code" href="structpst__item__email.html#a5faea81506bae20910f801f87152a816" title="mapi element 0x0c20 PR_NDR_STATUS_CODE">ndr_status_code</a>;
<a name="l00322"></a>00322 
<a name="l00323"></a>00323     <span class="comment">// elements added for .msg processing</span>
<a name="l00325"></a><a class="code" href="structpst__item__email.html#a4955357ac5a7791b34a1cedf48bbbc94">00325</a> <span class="comment"></span>    <a class="code" href="structpst__string.html" title="The string is either utf8 encoded, or it is in the code page specified by the containing...">pst_string</a>  <a class="code" href="structpst__item__email.html#a4955357ac5a7791b34a1cedf48bbbc94" title="mapi element 0x0040 PR_RECEIVED_BY_NAME">outlook_received_name1</a>;
<a name="l00327"></a><a class="code" href="structpst__item__email.html#a8c8cc97361500689bedabe88a9348517">00327</a>     <a class="code" href="structpst__string.html" title="The string is either utf8 encoded, or it is in the code page specified by the containing...">pst_string</a>  <a class="code" href="structpst__item__email.html#a8c8cc97361500689bedabe88a9348517" title="mapi element 0x0c1a PR_SENDER_NAME">outlook_sender_name2</a>;
<a name="l00329"></a><a class="code" href="structpst__item__email.html#a5402dd2bc4ff3320d04523d7d23dde0b">00329</a>     <a class="code" href="structpst__string.html" title="The string is either utf8 encoded, or it is in the code page specified by the containing...">pst_string</a>  <a class="code" href="structpst__item__email.html#a5402dd2bc4ff3320d04523d7d23dde0b" title="mapi element 0x0e1d PR_NORMALIZED_SUBJECT">outlook_normalized_subject</a>;
<a name="l00331"></a><a class="code" href="structpst__item__email.html#a067f281081464e38111648d205b600a8">00331</a>     <a class="code" href="structpst__string.html" title="The string is either utf8 encoded, or it is in the code page specified by the containing...">pst_string</a>  <a class="code" href="structpst__item__email.html#a067f281081464e38111648d205b600a8" title="mapi element 0x300b PR_SEARCH_KEY">outlook_search_key</a>;
<a name="l00332"></a>00332 } <a class="code" href="structpst__item__email.html" title="This contains the email related mapi elements.">pst_item_email</a>;
<a name="l00333"></a>00333 
<a name="l00334"></a>00334 
<a name="l00337"></a><a class="code" href="structpst__item__folder.html">00337</a> <span class="keyword">typedef</span> <span class="keyword">struct </span><a class="code" href="structpst__item__folder.html" title="This contains the folder related mapi elements.">pst_item_folder</a> {
<a name="l00339"></a><a class="code" href="structpst__item__folder.html#afc5b81423e2e217713458a0862c639e6">00339</a>     int32_t  <a class="code" href="structpst__item__folder.html#afc5b81423e2e217713458a0862c639e6" title="mapi element 0x3602 PR_CONTENT_COUNT">item_count</a>;
<a name="l00341"></a><a class="code" href="structpst__item__folder.html#aace1f1b072a2ba45d5ba416b4301e622">00341</a>     int32_t  <a class="code" href="structpst__item__folder.html#aace1f1b072a2ba45d5ba416b4301e622" title="mapi element 0x3603 PR_CONTENT_UNREAD">unseen_item_count</a>;
<a name="l00345"></a><a class="code" href="structpst__item__folder.html#ab06246ba222313709b68fbac2678c14f">00345</a>     int32_t  <a class="code" href="structpst__item__folder.html#ab06246ba222313709b68fbac2678c14f" title="mapi element 0x3617 PR_ASSOC_CONTENT_COUNT Associated content are items that are...">assoc_count</a>;
<a name="l00350"></a><a class="code" href="structpst__item__folder.html#a2198dd4573f246272653be6ddb0e64bf">00350</a>     <span class="keywordtype">int</span>      <a class="code" href="structpst__item__folder.html#a2198dd4573f246272653be6ddb0e64bf" title="mapi element 0x360a PR_SUBFOLDERS">subfolder</a>;
<a name="l00351"></a>00351 } <a class="code" href="structpst__item__folder.html" title="This contains the folder related mapi elements.">pst_item_folder</a>;
<a name="l00352"></a>00352 
<a name="l00353"></a>00353 
<a name="l00356"></a><a class="code" href="structpst__item__message__store.html">00356</a> <span class="keyword">typedef</span> <span class="keyword">struct </span><a class="code" href="structpst__item__message__store.html" title="This contains the message store related mapi elements.">pst_item_message_store</a> {
<a name="l00358"></a><a class="code" href="structpst__item__message__store.html#afc7a9b6e3feacf7febb639c553e4d599">00358</a>     <a class="code" href="structpst__entryid.html">pst_entryid</a> *<a class="code" href="structpst__item__message__store.html#afc7a9b6e3feacf7febb639c553e4d599" title="mapi element 0x35e0">top_of_personal_folder</a>;
<a name="l00360"></a><a class="code" href="structpst__item__message__store.html#a444ae76c613bd8a6457d84408159d881">00360</a>     <a class="code" href="structpst__entryid.html">pst_entryid</a> *<a class="code" href="structpst__item__message__store.html#a444ae76c613bd8a6457d84408159d881" title="mapi element 0x35e2">default_outbox_folder</a>;
<a name="l00362"></a><a class="code" href="structpst__item__message__store.html#ad3efbed37d91bb7bed45d2c8409ef9db">00362</a>     <a class="code" href="structpst__entryid.html">pst_entryid</a> *<a class="code" href="structpst__item__message__store.html#ad3efbed37d91bb7bed45d2c8409ef9db" title="mapi element 0x35e3">deleted_items_folder</a>;
<a name="l00364"></a><a class="code" href="structpst__item__message__store.html#aa905fe6d4bf01d390c5a67d2d8f4ebb8">00364</a>     <a class="code" href="structpst__entryid.html">pst_entryid</a> *<a class="code" href="structpst__item__message__store.html#aa905fe6d4bf01d390c5a67d2d8f4ebb8" title="mapi element 0x35e4">sent_items_folder</a>;
<a name="l00366"></a><a class="code" href="structpst__item__message__store.html#abd87d2174c20729c78153637d57f46e3">00366</a>     <a class="code" href="structpst__entryid.html">pst_entryid</a> *<a class="code" href="structpst__item__message__store.html#abd87d2174c20729c78153637d57f46e3" title="mapi element 0x35e5">user_views_folder</a>;
<a name="l00368"></a><a class="code" href="structpst__item__message__store.html#a584e01148311423077fc343ef0c4de1e">00368</a>     <a class="code" href="structpst__entryid.html">pst_entryid</a> *<a class="code" href="structpst__item__message__store.html#a584e01148311423077fc343ef0c4de1e" title="mapi element 0x35e6">common_view_folder</a>;
<a name="l00370"></a><a class="code" href="structpst__item__message__store.html#a2a790f4cc3b09d018ab4e3b03cc142e5">00370</a>     <a class="code" href="structpst__entryid.html">pst_entryid</a> *<a class="code" href="structpst__item__message__store.html#a2a790f4cc3b09d018ab4e3b03cc142e5" title="mapi element 0x35e7">search_root_folder</a>;
<a name="l00372"></a><a class="code" href="structpst__item__message__store.html#a55be4581ce431f73daaf62eb807ed95e">00372</a>     <a class="code" href="structpst__entryid.html">pst_entryid</a> *<a class="code" href="structpst__item__message__store.html#a55be4581ce431f73daaf62eb807ed95e" title="mapi element 0x7c07">top_of_folder</a>;
<a name="l00383"></a><a class="code" href="structpst__item__message__store.html#a1c6a4218571df9baa69ef22fafc45141">00383</a>     int32_t <a class="code" href="structpst__item__message__store.html#a1c6a4218571df9baa69ef22fafc45141" title="mapi element 0x35df, bit mask of folders in this message store">valid_mask</a>;
<a name="l00385"></a><a class="code" href="structpst__item__message__store.html#ae129914ae499a10092ce15505031358a">00385</a>     int32_t <a class="code" href="structpst__item__message__store.html#ae129914ae499a10092ce15505031358a" title="mapi element 0x76ff">pwd_chksum</a>;
<a name="l00386"></a>00386 } <a class="code" href="structpst__item__message__store.html" title="This contains the message store related mapi elements.">pst_item_message_store</a>;
<a name="l00387"></a>00387 
<a name="l00388"></a>00388 
<a name="l00391"></a><a class="code" href="structpst__item__contact.html">00391</a> <span class="keyword">typedef</span> <span class="keyword">struct </span><a class="code" href="structpst__item__contact.html" title="This contains the contact related mapi elements.">pst_item_contact</a> {
<a name="l00393"></a><a class="code" href="structpst__item__contact.html#ad25d1fdcf5e0eb99f8c31e41ad8500ae">00393</a>     <a class="code" href="structpst__string.html" title="The string is either utf8 encoded, or it is in the code page specified by the containing...">pst_string</a>  <a class="code" href="structpst__item__contact.html#ad25d1fdcf5e0eb99f8c31e41ad8500ae" title="mapi element 0x3a00 PR_ACCOUNT">account_name</a>;
<a name="l00395"></a><a class="code" href="structpst__item__contact.html#a843933df937ec377c71e1e54913a4e73">00395</a>     <a class="code" href="structpst__string.html" title="The string is either utf8 encoded, or it is in the code page specified by the containing...">pst_string</a>  <a class="code" href="structpst__item__contact.html#a843933df937ec377c71e1e54913a4e73" title="mapi element 0x3003 PR_EMAIL_ADDRESS, or 0x8083">address1</a>;
<a name="l00397"></a><a class="code" href="structpst__item__contact.html#a485216a2276181049057b359ed0f36a2">00397</a>     <a class="code" href="structpst__string.html" title="The string is either utf8 encoded, or it is in the code page specified by the containing...">pst_string</a>  <a class="code" href="structpst__item__contact.html#a485216a2276181049057b359ed0f36a2" title="mapi element 0x8085">address1a</a>;
<a name="l00399"></a><a class="code" href="structpst__item__contact.html#afd868f68afacec8e31ad75094b9f300b">00399</a>     <a class="code" href="structpst__string.html" title="The string is either utf8 encoded, or it is in the code page specified by the containing...">pst_string</a>  <a class="code" href="structpst__item__contact.html#afd868f68afacec8e31ad75094b9f300b" title="mapi element 0x8084">address1_desc</a>;
<a name="l00401"></a><a class="code" href="structpst__item__contact.html#aab0ccaed5c76c8b77fda8ec8a4d3adc7">00401</a>     <a class="code" href="structpst__string.html" title="The string is either utf8 encoded, or it is in the code page specified by the containing...">pst_string</a>  <a class="code" href="structpst__item__contact.html#aab0ccaed5c76c8b77fda8ec8a4d3adc7" title="mapi element 0x3002 PR_ADDRTYPE, or 0x8082">address1_transport</a>;
<a name="l00403"></a><a class="code" href="structpst__item__contact.html#a68448708d7468b0126915186dd4e0286">00403</a>     <a class="code" href="structpst__string.html" title="The string is either utf8 encoded, or it is in the code page specified by the containing...">pst_string</a>  <a class="code" href="structpst__item__contact.html#a68448708d7468b0126915186dd4e0286" title="mapi element 0x8093">address2</a>;
<a name="l00405"></a><a class="code" href="structpst__item__contact.html#a3ff2343d8850b40bc7970e0cfe4b9aaf">00405</a>     <a class="code" href="structpst__string.html" title="The string is either utf8 encoded, or it is in the code page specified by the containing...">pst_string</a>  <a class="code" href="structpst__item__contact.html#a3ff2343d8850b40bc7970e0cfe4b9aaf" title="mapi element 0x8095">address2a</a>;
<a name="l00407"></a><a class="code" href="structpst__item__contact.html#aec67f87461d314d1b2c1a3efba9f65ae">00407</a>     <a class="code" href="structpst__string.html" title="The string is either utf8 encoded, or it is in the code page specified by the containing...">pst_string</a>  <a class="code" href="structpst__item__contact.html#aec67f87461d314d1b2c1a3efba9f65ae" title="mapi element 0x8094">address2_desc</a>;
<a name="l00409"></a><a class="code" href="structpst__item__contact.html#ab52d464f6c4ca3441d66acb4b8eafbc4">00409</a>     <a class="code" href="structpst__string.html" title="The string is either utf8 encoded, or it is in the code page specified by the containing...">pst_string</a>  <a class="code" href="structpst__item__contact.html#ab52d464f6c4ca3441d66acb4b8eafbc4" title="mapi element 0x8092">address2_transport</a>;
<a name="l00411"></a><a class="code" href="structpst__item__contact.html#ae1243924590b6430284fdc4151af1570">00411</a>     <a class="code" href="structpst__string.html" title="The string is either utf8 encoded, or it is in the code page specified by the containing...">pst_string</a>  <a class="code" href="structpst__item__contact.html#ae1243924590b6430284fdc4151af1570" title="mapi element 0x80a3">address3</a>;
<a name="l00413"></a><a class="code" href="structpst__item__contact.html#a84dbbde2e2ef3c33b77913d35d7cbe00">00413</a>     <a class="code" href="structpst__string.html" title="The string is either utf8 encoded, or it is in the code page specified by the containing...">pst_string</a>  <a class="code" href="structpst__item__contact.html#a84dbbde2e2ef3c33b77913d35d7cbe00" title="mapi element 0x80a5">address3a</a>;
<a name="l00415"></a><a class="code" href="structpst__item__contact.html#a01936b28308e0772074bba09e65e7e83">00415</a>     <a class="code" href="structpst__string.html" title="The string is either utf8 encoded, or it is in the code page specified by the containing...">pst_string</a>  <a class="code" href="structpst__item__contact.html#a01936b28308e0772074bba09e65e7e83" title="mapi element 0x80a4">address3_desc</a>;
<a name="l00417"></a><a class="code" href="structpst__item__contact.html#ae756e5a1cc994dd15c1867da2cbd464b">00417</a>     <a class="code" href="structpst__string.html" title="The string is either utf8 encoded, or it is in the code page specified by the containing...">pst_string</a>  <a class="code" href="structpst__item__contact.html#ae756e5a1cc994dd15c1867da2cbd464b" title="mapi element 0x80a2">address3_transport</a>;
<a name="l00419"></a><a class="code" href="structpst__item__contact.html#a84fc7c5550c1af5da62cbbee170a6e9c">00419</a>     <a class="code" href="structpst__string.html" title="The string is either utf8 encoded, or it is in the code page specified by the containing...">pst_string</a>  <a class="code" href="structpst__item__contact.html#a84fc7c5550c1af5da62cbbee170a6e9c" title="mapi element 0x3a30 PR_ASSISTANT">assistant_name</a>;
<a name="l00421"></a><a class="code" href="structpst__item__contact.html#ae144ba84317e47decfcfb921005c3c69">00421</a>     <a class="code" href="structpst__string.html" title="The string is either utf8 encoded, or it is in the code page specified by the containing...">pst_string</a>  <a class="code" href="structpst__item__contact.html#ae144ba84317e47decfcfb921005c3c69" title="mapi element 0x3a2e PR_ASSISTANT_TELEPHONE_NUMBER">assistant_phone</a>;
<a name="l00423"></a><a class="code" href="structpst__item__contact.html#a253ee1773af04bd93a50e018689a7b6c">00423</a>     <a class="code" href="structpst__string.html" title="The string is either utf8 encoded, or it is in the code page specified by the containing...">pst_string</a>  <a class="code" href="structpst__item__contact.html#a253ee1773af04bd93a50e018689a7b6c" title="mapi element 0x8535">billing_information</a>;
<a name="l00425"></a><a class="code" href="structpst__item__contact.html#afed67927612415639ff18b60a6b41fb0">00425</a>     <a class="code" href="structFILETIME.html">FILETIME</a>   *<a class="code" href="structpst__item__contact.html#afed67927612415639ff18b60a6b41fb0" title="mapi element 0x3a42 PR_BIRTHDAY">birthday</a>;
<a name="l00427"></a><a class="code" href="structpst__item__contact.html#a66cba515100743d7ed9f6427034e537c">00427</a>     <a class="code" href="structpst__string.html" title="The string is either utf8 encoded, or it is in the code page specified by the containing...">pst_string</a>  <a class="code" href="structpst__item__contact.html#a66cba515100743d7ed9f6427034e537c" title="mapi element 0x801b">business_address</a>;
<a name="l00429"></a><a class="code" href="structpst__item__contact.html#af2d635bcc7ddd9fd1fa14e02106de613">00429</a>     <a class="code" href="structpst__string.html" title="The string is either utf8 encoded, or it is in the code page specified by the containing...">pst_string</a>  <a class="code" href="structpst__item__contact.html#af2d635bcc7ddd9fd1fa14e02106de613" title="mapi element 0x3a27 PR_BUSINESS_ADDRESS_CITY">business_city</a>;
<a name="l00431"></a><a class="code" href="structpst__item__contact.html#aef59ae325796e3583baeca3a5e076a2d">00431</a>     <a class="code" href="structpst__string.html" title="The string is either utf8 encoded, or it is in the code page specified by the containing...">pst_string</a>  <a class="code" href="structpst__item__contact.html#aef59ae325796e3583baeca3a5e076a2d" title="mapi element 0x3a26 PR_BUSINESS_ADDRESS_COUNTRY">business_country</a>;
<a name="l00433"></a><a class="code" href="structpst__item__contact.html#a8547bdfc37dbd3779e10147601bea305">00433</a>     <a class="code" href="structpst__string.html" title="The string is either utf8 encoded, or it is in the code page specified by the containing...">pst_string</a>  <a class="code" href="structpst__item__contact.html#a8547bdfc37dbd3779e10147601bea305" title="mapi element 0x3a24 PR_BUSINESS_FAX_NUMBER">business_fax</a>;
<a name="l00435"></a><a class="code" href="structpst__item__contact.html#aae3ca118f0811a3c122df90da782488d">00435</a>     <a class="code" href="structpst__string.html" title="The string is either utf8 encoded, or it is in the code page specified by the containing...">pst_string</a>  <a class="code" href="structpst__item__contact.html#aae3ca118f0811a3c122df90da782488d" title="mapi element 0x3a51 PR_BUSINESS_HOME_PAGE">business_homepage</a>;
<a name="l00437"></a><a class="code" href="structpst__item__contact.html#af5e64466cb9bb66381e1d5d2337c9a81">00437</a>     <a class="code" href="structpst__string.html" title="The string is either utf8 encoded, or it is in the code page specified by the containing...">pst_string</a>  <a class="code" href="structpst__item__contact.html#af5e64466cb9bb66381e1d5d2337c9a81" title="mapi element 0x3a08 PR_BUSINESS_TELEPHONE_NUMBER">business_phone</a>;
<a name="l00439"></a><a class="code" href="structpst__item__contact.html#a106abba36002fc92db1afc3722eb7da2">00439</a>     <a class="code" href="structpst__string.html" title="The string is either utf8 encoded, or it is in the code page specified by the containing...">pst_string</a>  <a class="code" href="structpst__item__contact.html#a106abba36002fc92db1afc3722eb7da2" title="mapi element 0x3a1b PR_BUSINESS2_TELEPHONE_NUMBER">business_phone2</a>;
<a name="l00441"></a><a class="code" href="structpst__item__contact.html#ae923460ba6b4e4dd8e1273811ff1fad5">00441</a>     <a class="code" href="structpst__string.html" title="The string is either utf8 encoded, or it is in the code page specified by the containing...">pst_string</a>  <a class="code" href="structpst__item__contact.html#ae923460ba6b4e4dd8e1273811ff1fad5" title="mapi element 0x3a2b PR_BUSINESS_PO_BOX">business_po_box</a>;
<a name="l00443"></a><a class="code" href="structpst__item__contact.html#a462e347441f8fa953ee1dab7454e5595">00443</a>     <a class="code" href="structpst__string.html" title="The string is either utf8 encoded, or it is in the code page specified by the containing...">pst_string</a>  <a class="code" href="structpst__item__contact.html#a462e347441f8fa953ee1dab7454e5595" title="mapi element 0x3a2a PR_BUSINESS_POSTAL_CODE">business_postal_code</a>;
<a name="l00445"></a><a class="code" href="structpst__item__contact.html#a8f9e6b6da42427d6bb94410dae1fc9ae">00445</a>     <a class="code" href="structpst__string.html" title="The string is either utf8 encoded, or it is in the code page specified by the containing...">pst_string</a>  <a class="code" href="structpst__item__contact.html#a8f9e6b6da42427d6bb94410dae1fc9ae" title="mapi element 0x3a28 PR_BUSINESS_ADDRESS_STATE_OR_PROVINCE">business_state</a>;
<a name="l00447"></a><a class="code" href="structpst__item__contact.html#a31a14184b38782dc798e8ea960d7ca89">00447</a>     <a class="code" href="structpst__string.html" title="The string is either utf8 encoded, or it is in the code page specified by the containing...">pst_string</a>  <a class="code" href="structpst__item__contact.html#a31a14184b38782dc798e8ea960d7ca89" title="mapi element 0x3a29 PR_BUSINESS_ADDRESS_STREET">business_street</a>;
<a name="l00449"></a><a class="code" href="structpst__item__contact.html#adca606580279df5d969ab69f3cd21ced">00449</a>     <a class="code" href="structpst__string.html" title="The string is either utf8 encoded, or it is in the code page specified by the containing...">pst_string</a>  <a class="code" href="structpst__item__contact.html#adca606580279df5d969ab69f3cd21ced" title="mapi element 0x3a02 PR_CALLBACK_TELEPHONE_NUMBER">callback_phone</a>;
<a name="l00451"></a><a class="code" href="structpst__item__contact.html#a7cfc0a6775ebd6a8f370a5cd35e311ed">00451</a>     <a class="code" href="structpst__string.html" title="The string is either utf8 encoded, or it is in the code page specified by the containing...">pst_string</a>  <a class="code" href="structpst__item__contact.html#a7cfc0a6775ebd6a8f370a5cd35e311ed" title="mapi element 0x3a1e PR_CAR_TELEPHONE_NUMBER">car_phone</a>;
<a name="l00453"></a><a class="code" href="structpst__item__contact.html#a6ad24ff0c0af33222498f320aedff9cd">00453</a>     <a class="code" href="structpst__string.html" title="The string is either utf8 encoded, or it is in the code page specified by the containing...">pst_string</a>  <a class="code" href="structpst__item__contact.html#a6ad24ff0c0af33222498f320aedff9cd" title="mapi element 0x3a57 PR_COMPANY_MAIN_PHONE_NUMBER">company_main_phone</a>;
<a name="l00455"></a><a class="code" href="structpst__item__contact.html#a1936bda40e513486e50777406f4a7a5e">00455</a>     <a class="code" href="structpst__string.html" title="The string is either utf8 encoded, or it is in the code page specified by the containing...">pst_string</a>  <a class="code" href="structpst__item__contact.html#a1936bda40e513486e50777406f4a7a5e" title="mapi element 0x3a16 PR_COMPANY_NAME">company_name</a>;
<a name="l00457"></a><a class="code" href="structpst__item__contact.html#a9f73ed191f12a65ea236059f271efef3">00457</a>     <a class="code" href="structpst__string.html" title="The string is either utf8 encoded, or it is in the code page specified by the containing...">pst_string</a>  <a class="code" href="structpst__item__contact.html#a9f73ed191f12a65ea236059f271efef3" title="mapi element 0x3a49 PR_COMPUTER_NETWORK_NAME">computer_name</a>;
<a name="l00459"></a><a class="code" href="structpst__item__contact.html#a0904a8bd27c8e050bcb2cf26a1aa676a">00459</a>     <a class="code" href="structpst__string.html" title="The string is either utf8 encoded, or it is in the code page specified by the containing...">pst_string</a>  <a class="code" href="structpst__item__contact.html#a0904a8bd27c8e050bcb2cf26a1aa676a" title="mapi element 0x3a4a PR_CUSTOMER_ID">customer_id</a>;
<a name="l00461"></a><a class="code" href="structpst__item__contact.html#adc59968e3eaa5d7d183e972b4e76fd0e">00461</a>     <a class="code" href="structpst__string.html" title="The string is either utf8 encoded, or it is in the code page specified by the containing...">pst_string</a>  <a class="code" href="structpst__item__contact.html#adc59968e3eaa5d7d183e972b4e76fd0e" title="mapi element 0x3a15 PR_POSTAL_ADDRESS">def_postal_address</a>;
<a name="l00463"></a><a class="code" href="structpst__item__contact.html#aa4988889b0de78ad1b4811d2081bf1c9">00463</a>     <a class="code" href="structpst__string.html" title="The string is either utf8 encoded, or it is in the code page specified by the containing...">pst_string</a>  <a class="code" href="structpst__item__contact.html#aa4988889b0de78ad1b4811d2081bf1c9" title="mapi element 0x3a18 PR_DEPARTMENT_NAME">department</a>;
<a name="l00465"></a><a class="code" href="structpst__item__contact.html#a5f33c3cd8d98f6ea2a10e9a2c1fd5161">00465</a>     <a class="code" href="structpst__string.html" title="The string is either utf8 encoded, or it is in the code page specified by the containing...">pst_string</a>  <a class="code" href="structpst__item__contact.html#a5f33c3cd8d98f6ea2a10e9a2c1fd5161" title="mapi element 0x3a45 PR_DISPLAY_NAME_PREFIX">display_name_prefix</a>;
<a name="l00467"></a><a class="code" href="structpst__item__contact.html#aac88117486d7bccc0bb588f318a40a8b">00467</a>     <a class="code" href="structpst__string.html" title="The string is either utf8 encoded, or it is in the code page specified by the containing...">pst_string</a>  <a class="code" href="structpst__item__contact.html#aac88117486d7bccc0bb588f318a40a8b" title="mapi element 0x3a06 PR_GIVEN_NAME">first_name</a>;
<a name="l00469"></a><a class="code" href="structpst__item__contact.html#aed1cf89bd5f06511391f022ad0924a83">00469</a>     <a class="code" href="structpst__string.html" title="The string is either utf8 encoded, or it is in the code page specified by the containing...">pst_string</a>  <a class="code" href="structpst__item__contact.html#aed1cf89bd5f06511391f022ad0924a83" title="mapi element 0x8530">followup</a>;
<a name="l00471"></a><a class="code" href="structpst__item__contact.html#ad8f875784c24122e80727de71d7cf078">00471</a>     <a class="code" href="structpst__string.html" title="The string is either utf8 encoded, or it is in the code page specified by the containing...">pst_string</a>  <a class="code" href="structpst__item__contact.html#ad8f875784c24122e80727de71d7cf078" title="mapi element 0x80d8">free_busy_address</a>;
<a name="l00473"></a><a class="code" href="structpst__item__contact.html#a4a63f7b42204c6831abea3ce0557e969">00473</a>     <a class="code" href="structpst__string.html" title="The string is either utf8 encoded, or it is in the code page specified by the containing...">pst_string</a>  <a class="code" href="structpst__item__contact.html#a4a63f7b42204c6831abea3ce0557e969" title="mapi element 0x3a4c PR_FTP_SITE">ftp_site</a>;
<a name="l00475"></a><a class="code" href="structpst__item__contact.html#a22af0a7977ea6ea5b66e2ac7f5d131e2">00475</a>     <a class="code" href="structpst__string.html" title="The string is either utf8 encoded, or it is in the code page specified by the containing...">pst_string</a>  <a class="code" href="structpst__item__contact.html#a22af0a7977ea6ea5b66e2ac7f5d131e2" title="mapi element 0x8005">fullname</a>;
<a name="l00480"></a><a class="code" href="structpst__item__contact.html#a9901560bc137a3626640ba8926b6ca95">00480</a>     int16_t     <a class="code" href="structpst__item__contact.html#a9901560bc137a3626640ba8926b6ca95" title="mapi element 0x3a4d PR_GENDER">gender</a>;
<a name="l00482"></a><a class="code" href="structpst__item__contact.html#a94cbfe0dc82d1fe3c295105202226e67">00482</a>     <a class="code" href="structpst__string.html" title="The string is either utf8 encoded, or it is in the code page specified by the containing...">pst_string</a>  <a class="code" href="structpst__item__contact.html#a94cbfe0dc82d1fe3c295105202226e67" title="mapi element 0x3a07 PR_GOVERNMENT_ID_NUMBER">gov_id</a>;
<a name="l00484"></a><a class="code" href="structpst__item__contact.html#aa57d9773dc98f987115d8202cef7395e">00484</a>     <a class="code" href="structpst__string.html" title="The string is either utf8 encoded, or it is in the code page specified by the containing...">pst_string</a>  <a class="code" href="structpst__item__contact.html#aa57d9773dc98f987115d8202cef7395e" title="mapi element 0x3a43 PR_HOBBIES">hobbies</a>;
<a name="l00486"></a><a class="code" href="structpst__item__contact.html#a3e3df89f07b676ce3ab17e874b114ea4">00486</a>     <a class="code" href="structpst__string.html" title="The string is either utf8 encoded, or it is in the code page specified by the containing...">pst_string</a>  <a class="code" href="structpst__item__contact.html#a3e3df89f07b676ce3ab17e874b114ea4" title="mapi element 0x801a">home_address</a>;
<a name="l00488"></a><a class="code" href="structpst__item__contact.html#ae2a4eb7154de32579b0ae99c2f675ed9">00488</a>     <a class="code" href="structpst__string.html" title="The string is either utf8 encoded, or it is in the code page specified by the containing...">pst_string</a>  <a class="code" href="structpst__item__contact.html#ae2a4eb7154de32579b0ae99c2f675ed9" title="mapi element 0x3a59 PR_HOME_ADDRESS_CITY">home_city</a>;
<a name="l00490"></a><a class="code" href="structpst__item__contact.html#a35b2d4473316246a9d2d2e5dd07dc4d1">00490</a>     <a class="code" href="structpst__string.html" title="The string is either utf8 encoded, or it is in the code page specified by the containing...">pst_string</a>  <a class="code" href="structpst__item__contact.html#a35b2d4473316246a9d2d2e5dd07dc4d1" title="mapi element 0x3a5a PR_HOME_ADDRESS_COUNTRY">home_country</a>;
<a name="l00492"></a><a class="code" href="structpst__item__contact.html#a4f2a2bc26417c52254e5535329aa0f5e">00492</a>     <a class="code" href="structpst__string.html" title="The string is either utf8 encoded, or it is in the code page specified by the containing...">pst_string</a>  <a class="code" href="structpst__item__contact.html#a4f2a2bc26417c52254e5535329aa0f5e" title="mapi element 0x3a25 PR_HOME_FAX_NUMBER">home_fax</a>;
<a name="l00494"></a><a class="code" href="structpst__item__contact.html#afdcfc6aac92f5d6bb5246505029b68a3">00494</a>     <a class="code" href="structpst__string.html" title="The string is either utf8 encoded, or it is in the code page specified by the containing...">pst_string</a>  <a class="code" href="structpst__item__contact.html#afdcfc6aac92f5d6bb5246505029b68a3" title="mapi element 0x3a09 PR_HOME_TELEPHONE_NUMBER">home_phone</a>;
<a name="l00496"></a><a class="code" href="structpst__item__contact.html#a9fa091ae513f923ece29c12f96925585">00496</a>     <a class="code" href="structpst__string.html" title="The string is either utf8 encoded, or it is in the code page specified by the containing...">pst_string</a>  <a class="code" href="structpst__item__contact.html#a9fa091ae513f923ece29c12f96925585" title="mapi element 0x3a2f PR_HOME2_TELEPHONE_NUMBER">home_phone2</a>;
<a name="l00498"></a><a class="code" href="structpst__item__contact.html#aa223c108715d37195ab1cd0328aaffa4">00498</a>     <a class="code" href="structpst__string.html" title="The string is either utf8 encoded, or it is in the code page specified by the containing...">pst_string</a>  <a class="code" href="structpst__item__contact.html#aa223c108715d37195ab1cd0328aaffa4" title="mapi element 0x3a5e PR_HOME_ADDRESS_POST_OFFICE_BOX">home_po_box</a>;
<a name="l00500"></a><a class="code" href="structpst__item__contact.html#a813c1bb63fa0b44afb0cbd276cf8c9c5">00500</a>     <a class="code" href="structpst__string.html" title="The string is either utf8 encoded, or it is in the code page specified by the containing...">pst_string</a>  <a class="code" href="structpst__item__contact.html#a813c1bb63fa0b44afb0cbd276cf8c9c5" title="mapi element 0x3a5b PR_HOME_ADDRESS_POSTAL_CODE">home_postal_code</a>;
<a name="l00502"></a><a class="code" href="structpst__item__contact.html#a7f4b7b5a41ed1c2f85dc786600df8798">00502</a>     <a class="code" href="structpst__string.html" title="The string is either utf8 encoded, or it is in the code page specified by the containing...">pst_string</a>  <a class="code" href="structpst__item__contact.html#a7f4b7b5a41ed1c2f85dc786600df8798" title="mapi element 0x3a5c PR_HOME_ADDRESS_STATE_OR_PROVINCE">home_state</a>;
<a name="l00504"></a><a class="code" href="structpst__item__contact.html#a9124ef9b9f323ac3ee05ca2da8348847">00504</a>     <a class="code" href="structpst__string.html" title="The string is either utf8 encoded, or it is in the code page specified by the containing...">pst_string</a>  <a class="code" href="structpst__item__contact.html#a9124ef9b9f323ac3ee05ca2da8348847" title="mapi element 0x3a5d PR_HOME_ADDRESS_STREET">home_street</a>;
<a name="l00506"></a><a class="code" href="structpst__item__contact.html#a5afc091fd6f4ec74510010b53591a9e2">00506</a>     <a class="code" href="structpst__string.html" title="The string is either utf8 encoded, or it is in the code page specified by the containing...">pst_string</a>  <a class="code" href="structpst__item__contact.html#a5afc091fd6f4ec74510010b53591a9e2" title="mapi element 0x3a0a PR_INITIALS">initials</a>;
<a name="l00508"></a><a class="code" href="structpst__item__contact.html#a34d5718aac4a20995513bd73f7854212">00508</a>     <a class="code" href="structpst__string.html" title="The string is either utf8 encoded, or it is in the code page specified by the containing...">pst_string</a>  <a class="code" href="structpst__item__contact.html#a34d5718aac4a20995513bd73f7854212" title="mapi element 0x3a2d PR_ISDN_NUMBER">isdn_phone</a>;
<a name="l00510"></a><a class="code" href="structpst__item__contact.html#abb0b19e170fe5bf18e6352fe2370b859">00510</a>     <a class="code" href="structpst__string.html" title="The string is either utf8 encoded, or it is in the code page specified by the containing...">pst_string</a>  <a class="code" href="structpst__item__contact.html#abb0b19e170fe5bf18e6352fe2370b859" title="mapi element 0x3a17 PR_TITLE">job_title</a>;
<a name="l00512"></a><a class="code" href="structpst__item__contact.html#a5495b34a0e3a10c5fdd301732bbff9a5">00512</a>     <a class="code" href="structpst__string.html" title="The string is either utf8 encoded, or it is in the code page specified by the containing...">pst_string</a>  <a class="code" href="structpst__item__contact.html#a5495b34a0e3a10c5fdd301732bbff9a5" title="mapi element 0x3a0b PR_KEYWORD">keyword</a>;
<a name="l00514"></a><a class="code" href="structpst__item__contact.html#a25605ab05781ee6340d464afd1c41f9c">00514</a>     <a class="code" href="structpst__string.html" title="The string is either utf8 encoded, or it is in the code page specified by the containing...">pst_string</a>  <a class="code" href="structpst__item__contact.html#a25605ab05781ee6340d464afd1c41f9c" title="mapi element 0x3a0c PR_LANGUAGE">language</a>;
<a name="l00516"></a><a class="code" href="structpst__item__contact.html#a9d9f460dce7ce052bff6a755200141a9">00516</a>     <a class="code" href="structpst__string.html" title="The string is either utf8 encoded, or it is in the code page specified by the containing...">pst_string</a>  <a class="code" href="structpst__item__contact.html#a9d9f460dce7ce052bff6a755200141a9" title="mapi element 0x3a0d PR_LOCATION">location</a>;
<a name="l00520"></a><a class="code" href="structpst__item__contact.html#a1982e05d42771b79d15b88a65e1ff6e1">00520</a>     <span class="keywordtype">int</span>         <a class="code" href="structpst__item__contact.html#a1982e05d42771b79d15b88a65e1ff6e1" title="mapi element 0x3a0e PR_MAIL_PERMISSION">mail_permission</a>;
<a name="l00522"></a><a class="code" href="structpst__item__contact.html#a9b38d63518435eeaa26fc46d9883eff9">00522</a>     <a class="code" href="structpst__string.html" title="The string is either utf8 encoded, or it is in the code page specified by the containing...">pst_string</a>  <a class="code" href="structpst__item__contact.html#a9b38d63518435eeaa26fc46d9883eff9" title="mapi element 0x3a4e PR_MANAGER_NAME">manager_name</a>;
<a name="l00524"></a><a class="code" href="structpst__item__contact.html#a9c00d382c1981db7032b9bbd5cea7e30">00524</a>     <a class="code" href="structpst__string.html" title="The string is either utf8 encoded, or it is in the code page specified by the containing...">pst_string</a>  <a class="code" href="structpst__item__contact.html#a9c00d382c1981db7032b9bbd5cea7e30" title="mapi element 0x3a44 PR_MIDDLE_NAME">middle_name</a>;
<a name="l00526"></a><a class="code" href="structpst__item__contact.html#ae50a0d7584d1ce9d7cf8bf01c8c96b47">00526</a>     <a class="code" href="structpst__string.html" title="The string is either utf8 encoded, or it is in the code page specified by the containing...">pst_string</a>  <a class="code" href="structpst__item__contact.html#ae50a0d7584d1ce9d7cf8bf01c8c96b47" title="mapi element 0x8534">mileage</a>;
<a name="l00528"></a><a class="code" href="structpst__item__contact.html#a64754df8aa07eb7e40bd51aadcdb5c70">00528</a>     <a class="code" href="structpst__string.html" title="The string is either utf8 encoded, or it is in the code page specified by the containing...">pst_string</a>  <a class="code" href="structpst__item__contact.html#a64754df8aa07eb7e40bd51aadcdb5c70" title="mapi element 0x3a1c PR_MOBILE_TELEPHONE_NUMBER">mobile_phone</a>;
<a name="l00530"></a><a class="code" href="structpst__item__contact.html#a387d08e1dbe6bf4709e11fe8ed410d62">00530</a>     <a class="code" href="structpst__string.html" title="The string is either utf8 encoded, or it is in the code page specified by the containing...">pst_string</a>  <a class="code" href="structpst__item__contact.html#a387d08e1dbe6bf4709e11fe8ed410d62" title="mapi element 0x3a4f PR_NICKNAME">nickname</a>;
<a name="l00532"></a><a class="code" href="structpst__item__contact.html#afd3392684719a1ba2d249a26bfec312c">00532</a>     <a class="code" href="structpst__string.html" title="The string is either utf8 encoded, or it is in the code page specified by the containing...">pst_string</a>  <a class="code" href="structpst__item__contact.html#afd3392684719a1ba2d249a26bfec312c" title="mapi element 0x3a19 PR_OFFICE_LOCATION">office_loc</a>;
<a name="l00534"></a><a class="code" href="structpst__item__contact.html#a0e295dd029538db87a7a7490fba9f929">00534</a>     <a class="code" href="structpst__string.html" title="The string is either utf8 encoded, or it is in the code page specified by the containing...">pst_string</a>  <a class="code" href="structpst__item__contact.html#a0e295dd029538db87a7a7490fba9f929" title="mapi element 0x3a0f PR_MHS_COMMON_NAME">common_name</a>;
<a name="l00536"></a><a class="code" href="structpst__item__contact.html#a975b6774c7f900f650bf0c36106c6ef2">00536</a>     <a class="code" href="structpst__string.html" title="The string is either utf8 encoded, or it is in the code page specified by the containing...">pst_string</a>  <a class="code" href="structpst__item__contact.html#a975b6774c7f900f650bf0c36106c6ef2" title="mapi element 0x3a10 PR_ORGANIZATIONAL_ID_NUMBER">org_id</a>;
<a name="l00538"></a><a class="code" href="structpst__item__contact.html#a4d167ff59be373ed4dbbe0dddeea6cdd">00538</a>     <a class="code" href="structpst__string.html" title="The string is either utf8 encoded, or it is in the code page specified by the containing...">pst_string</a>  <a class="code" href="structpst__item__contact.html#a4d167ff59be373ed4dbbe0dddeea6cdd" title="mapi element 0x801c">other_address</a>;
<a name="l00540"></a><a class="code" href="structpst__item__contact.html#a67be2afc85f872f59e50ade0df7cca3a">00540</a>     <a class="code" href="structpst__string.html" title="The string is either utf8 encoded, or it is in the code page specified by the containing...">pst_string</a>  <a class="code" href="structpst__item__contact.html#a67be2afc85f872f59e50ade0df7cca3a" title="mapi element 0x3a5f PR_OTHER_ADDRESS_CITY">other_city</a>;
<a name="l00542"></a><a class="code" href="structpst__item__contact.html#ae9f8da34925095dec87d7ac6090c4b99">00542</a>     <a class="code" href="structpst__string.html" title="The string is either utf8 encoded, or it is in the code page specified by the containing...">pst_string</a>  <a class="code" href="structpst__item__contact.html#ae9f8da34925095dec87d7ac6090c4b99" title="mapi element 0x3a60 PR_OTHER_ADDRESS_COUNTRY">other_country</a>;
<a name="l00544"></a><a class="code" href="structpst__item__contact.html#a61043ba0274532866a94d946dbe46b14">00544</a>     <a class="code" href="structpst__string.html" title="The string is either utf8 encoded, or it is in the code page specified by the containing...">pst_string</a>  <a class="code" href="structpst__item__contact.html#a61043ba0274532866a94d946dbe46b14" title="mapi element 0x3a1f PR_OTHER_TELEPHONE_NUMBER">other_phone</a>;
<a name="l00546"></a><a class="code" href="structpst__item__contact.html#aa737d55d2eb766ba14f2acabe4a91e90">00546</a>     <a class="code" href="structpst__string.html" title="The string is either utf8 encoded, or it is in the code page specified by the containing...">pst_string</a>  <a class="code" href="structpst__item__contact.html#aa737d55d2eb766ba14f2acabe4a91e90" title="mapi element 0x3a64 PR_OTHER_ADDRESS_POST_OFFICE_BOX">other_po_box</a>;
<a name="l00548"></a><a class="code" href="structpst__item__contact.html#a94f596ee86c1782bb3e22f7e0fac6a15">00548</a>     <a class="code" href="structpst__string.html" title="The string is either utf8 encoded, or it is in the code page specified by the containing...">pst_string</a>  <a class="code" href="structpst__item__contact.html#a94f596ee86c1782bb3e22f7e0fac6a15" title="mapi element 0x3a61 PR_OTHER_ADDRESS_POSTAL_CODE">other_postal_code</a>;
<a name="l00550"></a><a class="code" href="structpst__item__contact.html#a09772c1a897125211aff07f29c366b5b">00550</a>     <a class="code" href="structpst__string.html" title="The string is either utf8 encoded, or it is in the code page specified by the containing...">pst_string</a>  <a class="code" href="structpst__item__contact.html#a09772c1a897125211aff07f29c366b5b" title="mapi element 0x3a62 PR_OTHER_ADDRESS_STATE_OR_PROVINCE">other_state</a>;
<a name="l00552"></a><a class="code" href="structpst__item__contact.html#abde3d72fcac2cde0bec6eea18f330759">00552</a>     <a class="code" href="structpst__string.html" title="The string is either utf8 encoded, or it is in the code page specified by the containing...">pst_string</a>  <a class="code" href="structpst__item__contact.html#abde3d72fcac2cde0bec6eea18f330759" title="mapi element 0x3a63 PR_OTHER_ADDRESS_STREET">other_street</a>;
<a name="l00554"></a><a class="code" href="structpst__item__contact.html#a072e6d2f304a99af1d29b43ddf2aa7bc">00554</a>     <a class="code" href="structpst__string.html" title="The string is either utf8 encoded, or it is in the code page specified by the containing...">pst_string</a>  <a class="code" href="structpst__item__contact.html#a072e6d2f304a99af1d29b43ddf2aa7bc" title="mapi element 0x3a21 PR_PAGER_TELEPHONE_NUMBER">pager_phone</a>;
<a name="l00556"></a><a class="code" href="structpst__item__contact.html#a88c297b21a0f0198c070c4d15f74a37f">00556</a>     <a class="code" href="structpst__string.html" title="The string is either utf8 encoded, or it is in the code page specified by the containing...">pst_string</a>  <a class="code" href="structpst__item__contact.html#a88c297b21a0f0198c070c4d15f74a37f" title="mapi element 0x3a50 PR_PERSONAL_HOME_PAGE">personal_homepage</a>;
<a name="l00558"></a><a class="code" href="structpst__item__contact.html#ad0b42c81b3465118b9e6de272649d37c">00558</a>     <a class="code" href="structpst__string.html" title="The string is either utf8 encoded, or it is in the code page specified by the containing...">pst_string</a>  <a class="code" href="structpst__item__contact.html#ad0b42c81b3465118b9e6de272649d37c" title="mapi element 0x3a47 PR_PREFERRED_BY_NAME">pref_name</a>;
<a name="l00560"></a><a class="code" href="structpst__item__contact.html#a36d2d1d9d61c056f95fc77fdbeeab673">00560</a>     <a class="code" href="structpst__string.html" title="The string is either utf8 encoded, or it is in the code page specified by the containing...">pst_string</a>  <a class="code" href="structpst__item__contact.html#a36d2d1d9d61c056f95fc77fdbeeab673" title="mapi element 0x3a23 PR_PRIMARY_FAX_NUMBER">primary_fax</a>;
<a name="l00562"></a><a class="code" href="structpst__item__contact.html#a57d29b0e93ed8a2b730429413a14521b">00562</a>     <a class="code" href="structpst__string.html" title="The string is either utf8 encoded, or it is in the code page specified by the containing...">pst_string</a>  <a class="code" href="structpst__item__contact.html#a57d29b0e93ed8a2b730429413a14521b" title="mapi element 0x3a1a PR_PRIMARY_TELEPHONE_NUMBER">primary_phone</a>;
<a name="l00564"></a><a class="code" href="structpst__item__contact.html#afdd372fb3fa4a6844da2b70de3e7e4ad">00564</a>     <a class="code" href="structpst__string.html" title="The string is either utf8 encoded, or it is in the code page specified by the containing...">pst_string</a>  <a class="code" href="structpst__item__contact.html#afdd372fb3fa4a6844da2b70de3e7e4ad" title="mapi element 0x3a46 PR_PROFESSION">profession</a>;
<a name="l00566"></a><a class="code" href="structpst__item__contact.html#ae841ef7b64230658a6cd18446d0260af">00566</a>     <a class="code" href="structpst__string.html" title="The string is either utf8 encoded, or it is in the code page specified by the containing...">pst_string</a>  <a class="code" href="structpst__item__contact.html#ae841ef7b64230658a6cd18446d0260af" title="mapi element 0x3a1d PR_RADIO_TELEPHONE_NUMBER">radio_phone</a>;
<a name="l00570"></a><a class="code" href="structpst__item__contact.html#a3a7be1fca441fb1b52d4503e4305e907">00570</a>     <span class="keywordtype">int</span>         <a class="code" href="structpst__item__contact.html#a3a7be1fca441fb1b52d4503e4305e907" title="mapi element 0x3a40 PR_SEND_RICH_INFO">rich_text</a>;
<a name="l00572"></a><a class="code" href="structpst__item__contact.html#a53d85d40879d6a046f22f8312da5aef4">00572</a>     <a class="code" href="structpst__string.html" title="The string is either utf8 encoded, or it is in the code page specified by the containing...">pst_string</a>  <a class="code" href="structpst__item__contact.html#a53d85d40879d6a046f22f8312da5aef4" title="mapi element 0x3a48 PR_SPOUSE_NAME">spouse_name</a>;
<a name="l00574"></a><a class="code" href="structpst__item__contact.html#ad4c21741d4e867ff19de17e8864f195b">00574</a>     <a class="code" href="structpst__string.html" title="The string is either utf8 encoded, or it is in the code page specified by the containing...">pst_string</a>  <a class="code" href="structpst__item__contact.html#ad4c21741d4e867ff19de17e8864f195b" title="mapi element 0x3a05 PR_GENERATION (Jr., Sr., III, etc)">suffix</a>;
<a name="l00576"></a><a class="code" href="structpst__item__contact.html#a8b7af1f650343cc7e822454cfaf39c88">00576</a>     <a class="code" href="structpst__string.html" title="The string is either utf8 encoded, or it is in the code page specified by the containing...">pst_string</a>  <a class="code" href="structpst__item__contact.html#a8b7af1f650343cc7e822454cfaf39c88" title="mapi element 0x3a11 PR_SURNAME">surname</a>;
<a name="l00578"></a><a class="code" href="structpst__item__contact.html#ad0150457505e5df1c21fb3097c32fe10">00578</a>     <a class="code" href="structpst__string.html" title="The string is either utf8 encoded, or it is in the code page specified by the containing...">pst_string</a>  <a class="code" href="structpst__item__contact.html#ad0150457505e5df1c21fb3097c32fe10" title="mapi element 0x3a2c PR_TELEX_NUMBER">telex</a>;
<a name="l00580"></a><a class="code" href="structpst__item__contact.html#af1832ff2447ae9100703c0aa9f1bb938">00580</a>     <a class="code" href="structpst__string.html" title="The string is either utf8 encoded, or it is in the code page specified by the containing...">pst_string</a>  <a class="code" href="structpst__item__contact.html#af1832ff2447ae9100703c0aa9f1bb938" title="mapi element 0x3a20 PR_TRANSMITTABLE_DISPLAY_NAME">transmittable_display_name</a>;
<a name="l00582"></a><a class="code" href="structpst__item__contact.html#a8371656436b7236361c599ce2e87b8c9">00582</a>     <a class="code" href="structpst__string.html" title="The string is either utf8 encoded, or it is in the code page specified by the containing...">pst_string</a>  <a class="code" href="structpst__item__contact.html#a8371656436b7236361c599ce2e87b8c9" title="mapi element 0x3a4b PR_TTYTDD_PHONE_NUMBER">ttytdd_phone</a>;
<a name="l00584"></a><a class="code" href="structpst__item__contact.html#aedab662d00ba19c4f96390959a0920ea">00584</a>     <a class="code" href="structFILETIME.html">FILETIME</a>   *<a class="code" href="structpst__item__contact.html#aedab662d00ba19c4f96390959a0920ea" title="mapi element 0x3a41 PR_WEDDING_ANNIVERSARY">wedding_anniversary</a>;
<a name="l00586"></a><a class="code" href="structpst__item__contact.html#a50efa39ee5c5d6aa5b14edf313cdba67">00586</a>     <a class="code" href="structpst__string.html" title="The string is either utf8 encoded, or it is in the code page specified by the containing...">pst_string</a>  <a class="code" href="structpst__item__contact.html#a50efa39ee5c5d6aa5b14edf313cdba67" title="mapi element 0x8045">work_address_street</a>;
<a name="l00588"></a><a class="code" href="structpst__item__contact.html#a39de28ec1da2c6a3852e82fb6cf45083">00588</a>     <a class="code" href="structpst__string.html" title="The string is either utf8 encoded, or it is in the code page specified by the containing...">pst_string</a>  <a class="code" href="structpst__item__contact.html#a39de28ec1da2c6a3852e82fb6cf45083" title="mapi element 0x8046">work_address_city</a>;
<a name="l00590"></a><a class="code" href="structpst__item__contact.html#a26942cfad23533c8308b33457d1fe7f6">00590</a>     <a class="code" href="structpst__string.html" title="The string is either utf8 encoded, or it is in the code page specified by the containing...">pst_string</a>  <a class="code" href="structpst__item__contact.html#a26942cfad23533c8308b33457d1fe7f6" title="mapi element 0x8047">work_address_state</a>;
<a name="l00592"></a><a class="code" href="structpst__item__contact.html#a3c178c1284977951c2717df08aef373e">00592</a>     <a class="code" href="structpst__string.html" title="The string is either utf8 encoded, or it is in the code page specified by the containing...">pst_string</a>  <a class="code" href="structpst__item__contact.html#a3c178c1284977951c2717df08aef373e" title="mapi element 0x8048">work_address_postalcode</a>;
<a name="l00594"></a><a class="code" href="structpst__item__contact.html#a9c891a2ebf5bf53a2d78885f4d5b1a07">00594</a>     <a class="code" href="structpst__string.html" title="The string is either utf8 encoded, or it is in the code page specified by the containing...">pst_string</a>  <a class="code" href="structpst__item__contact.html#a9c891a2ebf5bf53a2d78885f4d5b1a07" title="mapi element 0x8049">work_address_country</a>;
<a name="l00596"></a><a class="code" href="structpst__item__contact.html#a9f93bc98d8a5d28eded26749b01961c7">00596</a>     <a class="code" href="structpst__string.html" title="The string is either utf8 encoded, or it is in the code page specified by the containing...">pst_string</a>  <a class="code" href="structpst__item__contact.html#a9f93bc98d8a5d28eded26749b01961c7" title="mapi element 0x804a">work_address_postofficebox</a>;
<a name="l00597"></a>00597 } <a class="code" href="structpst__item__contact.html" title="This contains the contact related mapi elements.">pst_item_contact</a>;
<a name="l00598"></a>00598 
<a name="l00599"></a>00599 
<a name="l00602"></a><a class="code" href="structpst__item__attach.html">00602</a> <span class="keyword">typedef</span> <span class="keyword">struct </span><a class="code" href="structpst__item__attach.html" title="This contains the attachment related mapi elements.">pst_item_attach</a> {
<a name="l00604"></a><a class="code" href="structpst__item__attach.html#aa92be7fef8034cb5601757fb315d2a98">00604</a>     <a class="code" href="structpst__string.html" title="The string is either utf8 encoded, or it is in the code page specified by the containing...">pst_string</a>      <a class="code" href="structpst__item__attach.html#aa92be7fef8034cb5601757fb315d2a98" title="mapi element 0x3704 PR_ATTACH_FILENAME">filename1</a>;
<a name="l00606"></a><a class="code" href="structpst__item__attach.html#a3ab64218cbb476d5199f8f3d06db2f37">00606</a>     <a class="code" href="structpst__string.html" title="The string is either utf8 encoded, or it is in the code page specified by the containing...">pst_string</a>      <a class="code" href="structpst__item__attach.html#a3ab64218cbb476d5199f8f3d06db2f37" title="mapi element 0x3707 PR_ATTACH_LONG_FILENAME">filename2</a>;
<a name="l00608"></a><a class="code" href="structpst__item__attach.html#ab44388a512817ce10c1e010785d76b12">00608</a>     <a class="code" href="structpst__string.html" title="The string is either utf8 encoded, or it is in the code page specified by the containing...">pst_string</a>      <a class="code" href="structpst__item__attach.html#ab44388a512817ce10c1e010785d76b12" title="mapi element 0x370e PR_ATTACH_MIME_TAG">mimetype</a>;
<a name="l00610"></a><a class="code" href="structpst__item__attach.html#ab79e885778187f23470077c019cbe55b">00610</a>     <a class="code" href="structpst__binary.html" title="a simple wrapper for binary blobs">pst_binary</a>      <a class="code" href="structpst__item__attach.html#ab79e885778187f23470077c019cbe55b" title="mapi element 0x3701 PR_ATTACH_DATA_OBJ">data</a>;
<a name="l00612"></a><a class="code" href="structpst__item__attach.html#a384b52bc2c71402224656825746934b7">00612</a>     uint64_t        <a class="code" href="structpst__item__attach.html#a384b52bc2c71402224656825746934b7" title="only used if the attachment is by reference, in which case this is the id2 reference...">id2_val</a>;
<a name="l00614"></a><a class="code" href="structpst__item__attach.html#a35e9b86a479c9e0bd276c7c0456b262e">00614</a>     uint64_t        <a class="code" href="structpst__item__attach.html#a35e9b86a479c9e0bd276c7c0456b262e" title="calculated from id2_val during creation of record">i_id</a>;
<a name="l00616"></a><a class="code" href="structpst__item__attach.html#a1d8374ed6ddb401a31315026365f3dbe">00616</a>     <a class="code" href="structpst__id2__tree.html">pst_id2_tree</a>    *<a class="code" href="structpst__item__attach.html#a1d8374ed6ddb401a31315026365f3dbe" title="id2 tree needed to resolve attachments by reference">id2_head</a>;
<a name="l00625"></a><a class="code" href="structpst__item__attach.html#a6506d560e58790270d9d7cc89500e886">00625</a>     int32_t         <a class="code" href="structpst__item__attach.html#a6506d560e58790270d9d7cc89500e886" title="mapi element 0x3705 PR_ATTACH_METHOD">method</a>;
<a name="l00627"></a><a class="code" href="structpst__item__attach.html#a7f352742f214de9b71224516d5b23bc2">00627</a>     int32_t         <a class="code" href="structpst__item__attach.html#a7f352742f214de9b71224516d5b23bc2" title="mapi element 0x370b PR_RENDERING_POSITION">position</a>;
<a name="l00629"></a><a class="code" href="structpst__item__attach.html#ab6a648439f6c497a6ddf75b2e661dad4">00629</a>     int32_t         <a class="code" href="structpst__item__attach.html#ab6a648439f6c497a6ddf75b2e661dad4" title="mapi element 0x3710 PR_ATTACH_MIME_SEQUENCE">sequence</a>;
<a name="l00630"></a><a class="code" href="structpst__item__attach.html#a3644889ae2e6601452092a41cce66c12">00630</a>     <span class="keyword">struct </span><a class="code" href="structpst__item__attach.html" title="This contains the attachment related mapi elements.">pst_item_attach</a> *<a class="code" href="structpst__item__attach.html#a3644889ae2e6601452092a41cce66c12">next</a>;
<a name="l00631"></a>00631 } <a class="code" href="structpst__item__attach.html" title="This contains the attachment related mapi elements.">pst_item_attach</a>;
<a name="l00632"></a>00632 
<a name="l00633"></a>00633 
<a name="l00635"></a><a class="code" href="structpst__item__extra__field.html">00635</a> <span class="keyword">typedef</span> <span class="keyword">struct </span><a class="code" href="structpst__item__extra__field.html" title="linked list of extra header fields">pst_item_extra_field</a> {
<a name="l00636"></a><a class="code" href="structpst__item__extra__field.html#a67646f3185b7916b84b4fe81b4617d0e">00636</a>     <span class="keywordtype">char</span>   *<a class="code" href="structpst__item__extra__field.html#a67646f3185b7916b84b4fe81b4617d0e">field_name</a>;
<a name="l00637"></a><a class="code" href="structpst__item__extra__field.html#a9ef6d10f0a61d28b9d56121935dc1230">00637</a>     <span class="keywordtype">char</span>   *<a class="code" href="structpst__item__extra__field.html#a9ef6d10f0a61d28b9d56121935dc1230">value</a>;
<a name="l00638"></a><a class="code" href="structpst__item__extra__field.html#abbd93ac0cb48dfbc9710cdffaed0e8e2">00638</a>     <span class="keyword">struct </span><a class="code" href="structpst__item__extra__field.html" title="linked list of extra header fields">pst_item_extra_field</a> *<a class="code" href="structpst__item__extra__field.html#abbd93ac0cb48dfbc9710cdffaed0e8e2">next</a>;
<a name="l00639"></a>00639 } <a class="code" href="structpst__item__extra__field.html" title="linked list of extra header fields">pst_item_extra_field</a>;
<a name="l00640"></a>00640 
<a name="l00641"></a>00641 
<a name="l00644"></a><a class="code" href="structpst__item__journal.html">00644</a> <span class="keyword">typedef</span> <span class="keyword">struct </span><a class="code" href="structpst__item__journal.html" title="This contains the journal related mapi elements.">pst_item_journal</a> {
<a name="l00646"></a><a class="code" href="structpst__item__journal.html#a53b4bf1896c4a0538f86ec5fd3e4b556">00646</a>     <a class="code" href="structFILETIME.html">FILETIME</a>   *<a class="code" href="structpst__item__journal.html#a53b4bf1896c4a0538f86ec5fd3e4b556" title="mapi element 0x8706">start</a>;
<a name="l00648"></a><a class="code" href="structpst__item__journal.html#a0dc12521d1f9888b1384b37d86021923">00648</a>     <a class="code" href="structFILETIME.html">FILETIME</a>   *<a class="code" href="structpst__item__journal.html#a0dc12521d1f9888b1384b37d86021923" title="mapi element 0x8708">end</a>;
<a name="l00650"></a><a class="code" href="structpst__item__journal.html#a03637b74ae30f45e8be952bd3dbac77a">00650</a>     <a class="code" href="structpst__string.html" title="The string is either utf8 encoded, or it is in the code page specified by the containing...">pst_string</a>  <a class="code" href="structpst__item__journal.html#a03637b74ae30f45e8be952bd3dbac77a" title="mapi element 0x8700">type</a>;
<a name="l00652"></a><a class="code" href="structpst__item__journal.html#a00bae7b93cc867ed846081cbcbdbed1b">00652</a>     <a class="code" href="structpst__string.html" title="The string is either utf8 encoded, or it is in the code page specified by the containing...">pst_string</a>  <a class="code" href="structpst__item__journal.html#a00bae7b93cc867ed846081cbcbdbed1b" title="mapi element 0x8712">description</a>;
<a name="l00653"></a>00653 } <a class="code" href="structpst__item__journal.html" title="This contains the journal related mapi elements.">pst_item_journal</a>;
<a name="l00654"></a>00654 
<a name="l00655"></a>00655 
<a name="l00659"></a><a class="code" href="structpst__recurrence.html">00659</a> <span class="keyword">typedef</span> <span class="keyword">struct </span><a class="code" href="structpst__recurrence.html" title="This contains the recurrence data separated into fields.">pst_recurrence</a> {
<a name="l00661"></a><a class="code" href="structpst__recurrence.html#ad9fa4cbdabc42c1b2f075b12e07e8925">00661</a>     uint32_t    <a class="code" href="structpst__recurrence.html#ad9fa4cbdabc42c1b2f075b12e07e8925" title="0x30043004">signature</a>;
<a name="l00666"></a><a class="code" href="structpst__recurrence.html#ab7c0347b4a7a8dfb97b5dd2eb989a337">00666</a>     uint32_t    <a class="code" href="structpst__recurrence.html#ab7c0347b4a7a8dfb97b5dd2eb989a337">type</a>;
<a name="l00673"></a><a class="code" href="structpst__recurrence.html#af62b0a0f4f8231a315537a28c2a55e05">00673</a>     uint32_t    <a class="code" href="structpst__recurrence.html#af62b0a0f4f8231a315537a28c2a55e05" title="implies number of recurrence parameters">sub_type</a>;
<a name="l00675"></a><a class="code" href="structpst__recurrence.html#add5cb36730e729c16cc65e0fd9ae37dd">00675</a>     uint32_t    <a class="code" href="structpst__recurrence.html#add5cb36730e729c16cc65e0fd9ae37dd" title="must be contiguous, not an array to make python interface easier">parm1</a>;
<a name="l00676"></a><a class="code" href="structpst__recurrence.html#a84cdf63134c6cf7805d5ccaf1afb7ce0">00676</a>     uint32_t    <a class="code" href="structpst__recurrence.html#a84cdf63134c6cf7805d5ccaf1afb7ce0">parm2</a>;
<a name="l00677"></a><a class="code" href="structpst__recurrence.html#a6c8d2b1ef9a8e5003ea74dae0bd9c07a">00677</a>     uint32_t    <a class="code" href="structpst__recurrence.html#a6c8d2b1ef9a8e5003ea74dae0bd9c07a">parm3</a>;
<a name="l00678"></a><a class="code" href="structpst__recurrence.html#a0479151d17d1bc6f18b46273e1117606">00678</a>     uint32_t    <a class="code" href="structpst__recurrence.html#a0479151d17d1bc6f18b46273e1117606">parm4</a>;
<a name="l00679"></a><a class="code" href="structpst__recurrence.html#a0665020cf144fb266edf660ad79e1e36">00679</a>     uint32_t    <a class="code" href="structpst__recurrence.html#a0665020cf144fb266edf660ad79e1e36">parm5</a>;
<a name="l00685"></a><a class="code" href="structpst__recurrence.html#a3697b3dcf3d124d43ed697d0edecba0c">00685</a>     uint32_t    <a class="code" href="structpst__recurrence.html#a3697b3dcf3d124d43ed697d0edecba0c" title="type of termination of the recurrence">termination</a>;
<a name="l00687"></a><a class="code" href="structpst__recurrence.html#a25b0407aabb604167e0638f96345069a">00687</a>     uint32_t    <a class="code" href="structpst__recurrence.html#a25b0407aabb604167e0638f96345069a" title="recurrence interval in terms of the recurrence type">interval</a>;
<a name="l00689"></a><a class="code" href="structpst__recurrence.html#ae792d80fc778faa198d290dcc550f3f1">00689</a>     uint32_t    <a class="code" href="structpst__recurrence.html#ae792d80fc778faa198d290dcc550f3f1" title="bit mask of days of the week">bydaymask</a>;
<a name="l00691"></a><a class="code" href="structpst__recurrence.html#a6ab8c81eaa71604c21a09113e4fa44e5">00691</a>     uint32_t    <a class="code" href="structpst__recurrence.html#a6ab8c81eaa71604c21a09113e4fa44e5" title="day of month for monthly and yearly recurrences">dayofmonth</a>;
<a name="l00693"></a><a class="code" href="structpst__recurrence.html#aeb0bd71e476317aa2f08cebfb755560b">00693</a>     uint32_t    <a class="code" href="structpst__recurrence.html#aeb0bd71e476317aa2f08cebfb755560b" title="month of year for yearly recurrences">monthofyear</a>;
<a name="l00695"></a><a class="code" href="structpst__recurrence.html#a6552d961e247aebbacf6fda289556049">00695</a>     uint32_t    <a class="code" href="structpst__recurrence.html#a6552d961e247aebbacf6fda289556049" title="occurence of day for 2nd Tuesday of month, in which case position is 2">position</a>;
<a name="l00697"></a><a class="code" href="structpst__recurrence.html#a56d78e04155a3e773cf2cc6e7648f058">00697</a>     uint32_t    <a class="code" href="structpst__recurrence.html#a56d78e04155a3e773cf2cc6e7648f058" title="number of occurrences, even if recurrence terminates based on date">count</a>;
<a name="l00698"></a>00698     <span class="comment">// there is more data, including the termination date,</span>
<a name="l00699"></a>00699     <span class="comment">// but we can get that from other mapi elements.</span>
<a name="l00700"></a>00700 } <a class="code" href="structpst__recurrence.html" title="This contains the recurrence data separated into fields.">pst_recurrence</a>;
<a name="l00701"></a>00701 
<a name="l00702"></a>00702 
<a name="l00705"></a><a class="code" href="structpst__item__appointment.html">00705</a> <span class="keyword">typedef</span> <span class="keyword">struct </span><a class="code" href="structpst__item__appointment.html" title="This contains the appointment related mapi elements.">pst_item_appointment</a> {
<a name="l00707"></a><a class="code" href="structpst__item__appointment.html#af37804a2ff6bd134316639b255711d61">00707</a>     <a class="code" href="structFILETIME.html">FILETIME</a>   *<a class="code" href="structpst__item__appointment.html#af37804a2ff6bd134316639b255711d61" title="mapi element 0x820d PR_OUTLOOK_EVENT_START_DATE">start</a>;
<a name="l00709"></a><a class="code" href="structpst__item__appointment.html#a7d29e98e9052a4c7f866d2b06d3ee712">00709</a>     <a class="code" href="structFILETIME.html">FILETIME</a>   *<a class="code" href="structpst__item__appointment.html#a7d29e98e9052a4c7f866d2b06d3ee712" title="mapi element 0x820e PR_OUTLOOK_EVENT_START_END">end</a>;
<a name="l00711"></a><a class="code" href="structpst__item__appointment.html#a0b9c459290d4c90aeb3d0bb99834e8e5">00711</a>     <a class="code" href="structpst__string.html" title="The string is either utf8 encoded, or it is in the code page specified by the containing...">pst_string</a>  <a class="code" href="structpst__item__appointment.html#a0b9c459290d4c90aeb3d0bb99834e8e5" title="mapi element 0x8208 PR_OUTLOOK_EVENT_LOCATION">location</a>;
<a name="l00715"></a><a class="code" href="structpst__item__appointment.html#aff9714e71e9f2612fc56c9efd13ad18e">00715</a>     <span class="keywordtype">int</span>         <a class="code" href="structpst__item__appointment.html#aff9714e71e9f2612fc56c9efd13ad18e" title="mapi element 0x8503 PR_OUTLOOK_COMMON_REMINDER_SET">alarm</a>;
<a name="l00717"></a><a class="code" href="structpst__item__appointment.html#ad624b3c1166e2867013b54ab58c63943">00717</a>     <a class="code" href="structFILETIME.html">FILETIME</a>   *<a class="code" href="structpst__item__appointment.html#ad624b3c1166e2867013b54ab58c63943" title="mapi element 0x8560">reminder</a>;
<a name="l00719"></a><a class="code" href="structpst__item__appointment.html#a4b4d05cfee8823068ee46009ba9a03ef">00719</a>     int32_t     <a class="code" href="structpst__item__appointment.html#a4b4d05cfee8823068ee46009ba9a03ef" title="mapi element 0x8501 PR_OUTLOOK_COMMON_REMINDER_MINUTES_BEFORE">alarm_minutes</a>;
<a name="l00721"></a><a class="code" href="structpst__item__appointment.html#a4e888b1822686865c9a31bf7940e399d">00721</a>     <a class="code" href="structpst__string.html" title="The string is either utf8 encoded, or it is in the code page specified by the containing...">pst_string</a>  <a class="code" href="structpst__item__appointment.html#a4e888b1822686865c9a31bf7940e399d" title="mapi element 0x851f">alarm_filename</a>;
<a name="l00723"></a><a class="code" href="structpst__item__appointment.html#acfb56231a5b583e916dc3514fe0fee02">00723</a>     <a class="code" href="structpst__string.html" title="The string is either utf8 encoded, or it is in the code page specified by the containing...">pst_string</a>  <a class="code" href="structpst__item__appointment.html#acfb56231a5b583e916dc3514fe0fee02" title="mapi element 0x8234">timezonestring</a>;
<a name="l00729"></a><a class="code" href="structpst__item__appointment.html#ab03ca84acd1f96880dcf1ebeeefdeed5">00729</a>     int32_t     <a class="code" href="structpst__item__appointment.html#ab03ca84acd1f96880dcf1ebeeefdeed5" title="mapi element 0x8205 PR_OUTLOOK_EVENT_SHOW_TIME_AS">showas</a>;
<a name="l00742"></a><a class="code" href="structpst__item__appointment.html#a2aca3d6391bc24f26d68237b69216e2b">00742</a>     int32_t     <a class="code" href="structpst__item__appointment.html#a2aca3d6391bc24f26d68237b69216e2b" title="mapi element 0x8214">label</a>;
<a name="l00746"></a><a class="code" href="structpst__item__appointment.html#a6399207e8ef0cdb37893715fce5759e0">00746</a>     <span class="keywordtype">int</span>         <a class="code" href="structpst__item__appointment.html#a6399207e8ef0cdb37893715fce5759e0" title="mapi element 0x8215 PR_OUTLOOK_EVENT_ALL_DAY">all_day</a>;
<a name="l00750"></a><a class="code" href="structpst__item__appointment.html#a7eef2fda06954346d8894a06c94a224f">00750</a>     <span class="keywordtype">int</span>         <a class="code" href="structpst__item__appointment.html#a7eef2fda06954346d8894a06c94a224f" title="mapi element 0x8223 PR_OUTLOOK_EVENT_IS_RECURRING">is_recurring</a>;
<a name="l00757"></a><a class="code" href="structpst__item__appointment.html#ade51e7cbc09e4ca8c39f3b6d6e3476db">00757</a>     int32_t     <a class="code" href="structpst__item__appointment.html#ade51e7cbc09e4ca8c39f3b6d6e3476db" title="mapi element 0x8231">recurrence_type</a>;
<a name="l00759"></a><a class="code" href="structpst__item__appointment.html#a20ae1589337570ac0beef64a19be07e1">00759</a>     <a class="code" href="structpst__string.html" title="The string is either utf8 encoded, or it is in the code page specified by the containing...">pst_string</a>  <a class="code" href="structpst__item__appointment.html#a20ae1589337570ac0beef64a19be07e1" title="mapi element 0x8232 recurrence description">recurrence_description</a>;
<a name="l00761"></a><a class="code" href="structpst__item__appointment.html#afd60a0673191b1f4a2d85f9d10602e19">00761</a>     <a class="code" href="structpst__binary.html" title="a simple wrapper for binary blobs">pst_binary</a>  <a class="code" href="structpst__item__appointment.html#afd60a0673191b1f4a2d85f9d10602e19" title="mapi element 0x8216 recurrence data">recurrence_data</a>;
<a name="l00763"></a><a class="code" href="structpst__item__appointment.html#ae8fc87b285eb7a428f0efeb7a84f96e2">00763</a>     <a class="code" href="structFILETIME.html">FILETIME</a>   *<a class="code" href="structpst__item__appointment.html#ae8fc87b285eb7a428f0efeb7a84f96e2" title="mapi element 0x8235 PR_OUTLOOK_EVENT_RECURRENCE_START">recurrence_start</a>;
<a name="l00765"></a><a class="code" href="structpst__item__appointment.html#af22b04600115378790ce9bf69efa422b">00765</a>     <a class="code" href="structFILETIME.html">FILETIME</a>   *<a class="code" href="structpst__item__appointment.html#af22b04600115378790ce9bf69efa422b" title="mapi element 0x8236 PR_OUTLOOK_EVENT_RECURRENCE_END">recurrence_end</a>;
<a name="l00766"></a>00766 } <a class="code" href="structpst__item__appointment.html" title="This contains the appointment related mapi elements.">pst_item_appointment</a>;
<a name="l00767"></a>00767 
<a name="l00768"></a>00768 
<a name="l00772"></a><a class="code" href="structpst__item.html">00772</a> <span class="keyword">typedef</span> <span class="keyword">struct </span><a class="code" href="structpst__item.html" title="This contains the common mapi elements, and pointers to structures for each major...">pst_item</a> {
<a name="l00774"></a><a class="code" href="structpst__item.html#a5d9832cbe645faad768f92a6b6f9f3fe">00774</a>     <span class="keyword">struct </span><a class="code" href="structpst__file.html">pst_file</a>        *<a class="code" href="structpst__item.html#a5d9832cbe645faad768f92a6b6f9f3fe" title="pointer to the pst_file">pf</a>;
<a name="l00776"></a><a class="code" href="structpst__item.html#ae477169dd513b6e7e84532ca6cd7f78b">00776</a>     uint64_t               <a class="code" href="structpst__item.html#ae477169dd513b6e7e84532ca6cd7f78b" title="block id that can be used to generate uid">block_id</a>;
<a name="l00778"></a><a class="code" href="structpst__item.html#afb32f35400dea1849137b413b5a203ba">00778</a>     <a class="code" href="structpst__item__email.html" title="This contains the email related mapi elements.">pst_item_email</a>         *<a class="code" href="structpst__item.html#afb32f35400dea1849137b413b5a203ba" title="email mapi elements">email</a>;
<a name="l00780"></a><a class="code" href="structpst__item.html#a343972a9d2bb86af2570ed46b3785dea">00780</a>     <a class="code" href="structpst__item__folder.html" title="This contains the folder related mapi elements.">pst_item_folder</a>        *<a class="code" href="structpst__item.html#a343972a9d2bb86af2570ed46b3785dea" title="folder mapi elements">folder</a>;
<a name="l00782"></a><a class="code" href="structpst__item.html#a3b4f84e8cf1d257f173987c9bf406e18">00782</a>     <a class="code" href="structpst__item__contact.html" title="This contains the contact related mapi elements.">pst_item_contact</a>       *<a class="code" href="structpst__item.html#a3b4f84e8cf1d257f173987c9bf406e18" title="contact mapi elements">contact</a>;
<a name="l00784"></a><a class="code" href="structpst__item.html#a515d5cab84c2c54344a1482405f170d7">00784</a>     <a class="code" href="structpst__item__attach.html" title="This contains the attachment related mapi elements.">pst_item_attach</a>        *<a class="code" href="structpst__item.html#a515d5cab84c2c54344a1482405f170d7" title="linked list of attachments">attach</a>;
<a name="l00786"></a><a class="code" href="structpst__item.html#a4ef632d33c70ab4c8bcaa6f856c84566">00786</a>     <a class="code" href="structpst__item__message__store.html" title="This contains the message store related mapi elements.">pst_item_message_store</a> *<a class="code" href="structpst__item.html#a4ef632d33c70ab4c8bcaa6f856c84566" title="message store mapi elements">message_store</a>;
<a name="l00788"></a><a class="code" href="structpst__item.html#a535b2b8ea3db47ac16c4cc7758c607e5">00788</a>     <a class="code" href="structpst__item__extra__field.html" title="linked list of extra header fields">pst_item_extra_field</a>   *<a class="code" href="structpst__item.html#a535b2b8ea3db47ac16c4cc7758c607e5" title="linked list of extra headers and such">extra_fields</a>;
<a name="l00790"></a><a class="code" href="structpst__item.html#ac6f8dd26897745820b338eb41f74b36a">00790</a>     <a class="code" href="structpst__item__journal.html" title="This contains the journal related mapi elements.">pst_item_journal</a>       *<a class="code" href="structpst__item.html#ac6f8dd26897745820b338eb41f74b36a" title="journal mapi elements">journal</a>;
<a name="l00792"></a><a class="code" href="structpst__item.html#a52f2ceca353c2a405f245bc01b24af67">00792</a>     <a class="code" href="structpst__item__appointment.html" title="This contains the appointment related mapi elements.">pst_item_appointment</a>   *<a class="code" href="structpst__item.html#a52f2ceca353c2a405f245bc01b24af67" title="calendar mapi elements">appointment</a>;
<a name="l00803"></a><a class="code" href="structpst__item.html#a48af022f526d48d6c551060b4824f163">00803</a>     <span class="keywordtype">int</span>         <a class="code" href="structpst__item.html#a48af022f526d48d6c551060b4824f163" title="derived from mapi elements 0x001a PR_MESSAGE_CLASS or 0x3613 PR_CONTAINER_CLASS">type</a>;
<a name="l00805"></a><a class="code" href="structpst__item.html#a57d2dddd3a5a342c456f23f16cb98296">00805</a>     <span class="keywordtype">char</span>       *<a class="code" href="structpst__item.html#a57d2dddd3a5a342c456f23f16cb98296" title="mapi element 0x001a PR_MESSAGE_CLASS or 0x3613 PR_CONTAINER_CLASS">ascii_type</a>;
<a name="l00817"></a><a class="code" href="structpst__item.html#a744fb18e926082b64005b0245f52f39b">00817</a>     int32_t     <a class="code" href="structpst__item.html#a744fb18e926082b64005b0245f52f39b" title="mapi element 0x0e07 PR_MESSAGE_FLAGS">flags</a>;
<a name="l00819"></a><a class="code" href="structpst__item.html#a6abd94880993f95a90f27022a58b69aa">00819</a>     <a class="code" href="structpst__string.html" title="The string is either utf8 encoded, or it is in the code page specified by the containing...">pst_string</a>  <a class="code" href="structpst__item.html#a6abd94880993f95a90f27022a58b69aa" title="mapi element 0x3001 PR_DISPLAY_NAME">file_as</a>;
<a name="l00821"></a><a class="code" href="structpst__item.html#a4376dece26a4aafb3b5b182d94f4c8fb">00821</a>     <a class="code" href="structpst__string.html" title="The string is either utf8 encoded, or it is in the code page specified by the containing...">pst_string</a>  <a class="code" href="structpst__item.html#a4376dece26a4aafb3b5b182d94f4c8fb" title="mapi element 0x3004 PR_COMMENT">comment</a>;
<a name="l00823"></a><a class="code" href="structpst__item.html#ad10dfa4a53f6e4c4e269f7241f729f3b">00823</a>     <a class="code" href="structpst__string.html" title="The string is either utf8 encoded, or it is in the code page specified by the containing...">pst_string</a>  <a class="code" href="structpst__item.html#ad10dfa4a53f6e4c4e269f7241f729f3b" title="derived from extra_fields[&amp;quot;content-type&amp;quot;] if it contains a charset= subfield...">body_charset</a>;
<a name="l00825"></a><a class="code" href="structpst__item.html#aee98e9205ec76fbfbc38155b5261b5b3">00825</a>     <a class="code" href="structpst__string.html" title="The string is either utf8 encoded, or it is in the code page specified by the containing...">pst_string</a>  <a class="code" href="structpst__item.html#aee98e9205ec76fbfbc38155b5261b5b3" title="mapi element 0x1000 PR_BODY">body</a>;
<a name="l00827"></a><a class="code" href="structpst__item.html#ad7dff6d6128007821ab565a1a656f6ee">00827</a>     <a class="code" href="structpst__string.html" title="The string is either utf8 encoded, or it is in the code page specified by the containing...">pst_string</a>  <a class="code" href="structpst__item.html#ad7dff6d6128007821ab565a1a656f6ee" title="mapi element 0x0037 PR_SUBJECT">subject</a>;
<a name="l00829"></a><a class="code" href="structpst__item.html#a333fc9a931111ca5d206a278508b0f69">00829</a>     int32_t     <a class="code" href="structpst__item.html#a333fc9a931111ca5d206a278508b0f69" title="mapi element 0x3fde PR_INTERNET_CPID">internet_cpid</a>;
<a name="l00831"></a><a class="code" href="structpst__item.html#a47a0e4b31a5a88d3158dee5326209616">00831</a>     int32_t     <a class="code" href="structpst__item.html#a47a0e4b31a5a88d3158dee5326209616" title="mapi element 0x3ffd PR_MESSAGE_CODEPAGE">message_codepage</a>;
<a name="l00833"></a><a class="code" href="structpst__item.html#a1315ffa76d6c425e1e3f64268476d73e">00833</a>     int32_t     <a class="code" href="structpst__item.html#a1315ffa76d6c425e1e3f64268476d73e" title="mapi element 0x0e08 PR_MESSAGE_SIZE">message_size</a>;
<a name="l00835"></a><a class="code" href="structpst__item.html#afbb274cb2ead9f6cbcd406bbb6fe36cb">00835</a>     <a class="code" href="structpst__string.html" title="The string is either utf8 encoded, or it is in the code page specified by the containing...">pst_string</a>  <a class="code" href="structpst__item.html#afbb274cb2ead9f6cbcd406bbb6fe36cb" title="mapi element 0x8554 PR_OUTLOOK_VERSION">outlook_version</a>;
<a name="l00837"></a><a class="code" href="structpst__item.html#a1e1ec573437e944a32429494549405be">00837</a>     <a class="code" href="structpst__binary.html" title="a simple wrapper for binary blobs">pst_binary</a>  <a class="code" href="structpst__item.html#a1e1ec573437e944a32429494549405be" title="mapi element 0x0ff9 PR_RECORD_KEY">record_key</a>;
<a name="l00839"></a><a class="code" href="structpst__item.html#a69c2c183d91ea24b3d683d8ae3d6f798">00839</a>     <a class="code" href="structpst__binary.html" title="a simple wrapper for binary blobs">pst_binary</a>  <a class="code" href="structpst__item.html#a69c2c183d91ea24b3d683d8ae3d6f798" title="mapi element 0x65e3 PR_PREDECESSOR_CHANGE_LIST">predecessor_change</a>;
<a name="l00843"></a><a class="code" href="structpst__item.html#a0eb0ad58f3641e11abdcdf8d695b6742">00843</a>     <span class="keywordtype">int</span>         <a class="code" href="structpst__item.html#a0eb0ad58f3641e11abdcdf8d695b6742" title="mapi element 0x0063 PR_RESPONSE_REQUESTED">response_requested</a>;
<a name="l00845"></a><a class="code" href="structpst__item.html#a2d5eab11382e9bbbd9f49c62b0e8a8b2">00845</a>     <a class="code" href="structFILETIME.html">FILETIME</a>   *<a class="code" href="structpst__item.html#a2d5eab11382e9bbbd9f49c62b0e8a8b2" title="mapi element 0x3007 PR_CREATION_TIME">create_date</a>;
<a name="l00847"></a><a class="code" href="structpst__item.html#a1739c20046d1f2afba009e0f03bc9c60">00847</a>     <a class="code" href="structFILETIME.html">FILETIME</a>   *<a class="code" href="structpst__item.html#a1739c20046d1f2afba009e0f03bc9c60" title="mapi element 0x3008 PR_LAST_MODIFICATION_TIME">modify_date</a>;
<a name="l00851"></a><a class="code" href="structpst__item.html#a7680d5ed9d270ab7b970cfc80b49b8b3">00851</a>     <span class="keywordtype">int</span>         <a class="code" href="structpst__item.html#a7680d5ed9d270ab7b970cfc80b49b8b3" title="mapi element 0x002b PR_RECIPIENT_REASSIGNMENT_PROHIBITED">private_member</a>;
<a name="l00852"></a>00852 } <a class="code" href="structpst__item.html" title="This contains the common mapi elements, and pointers to structures for each major...">pst_item</a>;
<a name="l00853"></a>00853 
<a name="l00854"></a>00854 
<a name="l00863"></a><a class="code" href="structpst__x__attrib__ll.html">00863</a> <span class="keyword">typedef</span> <span class="keyword">struct </span><a class="code" href="structpst__x__attrib__ll.html" title="Linked list of extended attributes.">pst_x_attrib_ll</a> {
<a name="l00867"></a><a class="code" href="structpst__x__attrib__ll.html#a8474a38e3e9871bc780a489954f2fd14">00867</a>     uint32_t <a class="code" href="structpst__x__attrib__ll.html#a8474a38e3e9871bc780a489954f2fd14">mytype</a>;
<a name="l00869"></a><a class="code" href="structpst__x__attrib__ll.html#abb2336dd53084eb82fd601cec24c536e">00869</a>     uint32_t <a class="code" href="structpst__x__attrib__ll.html#abb2336dd53084eb82fd601cec24c536e" title="key for the mapping">map</a>;
<a name="l00871"></a><a class="code" href="structpst__x__attrib__ll.html#a813c4e280998c26f377f9d2cae81df5f">00871</a>     <span class="keywordtype">void</span>     *<a class="code" href="structpst__x__attrib__ll.html#a813c4e280998c26f377f9d2cae81df5f" title="data target of the mapping, either uint32_t or string">data</a>;
<a name="l00873"></a><a class="code" href="structpst__x__attrib__ll.html#af79ad7b0a1242198aa7119a8a2977ba4">00873</a>     <span class="keyword">struct </span><a class="code" href="structpst__x__attrib__ll.html" title="Linked list of extended attributes.">pst_x_attrib_ll</a> *<a class="code" href="structpst__x__attrib__ll.html#af79ad7b0a1242198aa7119a8a2977ba4" title="link to next item in the list">next</a>;
<a name="l00874"></a>00874 } <a class="code" href="structpst__x__attrib__ll.html" title="Linked list of extended attributes.">pst_x_attrib_ll</a>;
<a name="l00875"></a>00875 
<a name="l00876"></a>00876 
<a name="l00878"></a><a class="code" href="structpst__block__recorder.html">00878</a> <span class="keyword">typedef</span> <span class="keyword">struct </span><a class="code" href="structpst__block__recorder.html" title="this is only used for internal debugging">pst_block_recorder</a> {
<a name="l00879"></a><a class="code" href="structpst__block__recorder.html#afda3df84a5c01d61345282ccfd91450d">00879</a>     <span class="keyword">struct </span><a class="code" href="structpst__block__recorder.html" title="this is only used for internal debugging">pst_block_recorder</a>  *<a class="code" href="structpst__block__recorder.html#afda3df84a5c01d61345282ccfd91450d">next</a>;
<a name="l00880"></a><a class="code" href="structpst__block__recorder.html#a9c0cf29deb0b9622129acba7065e59db">00880</a>     int64_t                     <a class="code" href="structpst__block__recorder.html#a9c0cf29deb0b9622129acba7065e59db">offset</a>;
<a name="l00881"></a><a class="code" href="structpst__block__recorder.html#a489f1b1fc27de9d306b53cee6d27ceae">00881</a>     <span class="keywordtype">size_t</span>                      <a class="code" href="structpst__block__recorder.html#a489f1b1fc27de9d306b53cee6d27ceae">size</a>;
<a name="l00882"></a><a class="code" href="structpst__block__recorder.html#a8f753d18bd55c2f573a5c28e0cc7beca">00882</a>     <span class="keywordtype">int</span>                         <a class="code" href="structpst__block__recorder.html#a8f753d18bd55c2f573a5c28e0cc7beca">readcount</a>;
<a name="l00883"></a>00883 } <a class="code" href="structpst__block__recorder.html" title="this is only used for internal debugging">pst_block_recorder</a>;
<a name="l00884"></a>00884 
<a name="l00885"></a>00885 
<a name="l00886"></a><a class="code" href="structpst__file.html">00886</a> <span class="keyword">typedef</span> <span class="keyword">struct </span><a class="code" href="structpst__file.html">pst_file</a> {
<a name="l00888"></a><a class="code" href="structpst__file.html#ac8c07003c5e5e92867eafe821299b360">00888</a>     FILE*   <a class="code" href="structpst__file.html#ac8c07003c5e5e92867eafe821299b360" title="file pointer to opened PST file">fp</a>;
<a name="l00890"></a><a class="code" href="structpst__file.html#a0836103b6046b555d147bf44584102fa">00890</a>     <span class="keywordtype">char</span>*   <a class="code" href="structpst__file.html#a0836103b6046b555d147bf44584102fa" title="original cwd when the file was opened">cwd</a>;
<a name="l00892"></a><a class="code" href="structpst__file.html#af7375fa8b9abddd13d173719a2f761e6">00892</a>     <span class="keywordtype">char</span>*   <a class="code" href="structpst__file.html#af7375fa8b9abddd13d173719a2f761e6" title="original file name when the file was opened">fname</a>;
<a name="l00894"></a><a class="code" href="structpst__file.html#afc0abf894b46f0582d651eddcbe3541e">00894</a>     <span class="keyword">const</span> <span class="keywordtype">char</span>*   <a class="code" href="structpst__file.html#afc0abf894b46f0582d651eddcbe3541e" title="default character set for items without one">charset</a>;
<a name="l00896"></a><a class="code" href="structpst__file.html#a8171283d976b5743bf0eca6198751563">00896</a>     <a class="code" href="structpst__index__ll.html">pst_index_ll</a> *<a class="code" href="structpst__file.html#a38be00c8e835f7fb206c0ef672533dc9" title="the head and tail of the linked list of index structures">i_head</a>, *<a class="code" href="structpst__file.html#a8171283d976b5743bf0eca6198751563">i_tail</a>;
<a name="l00898"></a><a class="code" href="structpst__file.html#ab4381d0030463db64a7cec4aef274088">00898</a>     <a class="code" href="structpst__desc__tree.html">pst_desc_tree</a>  *<a class="code" href="structpst__file.html#aaf5344f31e149ff0afb64074b81d67ab" title="the head and tail of the top level of the descriptor tree">d_head</a>, *<a class="code" href="structpst__file.html#ab4381d0030463db64a7cec4aef274088">d_tail</a>;
<a name="l00900"></a><a class="code" href="structpst__file.html#acf892ef2183fc8c6f295253a74e13134">00900</a>     <a class="code" href="structpst__x__attrib__ll.html" title="Linked list of extended attributes.">pst_x_attrib_ll</a> *<a class="code" href="structpst__file.html#acf892ef2183fc8c6f295253a74e13134" title="the head of the extended attributes linked list">x_head</a>;
<a name="l00904"></a><a class="code" href="structpst__file.html#a7769614d85bf8359bb017813e8c8bd4f">00904</a>     <a class="code" href="structpst__block__recorder.html" title="this is only used for internal debugging">pst_block_recorder</a> *<a class="code" href="structpst__file.html#a7769614d85bf8359bb017813e8c8bd4f" title="the head of the block recorder, a debug artifact used to detect cases where we might...">block_head</a>;
<a name="l00905"></a>00905 
<a name="l00908"></a><a class="code" href="structpst__file.html#a934b0e620cd8117f6f78e0f27d60a2f6">00908</a>     <span class="keywordtype">int</span> <a class="code" href="structpst__file.html#a934b0e620cd8117f6f78e0f27d60a2f6">do_read64</a>;
<a name="l00910"></a><a class="code" href="structpst__file.html#a236d987098be87aca4c8425a1b439124">00910</a>     uint64_t <a class="code" href="structpst__file.html#a236d987098be87aca4c8425a1b439124" title="file offset of the first b-tree node in the index tree">index1</a>;
<a name="l00912"></a><a class="code" href="structpst__file.html#a3428239190356ce61ea1c49e6901aa35">00912</a>     uint64_t <a class="code" href="structpst__file.html#a3428239190356ce61ea1c49e6901aa35" title="back pointer value in the first b-tree node in the index tree">index1_back</a>;
<a name="l00914"></a><a class="code" href="structpst__file.html#a24fb10af30360d9a1990cf546a532154">00914</a>     uint64_t <a class="code" href="structpst__file.html#a24fb10af30360d9a1990cf546a532154" title="file offset of the first b-tree node in the descriptor tree">index2</a>;
<a name="l00916"></a><a class="code" href="structpst__file.html#a970a48d4514ca456fa61f1448821ba99">00916</a>     uint64_t <a class="code" href="structpst__file.html#a970a48d4514ca456fa61f1448821ba99" title="back pointer value in the first b-tree node in the descriptor tree">index2_back</a>;
<a name="l00918"></a><a class="code" href="structpst__file.html#a6d71d43bcb98b353f7f3e7b648407546">00918</a>     uint64_t <a class="code" href="structpst__file.html#a6d71d43bcb98b353f7f3e7b648407546" title="size of the pst file">size</a>;
<a name="l00922"></a><a class="code" href="structpst__file.html#a5c0c653118d15ab375e9ad4b5bf32a16">00922</a>     <span class="keywordtype">unsigned</span> <span class="keywordtype">char</span> <a class="code" href="structpst__file.html#a5c0c653118d15ab375e9ad4b5bf32a16">encryption</a>;
<a name="l00928"></a><a class="code" href="structpst__file.html#a6d2ea97bf1dd4c699307f7a0d2d0b241">00928</a>     <span class="keywordtype">unsigned</span> <span class="keywordtype">char</span> <a class="code" href="structpst__file.html#a6d2ea97bf1dd4c699307f7a0d2d0b241" title="index type or file type">ind_type</a>;
<a name="l00929"></a>00929 } <a class="code" href="structpst__file.html">pst_file</a>;
<a name="l00930"></a>00930 
<a name="l00931"></a>00931 
<a name="l00939"></a>00939 <span class="keywordtype">int</span>             <a class="code" href="libpst_8h.html#a97609d99d5613dfcf5f16af80b776c0b" title="Open a pst file.">pst_open</a>(<a class="code" href="structpst__file.html">pst_file</a> *pf, <span class="keyword">const</span> <span class="keywordtype">char</span> *name, <span class="keyword">const</span> <span class="keywordtype">char</span> *charset);
<a name="l00940"></a>00940 
<a name="l00941"></a>00941 
<a name="l00946"></a>00946 <span class="keywordtype">int</span>             <a class="code" href="libpst_8h.html#ae18bbe7c99bc9b916a9baf0ed9bac786" title="Reopen the pst file after a fork.">pst_reopen</a>(<a class="code" href="structpst__file.html">pst_file</a> *pf);
<a name="l00947"></a>00947 
<a name="l00948"></a>00948 
<a name="l00954"></a>00954 <span class="keywordtype">int</span>             <a class="code" href="libpst_8h.html#a74d9b2fd7c865809bdd7aede2d7a174f" title="Load the index entries from the pst file.">pst_load_index</a> (<a class="code" href="structpst__file.html">pst_file</a> *pf);
<a name="l00955"></a>00955 
<a name="l00956"></a>00956 
<a name="l00961"></a>00961 <span class="keywordtype">int</span>             <a class="code" href="libpst_8h.html#a964115c7565bf2348ed2fe3eb69a87dd" title="Load the extended attribute mapping table from the pst file.">pst_load_extended_attributes</a>(<a class="code" href="structpst__file.html">pst_file</a> *pf);
<a name="l00962"></a>00962 
<a name="l00963"></a>00963 
<a name="l00967"></a>00967 <span class="keywordtype">int</span>             <a class="code" href="libpst_8h.html#a7bbc4479361cca1eb969ad0b33ef87a8" title="Close a pst file.">pst_close</a>(<a class="code" href="structpst__file.html">pst_file</a> *pf);
<a name="l00968"></a>00968 
<a name="l00969"></a>00969 
<a name="l00975"></a>00975 <a class="code" href="structpst__desc__tree.html">pst_desc_tree</a>*  <a class="code" href="libpst_8h.html#a63e251cf63d085732fb704162336d968" title="Get the top of folders descriptor tree.">pst_getTopOfFolders</a>(<a class="code" href="structpst__file.html">pst_file</a> *pf, <span class="keyword">const</span> <a class="code" href="structpst__item.html" title="This contains the common mapi elements, and pointers to structures for each major...">pst_item</a> *root);
<a name="l00976"></a>00976 
<a name="l00977"></a>00977 
<a name="l00984"></a>00984 <a class="code" href="structpst__binary.html" title="a simple wrapper for binary blobs">pst_binary</a>      <a class="code" href="libpst_8h.html#ac035492f6c510b1f50e595221d77b078" title="Assemble the binary attachment into a single buffer.">pst_attach_to_mem</a>(<a class="code" href="structpst__file.html">pst_file</a> *pf, <a class="code" href="structpst__item__attach.html" title="This contains the attachment related mapi elements.">pst_item_attach</a> *attach);
<a name="l00985"></a>00985 
<a name="l00986"></a>00986 
<a name="l00992"></a>00992 <span class="keywordtype">size_t</span>          <a class="code" href="libpst_8h.html#a9b1908fbb5f52a825d4a33f60ae314a9" title="Write a binary attachment to a file.">pst_attach_to_file</a>(<a class="code" href="structpst__file.html">pst_file</a> *pf, <a class="code" href="structpst__item__attach.html" title="This contains the attachment related mapi elements.">pst_item_attach</a> *attach, FILE* fp);
<a name="l00993"></a>00993 
<a name="l00994"></a>00994 
<a name="l01000"></a>01000 <span class="keywordtype">size_t</span>          <a class="code" href="libpst_8h.html#a41cf057df9708196ca157f323f6dacac" title="Write a binary attachment base64 encoded to a file.">pst_attach_to_file_base64</a>(<a class="code" href="structpst__file.html">pst_file</a> *pf, <a class="code" href="structpst__item__attach.html" title="This contains the attachment related mapi elements.">pst_item_attach</a> *attach, FILE* fp);
<a name="l01001"></a>01001 
<a name="l01002"></a>01002 
<a name="l01007"></a>01007 <a class="code" href="structpst__desc__tree.html">pst_desc_tree</a>*  <a class="code" href="libpst_8h.html#ad611e595d8f585c2035134bd7b06daf3" title="Walk the descriptor tree.">pst_getNextDptr</a>(<a class="code" href="structpst__desc__tree.html">pst_desc_tree</a>* d);
<a name="l01008"></a>01008 
<a name="l01009"></a>01009 
<a name="l01017"></a>01017 <a class="code" href="structpst__item.html" title="This contains the common mapi elements, and pointers to structures for each major...">pst_item</a>*       <a class="code" href="libpst_8h.html#a0d7e66069962d05b4fdd2f1a76da4d8c" title="Assemble a mapi object from a descriptor pointer.">pst_parse_item</a> (<a class="code" href="structpst__file.html">pst_file</a> *pf, <a class="code" href="structpst__desc__tree.html">pst_desc_tree</a> *d_ptr, <a class="code" href="structpst__id2__tree.html">pst_id2_tree</a> *m_head);
<a name="l01018"></a>01018 
<a name="l01019"></a>01019 
<a name="l01023"></a>01023 <span class="keywordtype">void</span>            <a class="code" href="libpst_8h.html#adc025232180c14435e1673f2d5c55705" title="Free the item returned by pst_parse_item().">pst_freeItem</a>(<a class="code" href="structpst__item.html" title="This contains the common mapi elements, and pointers to structures for each major...">pst_item</a> *item);
<a name="l01024"></a>01024 
<a name="l01025"></a>01025 
<a name="l01031"></a>01031 <a class="code" href="structpst__index__ll.html">pst_index_ll</a>*   <a class="code" href="libpst_8h.html#a51e465df01c02cecc1945924a1bf4da1" title="Lookup the i_id in the index linked list, and return a pointer to the element.">pst_getID</a>(<a class="code" href="structpst__file.html">pst_file</a>* pf, uint64_t i_id);
<a name="l01032"></a>01032 
<a name="l01033"></a>01033 
<a name="l01041"></a>01041 <span class="keywordtype">size_t</span>          <a class="code" href="libpst_8h.html#ac8127c6255c633a8dd8cf887951179ac" title="Get an ID block from the file using pst_ff_getIDblock() and decrypt if necessary...">pst_ff_getIDblock_dec</a>(<a class="code" href="structpst__file.html">pst_file</a> *pf, uint64_t i_id, <span class="keywordtype">char</span> **buf);
<a name="l01042"></a>01042 
<a name="l01043"></a>01043 
<a name="l01047"></a>01047 <span class="keywordtype">int</span> <a class="code" href="libpst_8h.html#a60b72e9b758886e0d0cc838fa7d158ad" title="compare strings case-insensitive.">pst_stricmp</a>(<span class="keywordtype">char</span> *a, <span class="keywordtype">char</span> *b);
<a name="l01048"></a>01048 
<a name="l01049"></a>01049 
<a name="l01057"></a>01057 <span class="keywordtype">size_t</span>          <a class="code" href="libpst_8h.html#a402d2ffe3d657c8e051de72329a71795" title="fwrite with checking for null pointer.">pst_fwrite</a>(<span class="keyword">const</span> <span class="keywordtype">void</span>* ptr, <span class="keywordtype">size_t</span> size, <span class="keywordtype">size_t</span> nmemb, FILE* stream);
<a name="l01058"></a>01058 
<a name="l01059"></a>01059 
<a name="l01068"></a>01068 <span class="keywordtype">char</span>*           <a class="code" href="libpst_8h.html#ab61df8b4becb08710f5c617698a723ac" title="Add any necessary escape characters for rfc2426 vcard format.">pst_rfc2426_escape</a>(<span class="keywordtype">char</span>* str, <span class="keywordtype">char</span>** result, <span class="keywordtype">size_t</span>* resultlen);
<a name="l01069"></a>01069 
<a name="l01070"></a>01070 
<a name="l01078"></a>01078 <span class="keywordtype">char</span>*           <a class="code" href="libpst_8h.html#ab0005526466f7375e6414c388a404b2f" title="Convert a FILETIME into rfc2425 date/time format 1953-10-15T23:10:00Z which is the...">pst_rfc2425_datetime_format</a>(<span class="keyword">const</span> <a class="code" href="structFILETIME.html">FILETIME</a>* ft, <span class="keywordtype">int</span> buflen, <span class="keywordtype">char</span>* result);
<a name="l01079"></a>01079 
<a name="l01080"></a>01080 
<a name="l01087"></a>01087 <span class="keywordtype">char</span>*           <a class="code" href="libpst_8h.html#a71d643db00fbf63ca97df8ee255a4c90" title="Convert a FILETIME into rfc2445 date/time format 19531015T231000Z.">pst_rfc2445_datetime_format</a>(<span class="keyword">const</span> <a class="code" href="structFILETIME.html">FILETIME</a>* ft, <span class="keywordtype">int</span> buflen, <span class="keywordtype">char</span>* result);
<a name="l01088"></a>01088 
<a name="l01089"></a>01089 
<a name="l01095"></a>01095 <span class="keywordtype">char</span>*           <a class="code" href="libpst_8h.html#ab94321bb6fdf15e58e3c9f4af0b60dd3" title="Convert the current time rfc2445 date/time format 19531015T231000Z.">pst_rfc2445_datetime_format_now</a>(<span class="keywordtype">int</span> buflen, <span class="keywordtype">char</span>* result);
<a name="l01096"></a>01096 
<a name="l01097"></a>01097 
<a name="l01105"></a>01105 <span class="keyword">const</span> <span class="keywordtype">char</span>*     <a class="code" href="libpst_8h.html#af1ffb335ad7f0f061b8a3195622e8e83" title="Get the default character set for this item.">pst_default_charset</a>(<a class="code" href="structpst__item.html" title="This contains the common mapi elements, and pointers to structures for each major...">pst_item</a> *item, <span class="keywordtype">int</span> buflen, <span class="keywordtype">char</span>* result);
<a name="l01106"></a>01106 
<a name="l01107"></a>01107 
<a name="l01111"></a>01111 <span class="keywordtype">void</span>            <a class="code" href="libpst_8h.html#ac79de4b15d9c44500725066bf8b3922c" title="Convert str to rfc2231 encoding of str.">pst_rfc2231</a>(<a class="code" href="structpst__string.html" title="The string is either utf8 encoded, or it is in the code page specified by the containing...">pst_string</a> *str);
<a name="l01112"></a>01112 
<a name="l01113"></a>01113 
<a name="l01119"></a>01119 <span class="keywordtype">void</span>            <a class="code" href="libpst_8h.html#a6667f2015bb2b44dd2396c6e0e9c5238" title="Convert str to rfc2047 encoding of str, possibly enclosed in quotes if it contains...">pst_rfc2047</a>(<a class="code" href="structpst__item.html" title="This contains the common mapi elements, and pointers to structures for each major...">pst_item</a> *item, <a class="code" href="structpst__string.html" title="The string is either utf8 encoded, or it is in the code page specified by the containing...">pst_string</a> *str, <span class="keywordtype">int</span> needs_quote);
<a name="l01120"></a>01120 
<a name="l01121"></a>01121 
<a name="l01126"></a>01126 <span class="keywordtype">void</span>            <a class="code" href="libpst_8h.html#a138556af57cdab35eb87648b3ca5b422" title="Convert str to utf8 if possible; null strings are preserved.">pst_convert_utf8_null</a>(<a class="code" href="structpst__item.html" title="This contains the common mapi elements, and pointers to structures for each major...">pst_item</a> *item, <a class="code" href="structpst__string.html" title="The string is either utf8 encoded, or it is in the code page specified by the containing...">pst_string</a> *str);
<a name="l01127"></a>01127 
<a name="l01128"></a>01128 
<a name="l01133"></a>01133 <span class="keywordtype">void</span>            <a class="code" href="libpst_8h.html#a26b166acdb587759203784b64086fce1" title="Convert str to utf8 if possible; null strings are converted into empty strings.">pst_convert_utf8</a>(<a class="code" href="structpst__item.html" title="This contains the common mapi elements, and pointers to structures for each major...">pst_item</a> *item, <a class="code" href="structpst__string.html" title="The string is either utf8 encoded, or it is in the code page specified by the containing...">pst_string</a> *str);
<a name="l01134"></a>01134 
<a name="l01135"></a>01135 
<a name="l01140"></a>01140 <a class="code" href="structpst__recurrence.html" title="This contains the recurrence data separated into fields.">pst_recurrence</a>* <a class="code" href="libpst_8h.html#acd3e7feef9ef36b6cc5316f80df18633" title="Decode raw recurrence data into a better structure.">pst_convert_recurrence</a>(<a class="code" href="structpst__item__appointment.html" title="This contains the appointment related mapi elements.">pst_item_appointment</a>* appt);
<a name="l01141"></a>01141 
<a name="l01142"></a>01142 
<a name="l01146"></a>01146 <span class="keywordtype">void</span>            <a class="code" href="libpst_8h.html#a226c7ebc8b6cd314c80a01b194594646" title="Free a recurrence structure.">pst_free_recurrence</a>(<a class="code" href="structpst__recurrence.html" title="This contains the recurrence data separated into fields.">pst_recurrence</a>* r);
<a name="l01147"></a>01147 
<a name="l01148"></a>01148 
<a name="l01149"></a>01149 
<a name="l01150"></a>01150 <span class="comment">// switch from maximal packing back to default packing</span>
<a name="l01151"></a>01151 <span class="comment">// undo the packing from the beginning of this file</span>
<a name="l01152"></a>01152 <span class="preprocessor">#ifdef _MSC_VER</span>
<a name="l01153"></a>01153 <span class="preprocessor"></span><span class="preprocessor">    #pragma pack(pop)</span>
<a name="l01154"></a>01154 <span class="preprocessor"></span><span class="preprocessor">#endif</span>
<a name="l01155"></a>01155 <span class="preprocessor"></span><span class="preprocessor">#if defined(__GNUC__) || defined (__SUNPRO_C) || defined(__SUNPRO_CC)</span>
<a name="l01156"></a>01156 <span class="preprocessor"></span><span class="preprocessor">    #pragma pack()</span>
<a name="l01157"></a>01157 <span class="preprocessor"></span><span class="preprocessor">#endif</span>
<a name="l01158"></a>01158 <span class="preprocessor"></span>
<a name="l01159"></a>01159 
<a name="l01160"></a>01160 
<a name="l01161"></a>01161 <span class="preprocessor">#endif</span>
</pre></div></div>
<hr size="1"/><address style="text-align: right;"><small>Generated on 6 Aug 2013 for libpst.so.4 by&nbsp;
<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.6.1 </small></address>
</body>
</html>