Skip to content
Snippets Groups Projects
Commit e75f9fb8 authored by Hidenori Takeshima's avatar Hidenori Takeshima Committed by Alexandre Julliard
Browse files

Added stubs for riched32.dll.

parent 05f0c380
No related branches found
No related tags found
No related merge requests found
......@@ -124,6 +124,7 @@ DLLS = \
olesvr32 \
psapi \
rasapi32 \
riched32 \
setupx \
shell32 \
sound \
......
......@@ -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
......
......@@ -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
......
......@@ -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@ $@
......
Makefile
libriched32.so.1.0
riched32.spec.c
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:
name riched32
type win32
init RICHED32_Init
/*
* 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;
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment