Changeset 1935 for trunk/tools/database
- Timestamp:
- Dec 2, 1999, 1:05:47 PM (26 years ago)
- Location:
- trunk/tools/database
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tools/database/StateUpd.cpp
r830 r1935 1 /* $Id: StateUpd.cpp,v 1. 1 1999-09-05 02:53:05bird Exp $ */1 /* $Id: StateUpd.cpp,v 1.2 1999-12-02 12:05:47 bird Exp $ */ 2 2 /* 3 3 * StateUpd - Scans source files for API functions and imports data on them. … … 951 951 else 952 952 pFnDesc->lStatus = 3; /* STUB */ 953 if (stristr(pFnDesc->pszStatus, "Open32") != NULL 954 || *pFnDesc->pszStatus == '5' || *pFnDesc->pszStatus == '7') 955 pFnDesc->lStatus += 4; 953 956 } 954 957 else if (stristr(pFnDesc->pszStatus, "Completely") != NULL || *pFnDesc->pszStatus == '4' || *pFnDesc->pszStatus == '5') … … 958 961 else 959 962 pFnDesc->lStatus = 5; /* STUB */ 963 if (stristr(pFnDesc->pszStatus, "Open32") != NULL 964 || *pFnDesc->pszStatus == '8' || *pFnDesc->pszStatus == '9') 965 pFnDesc->lStatus += 4; 960 966 } 961 967 else -
trunk/tools/database/States.sql
r830 r1935 1 -- $Id: States.sql,v 1. 1 1999-09-05 02:53:05bird Exp $1 -- $Id: States.sql,v 1.2 1999-12-02 12:05:47 bird Exp $ 2 2 -- 3 3 -- Insert states into the state table. … … 20 20 VALUES (5, '#00FF00', 'Completely Tested', 'Completely implemented. Tested and approved.'); 21 21 INSERT INTO state 22 VALUES (6, '#808080', 'Open32 Partially', 'Partially implemented. Not Tested.'); 23 INSERT INTO state 24 VALUES (7, '#FFFF80', 'Open32 Partially Tested', 'Partially implemented. Tested and approved.'); 25 INSERT INTO state 26 VALUES (8, '#008080', 'Open32 Completely', 'Completely implemented. Not tested.'); 27 INSERT INTO state 28 VALUES (9, '#00FF80', 'Open32 Completely Tested', 'Completely implemented. Tested and approved.'); 29 INSERT INTO state 22 30 VALUES (99, '#FF0000', 'Unknown', 'The state of this function is unknown.'); 23 31
Note:
See TracChangeset
for help on using the changeset viewer.