Share

AcEdCommandStruc

C++

struct AcEdCommandStruc {
  AcRxFunctionPtr fcnAddr;
  long flags;
  void * app;
  AcEdCommand * cmd;
};

File

accmd.h

Members

Members Description
fcnAddr Address of the function to be called when the command is executed
flags Flags used when the command was registered; see AcEdCommand::commandFlags() for more information on the possible values
app For internal use only
cmd Pointer to the AcEdCommand object for this command

Description

This struct provides a map to an AutoCAD command's binary implementation and resources.

Previous Declaration

struct AcEdCommandStruc {

AcRxFunctionPtr fcnAddr;

long flags;

void * app;

HINSTANCE hResHandle;

AcEdCommand * cmd;

};

Was this information helpful?