Commit 92ad0a47 authored by Josh DuBois's avatar Josh DuBois Committed by Alexandre Julliard

msls31: Add stub dll.

parent df8be7b8
......@@ -15534,6 +15534,7 @@ wine_fn_config_dll msimsg enable_msimsg
wine_fn_config_dll msimtf enable_msimtf
wine_fn_config_dll msisip enable_msisip
wine_fn_config_dll msisys.ocx enable_msisys_ocx
wine_fn_config_dll msls31 enable_msls31
wine_fn_config_dll msnet32 enable_msnet32
wine_fn_config_dll mspatcha enable_mspatcha
wine_fn_config_dll msrle32 enable_msrle32 po
......
......@@ -2807,6 +2807,7 @@ WINE_CONFIG_DLL(msimsg)
WINE_CONFIG_DLL(msimtf)
WINE_CONFIG_DLL(msisip)
WINE_CONFIG_DLL(msisys.ocx)
WINE_CONFIG_DLL(msls31)
WINE_CONFIG_DLL(msnet32)
WINE_CONFIG_DLL(mspatcha)
WINE_CONFIG_DLL(msrle32,,[po])
......
MODULE = msls31.dll
C_SRCS = \
msls31_main.c
@MAKE_DLL_RULES@
@ stub LsAppendRunToCurrentSubline
@ stub LsCompressSubline
@ stub LsCreateContext
@ stub LsCreateLine
@ stub LsCreateSubline
@ stub LsDestroyContext
@ stub LsDestroyLine
@ stub LsDestroySubline
@ stub LsDisplayLine
@ stub LsDisplaySubline
@ stub LsEnumLine
@ stub LsEnumSubline
@ stub LsExpandSubline
@ stub LsFetchAppendToCurrentSubline
@ stub LsFetchAppendToCurrentSublineResume
@ stub LsFindNextBreakSubline
@ stub LsFindPrevBreakSubline
@ stub LsFinishCurrentSubline
@ stub LsForceBreakSubline
@ stub LsGetHihLsimethods
@ stub LsGetLineDur
@ stub LsGetMinDurBreaks
@ stub LsGetReverseLsimethods
@ stub LsGetRubyLsimethods
@ stub LsGetSpecialEffectsSubline
@ stub LsGetTatenakayokoLsimethods
@ stub LsGetWarichuLsimethods
@ stub LsLwMultDivR
@ stub LsMatchPresSubline
@ stub LsModifyLineHeight
@ stub LsPointUV2FromPointUV1
@ stub LsPointXYFromPointUV
@ stub LsQueryCpPpointSubline
@ stub LsQueryFLineEmpty
@ stub LsQueryLineCpPpoint
@ stub LsQueryLineDup
@ stub LsQueryLinePointPcp
@ stub LsQueryPointPcpSubline
@ stub LsQueryTextCellDetails
@ stub LsResetRMInCurrentSubline
@ stub LsSetBreakSubline
@ stub LsSetBreaking
@ stub LsSetCompression
@ stub LsSetDoc
@ stub LsSetExpansion
@ stub LsSetModWidthPairs
@ stub LsSqueezeSubline
@ stub LsTruncateSubline
@ stub LsdnDistribute
@ stub LsdnFinishByOneChar
@ stub LsdnFinishByPen
@ stub LsdnFinishBySubline
@ stub LsdnFinishDelete
@ stub LsdnFinishDeleteAll
@ stub LsdnFinishRegular
@ stub LsdnFinishRegularAddAdvancePen
@ stub LsdnGetCurTabInfo
@ stub LsdnGetDup
@ stub LsdnGetFormatDepth
@ stub LsdnModifyParaEnding
@ stub LsdnQueryObjDimRange
@ stub LsdnQueryPenNode
@ stub LsdnResetObjDim
@ stub LsdnResetPenNode
@ stub LsdnResolvePrevTab
@ stub LsdnSetAbsBaseLine
@ stub LsdnSetRigidDup
@ stub LsdnSkipCurTab
@ stub LsdnSubmitSublines
@ stub LssbFDoneDisplay
@ stub LssbFDonePresSubline
@ stub LssbFIsSublineEmpty
@ stub LssbGetDupSubline
@ stub LssbGetDurTrailInSubline
@ stub LssbGetDurTrailWithPensInSubline
@ stub LssbGetNumberDnodesInSubline
@ stub LssbGetObjDimSubline
@ stub LssbGetPlsrunsFromSubline
@ stub LssbGetVisibleDcpInSubline
/*
* msls31.dll
*
* Copyright 2012 Josh DuBois for CodeWeavers
*
* 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., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include "config.h"
#include <stdarg.h>
#include "windef.h"
#include "winbase.h"
#include "wine/debug.h"
WINE_DEFAULT_DEBUG_CHANNEL(msls31);
BOOL WINAPI DllMain(HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpvReserved)
{
TRACE("(%p, %d, %p)\n", hinstDLL, fdwReason, lpvReserved);
switch (fdwReason)
{
case DLL_WINE_PREATTACH:
return FALSE; /* prefer native version */
case DLL_PROCESS_ATTACH:
DisableThreadLibraryCalls(hinstDLL);
break;
}
return TRUE;
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment