Revision 859, 433 bytes
(checked in by prikryl, 15 years ago)
|
New function _search_index().
|
Line | |
---|
1 | |
---|
2 | #ifndef _AIMSUN_BDM_TOOLS_H_ |
---|
3 | #define _AIMSUN_BDM_TOOLS_H_ |
---|
4 | |
---|
5 | #define MAX_LINE 1024 |
---|
6 | |
---|
7 | void _addpath ( TCHAR * path ); |
---|
8 | TCHAR * _tstrtrim ( TCHAR * str ); |
---|
9 | |
---|
10 | errno_t replace_in_scenario ( |
---|
11 | const TCHAR * sce_name, |
---|
12 | const TCHAR * new_name, |
---|
13 | const TCHAR * section, |
---|
14 | const TCHAR ** patterns, |
---|
15 | int num_patterns, |
---|
16 | const TCHAR * replacement |
---|
17 | ); |
---|
18 | |
---|
19 | int _search_index ( const int *list, int numElements, int value ); |
---|
20 | |
---|
21 | #endif |
---|