Added stubs for riched32.dll.

This commit is contained in:
Hidenori Takeshima 2000-05-03 18:12:19 +00:00 committed by Alexandre Julliard
parent 05f0c38043
commit e75f9fb806
8 changed files with 91 additions and 0 deletions

View File

@ -124,6 +124,7 @@ DLLS = \
olesvr32 \
psapi \
rasapi32 \
riched32 \
setupx \
shell32 \
sound \

2
configure vendored
View File

@ -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

View File

@ -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

View File

@ -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@ $@

3
dlls/richedit/.cvsignore Normal file
View File

@ -0,0 +1,3 @@
Makefile
libriched32.so.1.0
riched32.spec.c

17
dlls/richedit/Makefile.in Normal file
View File

@ -0,0 +1,17 @@
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:

View File

@ -0,0 +1,3 @@
name riched32
type win32
init RICHED32_Init

View File

@ -0,0 +1,59 @@
/*
* 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;
}