Einzelnen Beitrag anzeigen

NicoDE
(Gast)

n/a Beiträge
 
#2

Re: Diese C++ Struktur in Delphi?

  Alt 17. Feb 2006, 09:33
Delphi-Quellcode:
type
  PPE_CONF = ^PE_CONF;
  PE_CONF = record
    isPID : DWORD;
    format: record
      case Integer of
        0: (
          MP: record
            isSR : DWORD;
            byMode: BYTE;
          end);
        1: (
          LGH: record
            isSV : DWORD;
            isSS : DWORD;
          end);
        2: (
          CA: record
            diSS : DWORD;
            byMode: BYTE;
          end);
    end;
  end;
  Mit Zitat antworten Zitat