What is the correct way to declare a pointer to a __far pointer? - Stack Overflow most recent 30 from stackoverflow.com2009-12-19T00:56:27Zhttp://stackoverflow.com/feeds/question/228321http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/228321/what-is-the-correct-way-to-declare-a-pointer-to-a-far-pointer3What is the correct way to declare a pointer to a __far pointer?cschol2008-10-23T02:17:08Z2008-12-09T09:38:25Z
<p>On an embedded target I use far pointers to access some parts of the memory map. </p>
<p>near pointer (without explicitely specifying __near):</p>
<pre>unsigned int *VariableOnePtr;</pre>
<p>Pointer to near pointer: <pre>unsigned int **VariableOnePtrPtr;</pre></p>
<p>far pointer: <pre>unsigned int *__far VariableTwoPtr;</pre> </p>
<p>What is the correct way to declare a pointer to a far pointer? Does this pointer have to be a far pointer itself?</p>
http://stackoverflow.com/questions/228321/what-is-the-correct-way-to-declare-a-pointer-to-a-far-pointer/228331#2283316Answer by Greg Hewgill for What is the correct way to declare a pointer to a __far pointer?Greg Hewgill2008-10-23T02:20:51Z2008-10-23T02:20:51Z<p>I believe you would do this:</p>
<pre><code>unsigned int * __far *VariableThreePtrPtr;
</code></pre>
<p>A far pointer to a far pointer would be:</p>
<pre><code>unsigned int * __far * __far VariableFourPtrPtr;
</code></pre>
http://stackoverflow.com/questions/228321/what-is-the-correct-way-to-declare-a-pointer-to-a-far-pointer/228482#2284821Answer by dmityugov for What is the correct way to declare a pointer to a __far pointer?dmityugov2008-10-23T03:48:52Z2008-10-23T03:48:52Z<p>You can also use typedefs for that, for example</p>
<pre><code>typedef unsigned int *__far VariableTwoPtr_t;
VariableTwoPtr_t* VariableTwoPtrPtr;
</code></pre>
http://stackoverflow.com/questions/228321/what-is-the-correct-way-to-declare-a-pointer-to-a-far-pointer/351320#3513203Answer by mh for What is the correct way to declare a pointer to a __far pointer?mh2008-12-08T23:24:04Z2008-12-09T09:38:25Z<p>"__far" is a proprietary, non-standard extension of your platform, so there can't exist any generic way to use it. See the compiler and standard library manufaturer's manuals for how to use it correctly.</p>