Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-cw
Commits
0a9ca2d3
Commit
0a9ca2d3
authored
Mar 17, 2020
by
Jacek Caban
Committed by
Alexandre Julliard
Mar 17, 2020
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
corecrt_startup.h: Add onexit table declarations.
Signed-off-by:
Jacek Caban
<
jacek@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
618b0736
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
15 additions
and
0 deletions
+15
-0
corecrt_startup.h
include/msvcrt/corecrt_startup.h
+15
-0
No files found.
include/msvcrt/corecrt_startup.h
View file @
0a9ca2d3
...
...
@@ -22,6 +22,18 @@ typedef enum _crt_app_type
_crt_gui_app
}
_crt_app_type
;
typedef
void
(
__cdecl
*
_PVFV
)(
void
);
typedef
int
(
__cdecl
*
_PIFV
)(
void
);
typedef
void
(
__cdecl
*
_PVFI
)(
int
);
typedef
struct
_onexit_table_t
{
_PVFV
*
_first
;
_PVFV
*
_last
;
_PVFV
*
_end
;
}
_onexit_table_t
;
typedef
int
(
__cdecl
*
_onexit_t
)(
void
);
#ifdef __cplusplus
extern
"C"
{
#endif
...
...
@@ -34,10 +46,13 @@ _ACRTIMP void __cdecl __wgetmainargs(int *, wchar_t ***, wchar_t ***, int, int *
_ACRTIMP
errno_t
__cdecl
_configure_narrow_argv
(
_crt_argv_mode
);
_ACRTIMP
errno_t
__cdecl
_configure_wide_argv
(
_crt_argv_mode
);
_ACRTIMP
int
__cdecl
_execute_onexit_table
(
_onexit_table_t
*
);
_ACRTIMP
char
**
__cdecl
_get_initial_narrow_environment
(
void
);
_ACRTIMP
wchar_t
**
__cdecl
_get_initial_wide_environment
(
void
);
_ACRTIMP
int
__cdecl
_initialize_narrow_environment
(
void
);
_ACRTIMP
int
__cdecl
_initialize_onexit_table
(
_onexit_table_t
*
);
_ACRTIMP
int
__cdecl
_initialize_wide_environment
(
void
);
_ACRTIMP
int
__cdecl
_register_onexit_function
(
_onexit_table_t
*
,
_onexit_t
);
_ACRTIMP
void
__cdecl
_set_app_type
(
_crt_app_type
);
#ifdef __cplusplus
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment