Scope of Symbols in an enum Declaration
In MIDL, the scope of symbols in an enum is global with MIDL, as it is in C. In the following example, MIDL will generate a duplicate name error:
typedef struct { ... } a;
enum {a=1, b=2, c=3};
Este explorador ya no se admite.
Actualice a Microsoft Edge para aprovechar las características y actualizaciones de seguridad más recientes, y disponer de soporte técnico.
In MIDL, the scope of symbols in an enum is global with MIDL, as it is in C. In the following example, MIDL will generate a duplicate name error:
typedef struct { ... } a;
enum {a=1, b=2, c=3};