0

I've declared constant as follows:

#define OPENIN_DIR_PATH_FORMAT_STRING L"%@"              

Now how should I change the value for OPENIN_DIR_PATH_FORMAT_STRING here with %@

Kissiel
  • 1,925
  • 1
  • 13
  • 11
Vishwanath Deshmukh
  • 619
  • 1
  • 10
  • 32

1 Answers1

2

#define is not making constant it's the macro definition. If you want to change this macro you might do #undef and #define it again. But I strongly discourage you from messing around with macros :)

See This for more details

Community
  • 1
  • 1
Kissiel
  • 1,925
  • 1
  • 13
  • 11