Is it possible to have bitpacked records in Delphi? I know its sort of possible to simulate it with properties but its just a mess. These structures are all over WIN32 SDK. Why isn't there a feature request for this on QC?

Is it possible to have bitpacked records in Delphi? I know its sort of possible to simulate it with properties but its just a mess. These structures are all over WIN32 SDK. Why isn't there a feature request for this on QC?

struct {
  unsigned int widthValidated : 1;
  unsigned int heightValidated : 1;
 } status;

Comments