Retro video games delivered to your door every month!
Click above to get retro games delivered to your door ever month!
X-Hacker.org- Force 4.0 Reference - _list generic list pointer http://www.X-Hacker.org [<<Previous Entry] [^^Up^^] [Next Entry>>] [Menu] [About The Guide]
 _LIST               Generic list pointer
------------------------------------------------------------------------------
 Declaration
   pick.hdr

 Syntax
   typedef ulong _LIST

 Description
   The _LIST type is used to declare a pointer to a generic list.
   A generic list pointer is returned by the pickinit() function, and used
   by the other list manipulation functions.

 Example
   #define EXAMPLE_TYPE
   #include example.hdr

   proc Test_LIST
   vardef
      _LIST pList
   enddef
   ? pickvalidate( pList )           // list invalid yet
   pList := pickinit()               // initialize list
   ? pickvalidate( pList )           // list valid after initialization
   pickclear( pList )                // clear list
   ? pickvalidate( pList )           // list invalid after clearing
   endproc

   proc main
   Test_LIST()
   endproc

See Also: pickinit()

Online resources provided by: http://www.X-Hacker.org --- NG 2 HTML conversion by Dave Pearson