* @brief push pPath onto the pnode_tblptr stack */
| 338 | * @brief push pPath onto the pnode_tblptr stack |
| 339 | */ |
| 340 | void path_push_active_step(PATHNODE *pPath) |
| 341 | { |
| 342 | int stack_index = gdwCurPathStep; |
| 343 | gdwCurPathStep++; |
| 344 | pnode_tblptr[stack_index] = pPath; |
| 345 | } |
| 346 | |
| 347 | /** |
| 348 | * @brief pop and return a node from the pnode_tblptr stack |