If I have this:

Code:
typedef struct tagPOINTS {
  LONG score, fouls;
} POINTS;
Can I manipulate the data by doing:

Code:
POINTS green;
green.score = 44;
green.founds = 1;