Tasks database table - TaskDepender

Tasks database table

From TaskDepender
Jump to: navigation, search
(Design)
(Implementation)
Line 52: Line 52:
 
=== Interface structure ===
 
=== Interface structure ===
  
<syntaxhighlight lang="c">
+
<syntaxhighlight lang="cpp">
 
typedef struct
 
typedef struct
 
{
 
{
Line 58: Line 58:
 
   char*  name,
 
   char*  name,
 
   char*  description,
 
   char*  description,
   char*  resource,
+
   uint  resourceId,
 
   uint  x,
 
   uint  x,
 
   uint  y,
 
   uint  y,
 +
  uint  width,
 +
  uint  height,
 
   uint32 container_id
 
   uint32 container_id
 
} tdd_task;
 
} tdd_task;

Revision as of 19:54, 14 November 2011

Personal tools