Out of Scope Error

I have this in a .h header file that is correctly imported because I know that my INFORMATION BLOCK structure is working and not out of scope, but when I moved the following code from above my void setup() to my header it says it is out of scope.

This is what I moved from above void setup() to the header file

Here are some lines of code that used to work but now say they are out of scope (These lines of code are now in the void loop() part of the program.

Here are also some of the out of scope errors. I should be able to include this in the header file to clean up the code correct? I have another structure in the header file that is working just fine, but the other structure is not a union struct like these.

You'll need to post ALL of your code. Nothing that you've shown so far proves that anything is an any header file or that the header file is being included.

Here is complete code

I put the sketch and header file in the same folder. I changed:

#include <Arduino_Structures.h>

to

#include "Arduino_Structures.h"

I added

#include <Arduino.h>

to Arduino_Structures.h

I got this "error" using 1.0.5:

Binary sketch size: 23,168 bytes (of a 258,048 byte maximum)

Your turn.

Best error I've ever seen.