Hi,
have a simple project included 3 files:
file 1 named “appli.c” contains:
#include "adl_global.h"
#include "User.h"
const u16 wm_apmCustomStackSize = 1024;
void adl_main ( adl_InitType_e InitType )
{
TRACE (( 1, "Embedded Application : Main" ));
user_SendMessage("test");
}
file “User.h”:
void user_SendMessage(ascii *komunikat);
and file “User.c”:
#include "adl_global.h"
#include "User.h"
void user_SendMessage(ascii *komunikat)
{
adl_atSendResponse ( ADL_AT_UNS, komunikat );
}
when i try compile it under VC++ 2003 or Eclipse getting error:
Any idea why?
Greetings