mirror of
https://github.com/reactos/reactos.git
synced 2025-06-20 07:36:05 +00:00
[VCRUNTIME] Add some missing definitions to vcruntime*.h
This commit is contained in:
parent
90e95d15a2
commit
2955b1f0e9
3 changed files with 210 additions and 0 deletions
|
@ -7,3 +7,18 @@ typedef enum _crt_argv_mode
|
|||
_crt_argv_unexpanded_arguments,
|
||||
_crt_argv_expanded_arguments,
|
||||
} _crt_argv_mode;
|
||||
|
||||
typedef enum _crt_exit_cleanup_mode
|
||||
{
|
||||
_crt_exit_full_cleanup,
|
||||
_crt_exit_quick_cleanup,
|
||||
_crt_exit_no_cleanup
|
||||
} _crt_exit_cleanup_mode;
|
||||
|
||||
typedef enum _crt_exit_return_mode
|
||||
{
|
||||
_crt_exit_terminate_process,
|
||||
_crt_exit_return_to_caller
|
||||
} _crt_exit_return_mode;
|
||||
|
||||
__vcrt_bool __cdecl __vcrt_uninitialize(_In_ __vcrt_bool _Terminating);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue