J'ai écrit un delphi Numeric pour un C Enum pouvez-vous me répondre, où puis-je avoir une erreur? Y at-il quelque chose de mal?convertir un C Enum au delphi?
C:
typedef enum {
AttributeStandardInformation = 0x10,
AttributeAttributeList = 0x20,
AttributeFileName = 0x30,
AttributeObjectId = 0x40,
AttributeSecurityDescriptor = 0x50,
AttributeVolumeName = 0x60,
AttributeVolumeInformation = 0x70,
AttributeData = 0x80,
AttributeIndexRoot = 0x90,
AttributeIndexAllocation = 0xA0,
AttributeBitmap = 0xB0,
AttributeReparsePoint = 0xC0,
AttributeEAInformation = 0xD0,
AttributeEA = 0xE0,
AttributePropertySet = 0xF0,
AttributeLoggedUtilityStream = 0x100
} ATTRIBUTE_TYPE
et converti delphi ENUM:
ATTRIBUTE_TYPE=(AttributeStandardInformation = $10,
AttributeAttributeList = $20,
AttributeFileName = $30,
AttributeObjectId = $40,
AttributeSecurityDescriptor = $50,
AttributeVolumeName = $60,
AttributeVolumeInformation = $70,
AttributeData = $80,
//AttributeData1 = $0, // has a problem
AttributeIndexRoot = $90,
AttributeIndexAllocation = $A0,
AttributeBitmap = $B0,
AttributeReparsePoint = $C0,
AttributeEAInformation = $D0,
AttributeEA = $E0,
AttributePropertySet = $F0,
AttributeLoggedUtilityStream = $100,
);
Au moins le dernier ',' doit être retiré. –
Qu'est-ce qui vous fait penser que vous avez fait une erreur? Décrivez le problème que vous rencontrez. –