ReactOS 0.4.15-dev-7942-gd23573b
atexit.h
Go to the documentation of this file.
1#ifndef __CRT_INTERNAL_ATEXIT_H
2#define __CRT_INTERNAL_ATEXIT_H
3
4#ifndef _CRT_PRECOMP_H
5#error DO NOT INCLUDE THIS HEADER DIRECTLY
6#endif
7
8#define LOCK_EXIT _mlock(_EXIT_LOCK1)
9#define UNLOCK_EXIT _munlock(_EXIT_LOCK1)
10
12extern int atexit_table_size;
13extern int atexit_registered; /* Points to free slot */
14
15void __call_atexit(void);
16
17#endif
void __call_atexit(void)
Definition: atonexit.c:30
_onexit_t * atexit_table
int atexit_table_size
int atexit_registered
int(__cdecl * _onexit_t)(void)
Definition: stdlib.h:28