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
c63916b1
Commit
c63916b1
authored
Mar 26, 2002
by
Uwe Bonnes
Committed by
Alexandre Julliard
Mar 26, 2002
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add stub for __lconv_init().
parent
d82f35ed
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
36 additions
and
1 deletion
+36
-1
Makefile.in
dlls/msvcrt/Makefile.in
+1
-0
lconv.c
dlls/msvcrt/lconv.c
+34
-0
msvcrt.spec
dlls/msvcrt/msvcrt.spec
+1
-1
No files found.
dlls/msvcrt/Makefile.in
View file @
c63916b1
...
...
@@ -21,6 +21,7 @@ C_SRCS = \
exit.c
\
file.c
\
heap.c
\
lconv.c
\
locale.c
\
lock.c
\
main.c
\
...
...
dlls/msvcrt/lconv.c
0 → 100644
View file @
c63916b1
/*
* msvcrt.dll lconv functions
*
* Copyright 2002 Uwe Bonnes
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*
* NOTE: just stubs for now 020325
*/
#include "wine/debug.h"
WINE_DEFAULT_DEBUG_CHANNEL
(
msvcrt
);
/*********************************************************************
* __lconv_init (MSVCRT.@)
*/
void
__lconv_init
(
void
)
{
FIXME
(
" stub
\n
"
);
}
dlls/msvcrt/msvcrt.spec
View file @
c63916b1
...
...
@@ -104,7 +104,7 @@ debug_channels (msvcrt)
@ stub __lc_codepage
@ stub __lc_collate
@ stub __lc_handle
@
stub
__lconv_init
@
cdecl __lconv_init()
__lconv_init
@ extern __mb_cur_max MSVCRT___mb_cur_max
@ cdecl __p___argc() __p___argc
@ cdecl __p___argv() __p___argv
...
...
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