Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
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-winehq
Commits
86b0a633
Commit
86b0a633
authored
Nov 20, 2020
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msvcrt/tests: Remove the headers test.
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
48552496
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
1 addition
and
21 deletions
+1
-21
msvcrt.h
dlls/msvcrt/msvcrt.h
+0
-18
Makefile.in
dlls/msvcrt/tests/Makefile.in
+0
-2
headers.c
dlls/msvcrt/tests/headers.c
+0
-0
eh.h
include/msvcrt/eh.h
+1
-1
No files found.
dlls/msvcrt/msvcrt.h
View file @
86b0a633
...
...
@@ -15,22 +15,6 @@
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*
* NOTES
* Naming conventions
* - Symbols are prefixed with MSVCRT_ if they conflict
* with libc symbols
* - Internal symbols are usually prefixed by msvcrt_.
* - Exported symbols that are not present in the public
* headers are usually kept the same as the original.
* Other conventions
* - To avoid conflicts with the standard C library,
* no msvcrt headers are included in the implementation.
* - Instead, symbols are duplicated here, prefixed with
* MSVCRT_, as explained above.
* - To avoid inconsistencies, a test for each symbol is
* added into tests/headers.c. Please always add a
* corresponding test when you add a new symbol!
*/
#ifndef __WINE_MSVCRT_H
...
...
@@ -1143,7 +1127,6 @@ void free_locinfo(MSVCRT_pthreadlocinfo) DECLSPEC_HIDDEN;
void
free_mbcinfo
(
MSVCRT_pthreadmbcinfo
)
DECLSPEC_HIDDEN
;
int
__cdecl
__crtLCMapStringA
(
LCID
,
DWORD
,
const
char
*
,
int
,
char
*
,
int
,
unsigned
int
,
int
)
DECLSPEC_HIDDEN
;
#ifndef __WINE_MSVCRT_TEST
int
__cdecl
MSVCRT__write
(
int
,
const
void
*
,
unsigned
int
);
int
__cdecl
_getch
(
void
);
int
__cdecl
_ismbblead
(
unsigned
int
);
...
...
@@ -1265,7 +1248,6 @@ int fpnum_double(struct fpnum*, double*) DECLSPEC_HIDDEN;
#define MSVCRT_INVALID_PMT(x,err) (*MSVCRT__errno() = (err), MSVCRT__invalid_parameter(NULL, NULL, NULL, 0, 0))
#define MSVCRT_CHECK_PMT_ERR(x,err) ((x) || (MSVCRT_INVALID_PMT( 0, (err) ), FALSE))
#define MSVCRT_CHECK_PMT(x) MSVCRT_CHECK_PMT_ERR((x), MSVCRT_EINVAL)
#endif
#define MSVCRT__ARGMAX 100
typedef
int
(
*
puts_clbk_a
)(
void
*
,
int
,
const
char
*
);
...
...
dlls/msvcrt/tests/Makefile.in
View file @
86b0a633
TESTDLL
=
msvcrt.dll
EXTRAINCL
=
-I
$(srcdir)
/..
IMPORTS
=
advapi32
C_SRCS
=
\
...
...
@@ -8,7 +7,6 @@ C_SRCS = \
dir.c
\
environ.c
\
file.c
\
headers.c
\
heap.c
\
locale.c
\
misc.c
\
...
...
dlls/msvcrt/tests/headers.c
deleted
100644 → 0
View file @
48552496
This diff is collapsed.
Click to expand it.
include/msvcrt/eh.h
View file @
86b0a633
...
...
@@ -22,7 +22,7 @@
#include <corecrt.h>
#if
!defined(__cplusplus) && !defined(__WINE_MSVCRT_TEST)
#if
ndef __cplusplus
#error "eh.h is meant only for C++ applications"
#endif
...
...
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