"Jimmy R" <[EMAIL PROTECTED]> writes:

> What are the class members of the rectangle type, i've found the
> rect->extent where the width and height is suposed to be, but where!!! Its
> impossible to look in all .h files!!! (to find the structure for PointType),
  ^^^^^^^^^^

Impossible? No, not even very difficult:

  $ grep -l PointType /opt/palm/sdk/sdk-3.5/include/Core/System/*.h
  /opt/palm/sdk/sdk-3.5/include/Core/System/Graffiti.h
  /opt/palm/sdk/sdk-3.5/include/Core/System/PenMgr.h
  /opt/palm/sdk/sdk-3.5/include/Core/System/Rect.h
  /opt/palm/sdk/sdk-3.5/include/Core/System/SysEvent.h
  /opt/palm/sdk/sdk-3.5/include/Core/System/SysEvtMgr.h
  /opt/palm/sdk/sdk-3.5/include/Core/System/Window.h
  $ grep -A5 PointType /opt/palm/sdk/sdk-3.5/include/Core/System/Rect.h
  typedef struct PointType {
    Coord x;
    Coord y;
  } PointType;
  
  
  typedef struct RectangleType {
    PointType  topLeft;
    PointType  extent;
  } RectangleType;
  
  typedef RectangleType *RectanglePtr;

  
-- 
Dave Carrigan ([EMAIL PROTECTED])            | Yow! I'm an East Side TYPE..
UNIX-Apache-Perl-Linux-Firewalls-LDAP-C-DNS | 
Seattle, WA, USA                            | 
http://www.rudedog.org/                     | 


-- 
For information on using the ACCESS Developer Forums, or to unsubscribe, please 
see http://www.access-company.com/developers/forums/

Reply via email to