Welcome, Guest. Please login or register.

Author Topic: Programming a Window in C to hold a picture/background  (Read 3132 times)

Description:

0 Members and 1 Guest are viewing this topic.

Offline Steady

Re: Programming a Window in C to hold a picture/background
« on: January 10, 2012, 02:01:56 AM »
These are linker errors.

The C environment accesses IntuitionBase, DataTypesBase and GfxBase as global variables, but they are not defined in any module.

This should be fixed by adding the following include references as they define the globals you need:

#include
#include
#include

Good luck.