Hi
Is there anyway to use custom pragma directives in Visual C++ 2005. I have a source file wherein the pragma derectives are declared as below
abc.c(source)
#pragma ghs section sbss=".sec2"
unsigned int var;
#pragma ghs section sbss=default
Now when I compile the source it gives a warning, "Unknown pragma". Its because the compiler does not recognize this pragma.. So is there any way to get the compiler recognize this pragma derective..
Thanks all..