Enum with two dimensional string
#6

Quote:
Originally Posted by ax1
Посмотреть сообщение
I do not necessarily want 2-dimensional arrays in enum, I just want string array in enum and I thought that I could do that with 2 dimensional array I cant do it like this
enum Data
{
MemberName[20][MAX_PLAYER_NAME]
};
because it brings me error
You don't need to do like that, because we've done this to obtain that.
PHP код:
#define MemberName][%1][%2] MemberName][((%1)*hStorage_size2)+(%2)] 
So just, put this in enum.
PHP код:

enum Data
{
MemberName[sizeof_hStorage]
}; 
Reply


Messages In This Thread
Enum with two dimensional string - by ax1 - 15.10.2017, 10:05
Re: Enum with two dimensional string - by ax1 - 17.10.2017, 12:46
Re: Enum with two dimensional string - by StrikerZ - 17.10.2017, 12:52
Re: Enum with two dimensional string - by ax1 - 17.10.2017, 17:04
Re: Enum with two dimensional string - by ax1 - 18.10.2017, 13:18
Re: Enum with two dimensional string - by StrikerZ - 18.10.2017, 13:49
Re: Enum with two dimensional string - by ax1 - 18.10.2017, 19:53
Re: Enum with two dimensional string - by Mauzen - 18.10.2017, 20:10
Re: Enum with two dimensional string - by ax1 - 19.10.2017, 11:30

Forum Jump:


Users browsing this thread: 1 Guest(s)