Share

resbuf

C++

struct resbuf {
  struct resbuf * rbnext;
  short restype;
  union ads_u_val resval;
};

File

adsdef.h

Members

Members Description
rbnext Pointer to the next resbuf in a linked-list resbuf chain
restype Value that identifies the type of data stored in this resbuf

Description

Result buffer structure that handles all AutoCAD basic data types. See ObjectARX Global Utility Functions->Variables, Types, and Values Defined in ObjectARX->Result Buffers and Type Codes in the ObjectARX Developer's Guide for more information.

Was this information helpful?