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
e75f9fb8
Commit
e75f9fb8
authored
May 03, 2000
by
Hidenori Takeshima
Committed by
Alexandre Julliard
May 03, 2000
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added stubs for riched32.dll.
parent
05f0c380
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
91 additions
and
0 deletions
+91
-0
Make.rules.in
Make.rules.in
+1
-0
configure
configure
+2
-0
configure.in
configure.in
+1
-0
Makefile.in
dlls/Makefile.in
+5
-0
.cvsignore
dlls/richedit/.cvsignore
+3
-0
Makefile.in
dlls/richedit/Makefile.in
+17
-0
riched32.spec
dlls/richedit/riched32.spec
+3
-0
riched32_main.c
dlls/richedit/riched32_main.c
+59
-0
No files found.
Make.rules.in
View file @
e75f9fb8
...
...
@@ -124,6 +124,7 @@ DLLS = \
olesvr32 \
psapi \
rasapi32 \
riched32 \
setupx \
shell32 \
sound \
...
...
configure
View file @
e75f9fb8
...
...
@@ -6229,6 +6229,7 @@ dlls/olepro32/Makefile
dlls/olesvr/Makefile
dlls/psapi/Makefile
dlls/rasapi32/Makefile
dlls/richedit/Makefile
dlls/setupx/Makefile
dlls/shell32/Makefile
dlls/sound/Makefile
...
...
@@ -6459,6 +6460,7 @@ dlls/olepro32/Makefile
dlls/olesvr/Makefile
dlls/psapi/Makefile
dlls/rasapi32/Makefile
dlls/richedit/Makefile
dlls/setupx/Makefile
dlls/shell32/Makefile
dlls/sound/Makefile
...
...
configure.in
View file @
e75f9fb8
...
...
@@ -996,6 +996,7 @@ dlls/olepro32/Makefile
dlls/olesvr/Makefile
dlls/psapi/Makefile
dlls/rasapi32/Makefile
dlls/richedit/Makefile
dlls/setupx/Makefile
dlls/shell32/Makefile
dlls/sound/Makefile
...
...
dlls/Makefile.in
View file @
e75f9fb8
...
...
@@ -35,6 +35,7 @@ DLLFILES = \
olesvr/libolesvr32.@LIBEXT@
\
psapi/libpsapi.@LIBEXT@
\
rasapi32/librasapi32.@LIBEXT@
\
richedit/libriched32.@LIBEXT@
\
setupx/libsetupx.@LIBEXT@
\
shell32/libshell32.@LIBEXT@
\
sound/libsound.@LIBEXT@
\
...
...
@@ -118,6 +119,7 @@ SUBDIRS = \
olesvr
\
psapi
\
rasapi32
\
richedit
\
setupx
\
shell32
\
sound
\
...
...
@@ -249,6 +251,9 @@ libpsapi.@LIBEXT@: psapi/libpsapi.@LIBEXT@
librasapi32.@LIBEXT@ librasapi16.@LIBEXT@
:
rasapi32/librasapi32.@LIBEXT@
$(RM)
$@
&&
$(LN_S)
rasapi32/librasapi32.@LIBEXT@
$@
libriched32.@LIBEXT@
:
richedit/libriched32.@LIBEXT@
$(RM)
@
$
&&
$(LN_S)
richedit/libriched32.@LIBEXT@
$@
libsetupx.@LIBEXT@
:
setupx/libsetupx.@LIBEXT@
$(RM)
$@
&&
$(LN_S)
setupx/libsetupx.@LIBEXT@
$@
...
...
dlls/richedit/.cvsignore
0 → 100644
View file @
e75f9fb8
Makefile
libriched32.so.1.0
riched32.spec.c
dlls/richedit/Makefile.in
0 → 100644
View file @
e75f9fb8
TOPSRCDIR
=
@top_srcdir@
TOPOBJDIR
=
../..
SRCDIR
=
@srcdir@
VPATH
=
@srcdir@
MODULE
=
riched32
SOVERSION
=
1.0
IMPORTS
=
WRCEXTRA
=
-s
-p
$(MODULE)
SPEC_SRCS
=
riched32.spec
C_SRCS
=
\
riched32_main.c
@MAKE_DLL_RULES@
### Dependencies:
dlls/richedit/riched32.spec
0 → 100644
View file @
e75f9fb8
name riched32
type win32
init RICHED32_Init
dlls/richedit/riched32_main.c
0 → 100644
View file @
e75f9fb8
/*
* Win32 Richedit control
*
* Copyright (C) 2000 Hidenori Takeshima <hidenori@a2.ctktv.ne.jp>
*/
#include "winbase.h"
#include "debugtools.h"
/*#include "richedit.h"*/
DEFAULT_DEBUG_CHANNEL
(
richedit
);
/******************************************************************************
*
* RICHED32_Register [Internal]
*
*/
static
BOOL
RICHED32_Register
(
void
)
{
FIXME
(
"stub
\n
"
);
return
FALSE
;
}
/******************************************************************************
*
* RICHED32_Unregister
*
*/
static
void
RICHED32_Unregister
(
void
)
{
}
/******************************************************************************
*
* RICHED32_Init [Internal]
*
*/
BOOL
WINAPI
RICHED32_Init
(
HINSTANCE
hInstDLL
,
DWORD
fdwReason
,
LPVOID
lpvReserved
)
{
switch
(
fdwReason
)
{
case
DLL_PROCESS_ATTACH
:
if
(
!
RICHED32_Register
()
)
return
FALSE
;
break
;
case
DLL_PROCESS_DETACH
:
RICHED32_Unregister
();
break
;
}
return
TRUE
;
}
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