ReactOS 0.4.16-dev-937-g7afcd2a
initterm.cpp File Reference
#include <corecrt_internal.h>
Include dependency graph for initterm.cpp:

Go to the source code of this file.

Functions

void __cdecl _initterm (_PVFV *const first, _PVFV *const last)
 
int __cdecl _initterm_e (_PIFV *const first, _PIFV *const last)
 

Function Documentation

◆ _initterm()

void __cdecl _initterm ( _PVFV *const  first,
_PVFV *const  last 
)

Definition at line 14 of file initterm.cpp.

15{
16 for (_PVFV* it = first; it != last; ++it)
17 {
18 if (*it == nullptr)
19 continue;
20
21 (**it)();
22 }
23}
void(__cdecl * _PVFV)(void)
const GLint * first
Definition: glext.h:5794
static UINT UINT last
Definition: font.c:45

◆ _initterm_e()

int __cdecl _initterm_e ( _PIFV *const  first,
_PIFV *const  last 
)

Definition at line 33 of file initterm.cpp.

34{
35 for (_PIFV* it = first; it != last; ++it)
36 {
37 if (*it == nullptr)
38 continue;
39
40 int const result = (**it)();
41 if (result != 0)
42 return result;
43 }
44
45 return 0;
46}
int(__cdecl * _PIFV)(void)
GLuint64EXT * result
Definition: glext.h:11304