locked
FLS_OUT_OF_INDEXES? RRS feed

  • Question

  • Hello all,

    I'm building C++ metro app, all Fls* functions are available but FLS_OUT_OF_INDEXES macro is available for desktop part only. Is this a bug of dev11 beta or this is expected?

    thanks,
    --Vladimir

    Tuesday, May 29, 2012 3:15 PM

Answers

  • I've verified this with the RC/RP bits and entered a bug against it.

    You can work around by defining the constant in your project

    #define FLS_OUT_OF_INDEXES ((DWORD)0xFFFFFFFF)

    Thank you for the feedback.

    Friday, June 1, 2012 1:12 AM
    Moderator
  • definitely a bug, since that's just a number (-1) so it wouldn't hurt them at all to include it.

    Wednesday, May 30, 2012 2:38 AM

All replies

  • definitely a bug, since that's just a number (-1) so it wouldn't hurt them at all to include it.

    Wednesday, May 30, 2012 2:38 AM
  • I've verified this with the RC/RP bits and entered a bug against it.

    You can work around by defining the constant in your project

    #define FLS_OUT_OF_INDEXES ((DWORD)0xFFFFFFFF)

    Thank you for the feedback.

    Friday, June 1, 2012 1:12 AM
    Moderator
  • thanks,

    I've replaced it by value but now I think that it would be better to write it via defining FLS_OUT_OF_INDEXES macro in case it is not defined.

    --Vladimir

    Friday, June 8, 2012 3:15 PM