First Check DarkGDK docs - then Check DBPro Docs - then go Look in the DarkGDK header files for the "Missing" stuff.
Sometimes you have to make you're own declarations for things TGC forgot to add to the header files.
Some I know about (Search for
That did it to get right where I listed them):
http://forum.thegamecreators.com/?m=forum_view&t=124372&b=22
How I toggle Backdrop (per camera)
//----------------------------------------------------------------------------
void JGC_CAMERA::Backdrop_Set(bool p_bOn){
//----------------------------------------------------------------------------
if(this->bBackdropOn=p_bOn){
dbBackdropOn(this->ID);
}else{
dbBackdropOff(this->ID);
};
};
//----------------------------------------------------------------------------
The way to globally set the color for all Cams (cuz thats how it works) is:
dbBackdropColor( DWORD RGB); or
dbBackdropColor(dbRGB(Red,Green,Blue));