What is the correct way to declare a pointer to a __far pointer? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-19T00:56:27Z http://stackoverflow.com/feeds/question/228321 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/228321/what-is-the-correct-way-to-declare-a-pointer-to-a-far-pointer 3 What is the correct way to declare a pointer to a __far pointer? cschol 2008-10-23T02:17:08Z 2008-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#228331 6 Answer by Greg Hewgill for What is the correct way to declare a pointer to a __far pointer? Greg Hewgill 2008-10-23T02:20:51Z 2008-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#228482 1 Answer by dmityugov for What is the correct way to declare a pointer to a __far pointer? dmityugov 2008-10-23T03:48:52Z 2008-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#351320 3 Answer by mh for What is the correct way to declare a pointer to a __far pointer? mh 2008-12-08T23:24:04Z 2008-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>