| 74 | } |
| 75 | |
| 76 | static int execute_pifv_array(_PIFV* begin, _PIFV* end) |
| 77 | { |
| 78 | _PIFV* fn = begin; |
| 79 | while (fn != end) |
| 80 | { |
| 81 | if (*fn) |
| 82 | { |
| 83 | int result = (**begin)(); |
| 84 | if (result) return result; |
| 85 | } |
| 86 | ++fn; |
| 87 | } |
| 88 | return 0; |
| 89 | } |
| 90 | |
| 91 | extern "C" int __crt_init() |
| 92 | { |