More code written on ServerWindow

Added skeleton of new_decorator()


git-svn-id: file:///srv/svn/repos/haiku/trunk/current@2695 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
DarkWyrm
2003-02-12 01:11:55 +00:00
parent 2d2601d03c
commit 6e4bef603f
6 changed files with 295 additions and 181 deletions
+7
View File
@@ -747,6 +747,12 @@ ServerApp *AppServer::FindApp(const char *sig)
return NULL;
}
Decorator *new_decorator(BRect rect, const char *title, int32 wlook, int32 wfeel,
int32 wflags, DisplayDriver *ddriver)
{
return NULL;
}
/*!
\brief Entry function to run the entire server
\param argc Number of command-line arguments present
@@ -764,3 +770,4 @@ int main( int argc, char** argv )
delete app_server;
return 0;
}