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
598a7f6e
Commit
598a7f6e
authored
May 13, 2011
by
Marcus Meissner
Committed by
Alexandre Julliard
May 24, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
riched20: Mark internal symbols with hidden visibility.
parent
de379263
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
44 additions
and
44 deletions
+44
-44
editor.h
dlls/riched20/editor.h
+0
-0
rtf.h
dlls/riched20/rtf.h
+26
-26
txthost.c
dlls/riched20/txthost.c
+0
-0
txtsrv.c
dlls/riched20/txtsrv.c
+18
-18
No files found.
dlls/riched20/editor.h
View file @
598a7f6e
This diff is collapsed.
Click to expand it.
dlls/riched20/rtf.h
View file @
598a7f6e
...
...
@@ -1186,31 +1186,31 @@ struct _RTF_Info {
* Public RTF reader routines
*/
void
RTFInit
(
RTF_Info
*
);
void
RTFDestroy
(
RTF_Info
*
info
);
void
RTFSetDestinationCallback
(
RTF_Info
*
,
int
,
RTFFuncPtr
);
void
RTFRead
(
RTF_Info
*
);
int
RTFGetToken
(
RTF_Info
*
);
/* writer should rarely need this */
void
RTFSetReadHook
(
RTF_Info
*
,
RTFFuncPtr
);
void
RTFRouteToken
(
RTF_Info
*
);
void
RTFSkipGroup
(
RTF_Info
*
);
void
RTFReadGroup
(
RTF_Info
*
);
int
RTFCheckCM
(
const
RTF_Info
*
,
int
,
int
);
int
RTFCheckCMM
(
const
RTF_Info
*
,
int
,
int
,
int
);
int
RTFCheckMM
(
const
RTF_Info
*
,
int
,
int
);
RTFFont
*
RTFGetFont
(
const
RTF_Info
*
,
int
);
RTFColor
*
RTFGetColor
(
const
RTF_Info
*
,
int
);
int
RTFCharToHex
(
char
);
void
RTFFlushOutputBuffer
(
RTF_Info
*
info
);
void
RTFSetEditStream
(
RTF_Info
*
info
,
ME_InStream
*
stream
);
void
WriterInit
(
RTF_Info
*
);
int
BeginFile
(
RTF_Info
*
);
int
RTFCharSetToCodePage
(
RTF_Info
*
info
,
int
charset
);
void
LookupInit
(
void
);
void
LookupCleanup
(
void
);
void
RTFInit
(
RTF_Info
*
)
DECLSPEC_HIDDEN
;
void
RTFDestroy
(
RTF_Info
*
info
)
DECLSPEC_HIDDEN
;
void
RTFSetDestinationCallback
(
RTF_Info
*
,
int
,
RTFFuncPtr
)
DECLSPEC_HIDDEN
;
void
RTFRead
(
RTF_Info
*
)
DECLSPEC_HIDDEN
;
int
RTFGetToken
(
RTF_Info
*
)
DECLSPEC_HIDDEN
;
/* writer should rarely need this */
void
RTFSetReadHook
(
RTF_Info
*
,
RTFFuncPtr
)
DECLSPEC_HIDDEN
;
void
RTFRouteToken
(
RTF_Info
*
)
DECLSPEC_HIDDEN
;
void
RTFSkipGroup
(
RTF_Info
*
)
DECLSPEC_HIDDEN
;
void
RTFReadGroup
(
RTF_Info
*
)
DECLSPEC_HIDDEN
;
int
RTFCheckCM
(
const
RTF_Info
*
,
int
,
int
)
DECLSPEC_HIDDEN
;
int
RTFCheckCMM
(
const
RTF_Info
*
,
int
,
int
,
int
)
DECLSPEC_HIDDEN
;
int
RTFCheckMM
(
const
RTF_Info
*
,
int
,
int
)
DECLSPEC_HIDDEN
;
RTFFont
*
RTFGetFont
(
const
RTF_Info
*
,
int
)
DECLSPEC_HIDDEN
;
RTFColor
*
RTFGetColor
(
const
RTF_Info
*
,
int
)
DECLSPEC_HIDDEN
;
int
RTFCharToHex
(
char
)
DECLSPEC_HIDDEN
;
void
RTFFlushOutputBuffer
(
RTF_Info
*
info
)
DECLSPEC_HIDDEN
;
void
RTFSetEditStream
(
RTF_Info
*
info
,
ME_InStream
*
stream
)
DECLSPEC_HIDDEN
;
void
WriterInit
(
RTF_Info
*
)
DECLSPEC_HIDDEN
;
int
BeginFile
(
RTF_Info
*
)
DECLSPEC_HIDDEN
;
int
RTFCharSetToCodePage
(
RTF_Info
*
info
,
int
charset
)
DECLSPEC_HIDDEN
;
void
LookupInit
(
void
)
DECLSPEC_HIDDEN
;
void
LookupCleanup
(
void
)
DECLSPEC_HIDDEN
;
#endif
dlls/riched20/txthost.c
View file @
598a7f6e
This diff is collapsed.
Click to expand it.
dlls/riched20/txtsrv.c
View file @
598a7f6e
...
...
@@ -155,7 +155,7 @@ static ULONG WINAPI fnTextSrv_Release(ITextServices *iface)
return
ref
;
}
HRESULT
WINAPI
fnTextSrv_TxSendMessage
(
ITextServices
*
iface
,
UINT
msg
,
WPARAM
wparam
,
DECLSPEC_HIDDEN
HRESULT
WINAPI
fnTextSrv_TxSendMessage
(
ITextServices
*
iface
,
UINT
msg
,
WPARAM
wparam
,
LPARAM
lparam
,
LRESULT
*
plresult
)
{
ITextServicesImpl
*
This
=
impl_from_ITextServices
(
iface
);
...
...
@@ -167,7 +167,7 @@ HRESULT WINAPI fnTextSrv_TxSendMessage(ITextServices *iface, UINT msg, WPARAM wp
return
hresult
;
}
HRESULT
WINAPI
fnTextSrv_TxDraw
(
ITextServices
*
iface
,
DWORD
dwDrawAspect
,
LONG
lindex
,
DECLSPEC_HIDDEN
HRESULT
WINAPI
fnTextSrv_TxDraw
(
ITextServices
*
iface
,
DWORD
dwDrawAspect
,
LONG
lindex
,
void
*
pvAspect
,
DVTARGETDEVICE
*
ptd
,
HDC
hdcDraw
,
HDC
hdcTargetDev
,
LPCRECTL
lprcBounds
,
LPCRECTL
lprcWBounds
,
LPRECT
lprcUpdate
,
BOOL
(
CALLBACK
*
pfnContinue
)(
DWORD
),
DWORD
dwContinue
,
...
...
@@ -179,7 +179,7 @@ HRESULT WINAPI fnTextSrv_TxDraw(ITextServices *iface, DWORD dwDrawAspect, LONG l
return
E_NOTIMPL
;
}
HRESULT
WINAPI
fnTextSrv_TxGetHScroll
(
ITextServices
*
iface
,
LONG
*
plMin
,
LONG
*
plMax
,
LONG
*
plPos
,
DECLSPEC_HIDDEN
HRESULT
WINAPI
fnTextSrv_TxGetHScroll
(
ITextServices
*
iface
,
LONG
*
plMin
,
LONG
*
plMax
,
LONG
*
plPos
,
LONG
*
plPage
,
BOOL
*
pfEnabled
)
{
ITextServicesImpl
*
This
=
impl_from_ITextServices
(
iface
);
...
...
@@ -192,7 +192,7 @@ HRESULT WINAPI fnTextSrv_TxGetHScroll(ITextServices *iface, LONG *plMin, LONG *p
return
S_OK
;
}
HRESULT
WINAPI
fnTextSrv_TxGetVScroll
(
ITextServices
*
iface
,
LONG
*
plMin
,
LONG
*
plMax
,
LONG
*
plPos
,
DECLSPEC_HIDDEN
HRESULT
WINAPI
fnTextSrv_TxGetVScroll
(
ITextServices
*
iface
,
LONG
*
plMin
,
LONG
*
plMax
,
LONG
*
plPos
,
LONG
*
plPage
,
BOOL
*
pfEnabled
)
{
ITextServicesImpl
*
This
=
impl_from_ITextServices
(
iface
);
...
...
@@ -205,7 +205,7 @@ HRESULT WINAPI fnTextSrv_TxGetVScroll(ITextServices *iface, LONG *plMin, LONG *p
return
S_OK
;
}
HRESULT
WINAPI
fnTextSrv_OnTxSetCursor
(
ITextServices
*
iface
,
DWORD
dwDrawAspect
,
LONG
lindex
,
DECLSPEC_HIDDEN
HRESULT
WINAPI
fnTextSrv_OnTxSetCursor
(
ITextServices
*
iface
,
DWORD
dwDrawAspect
,
LONG
lindex
,
void
*
pvAspect
,
DVTARGETDEVICE
*
ptd
,
HDC
hdcDraw
,
HDC
hicTargetDev
,
LPCRECT
lprcClient
,
INT
x
,
INT
y
)
{
...
...
@@ -215,7 +215,7 @@ HRESULT WINAPI fnTextSrv_OnTxSetCursor(ITextServices *iface, DWORD dwDrawAspect,
return
E_NOTIMPL
;
}
HRESULT
WINAPI
fnTextSrv_TxQueryHitPoint
(
ITextServices
*
iface
,
DWORD
dwDrawAspect
,
LONG
lindex
,
DECLSPEC_HIDDEN
HRESULT
WINAPI
fnTextSrv_TxQueryHitPoint
(
ITextServices
*
iface
,
DWORD
dwDrawAspect
,
LONG
lindex
,
void
*
pvAspect
,
DVTARGETDEVICE
*
ptd
,
HDC
hdcDraw
,
HDC
hicTargetDev
,
LPCRECT
lprcClient
,
INT
x
,
INT
y
,
DWORD
*
pHitResult
)
...
...
@@ -226,7 +226,7 @@ HRESULT WINAPI fnTextSrv_TxQueryHitPoint(ITextServices *iface, DWORD dwDrawAspec
return
E_NOTIMPL
;
}
HRESULT
WINAPI
fnTextSrv_OnTxInplaceActivate
(
ITextServices
*
iface
,
LPCRECT
prcClient
)
DECLSPEC_HIDDEN
HRESULT
WINAPI
fnTextSrv_OnTxInplaceActivate
(
ITextServices
*
iface
,
LPCRECT
prcClient
)
{
ITextServicesImpl
*
This
=
impl_from_ITextServices
(
iface
);
...
...
@@ -234,7 +234,7 @@ HRESULT WINAPI fnTextSrv_OnTxInplaceActivate(ITextServices *iface, LPCRECT prcCl
return
E_NOTIMPL
;
}
HRESULT
WINAPI
fnTextSrv_OnTxInplaceDeactivate
(
ITextServices
*
iface
)
DECLSPEC_HIDDEN
HRESULT
WINAPI
fnTextSrv_OnTxInplaceDeactivate
(
ITextServices
*
iface
)
{
ITextServicesImpl
*
This
=
impl_from_ITextServices
(
iface
);
...
...
@@ -242,7 +242,7 @@ HRESULT WINAPI fnTextSrv_OnTxInplaceDeactivate(ITextServices *iface)
return
E_NOTIMPL
;
}
HRESULT
WINAPI
fnTextSrv_OnTxUIActivate
(
ITextServices
*
iface
)
DECLSPEC_HIDDEN
HRESULT
WINAPI
fnTextSrv_OnTxUIActivate
(
ITextServices
*
iface
)
{
ITextServicesImpl
*
This
=
impl_from_ITextServices
(
iface
);
...
...
@@ -250,7 +250,7 @@ HRESULT WINAPI fnTextSrv_OnTxUIActivate(ITextServices *iface)
return
E_NOTIMPL
;
}
HRESULT
WINAPI
fnTextSrv_OnTxUIDeactivate
(
ITextServices
*
iface
)
DECLSPEC_HIDDEN
HRESULT
WINAPI
fnTextSrv_OnTxUIDeactivate
(
ITextServices
*
iface
)
{
ITextServicesImpl
*
This
=
impl_from_ITextServices
(
iface
);
...
...
@@ -258,7 +258,7 @@ HRESULT WINAPI fnTextSrv_OnTxUIDeactivate(ITextServices *iface)
return
E_NOTIMPL
;
}
HRESULT
WINAPI
fnTextSrv_TxGetText
(
ITextServices
*
iface
,
BSTR
*
pbstrText
)
DECLSPEC_HIDDEN
HRESULT
WINAPI
fnTextSrv_TxGetText
(
ITextServices
*
iface
,
BSTR
*
pbstrText
)
{
ITextServicesImpl
*
This
=
impl_from_ITextServices
(
iface
);
int
length
;
...
...
@@ -282,7 +282,7 @@ HRESULT WINAPI fnTextSrv_TxGetText(ITextServices *iface, BSTR *pbstrText)
return
S_OK
;
}
HRESULT
WINAPI
fnTextSrv_TxSetText
(
ITextServices
*
iface
,
LPCWSTR
pszText
)
DECLSPEC_HIDDEN
HRESULT
WINAPI
fnTextSrv_TxSetText
(
ITextServices
*
iface
,
LPCWSTR
pszText
)
{
ITextServicesImpl
*
This
=
impl_from_ITextServices
(
iface
);
ME_Cursor
cursor
;
...
...
@@ -301,7 +301,7 @@ HRESULT WINAPI fnTextSrv_TxSetText(ITextServices *iface, LPCWSTR pszText)
return
S_OK
;
}
HRESULT
WINAPI
fnTextSrv_TxGetCurrentTargetX
(
ITextServices
*
iface
,
LONG
*
x
)
DECLSPEC_HIDDEN
HRESULT
WINAPI
fnTextSrv_TxGetCurrentTargetX
(
ITextServices
*
iface
,
LONG
*
x
)
{
ITextServicesImpl
*
This
=
impl_from_ITextServices
(
iface
);
...
...
@@ -309,7 +309,7 @@ HRESULT WINAPI fnTextSrv_TxGetCurrentTargetX(ITextServices *iface, LONG *x)
return
E_NOTIMPL
;
}
HRESULT
WINAPI
fnTextSrv_TxGetBaseLinePos
(
ITextServices
*
iface
,
LONG
*
x
)
DECLSPEC_HIDDEN
HRESULT
WINAPI
fnTextSrv_TxGetBaseLinePos
(
ITextServices
*
iface
,
LONG
*
x
)
{
ITextServicesImpl
*
This
=
impl_from_ITextServices
(
iface
);
...
...
@@ -317,7 +317,7 @@ HRESULT WINAPI fnTextSrv_TxGetBaseLinePos(ITextServices *iface, LONG *x)
return
E_NOTIMPL
;
}
HRESULT
WINAPI
fnTextSrv_TxGetNaturalSize
(
ITextServices
*
iface
,
DWORD
dwAspect
,
HDC
hdcDraw
,
DECLSPEC_HIDDEN
HRESULT
WINAPI
fnTextSrv_TxGetNaturalSize
(
ITextServices
*
iface
,
DWORD
dwAspect
,
HDC
hdcDraw
,
HDC
hicTargetDev
,
DVTARGETDEVICE
*
ptd
,
DWORD
dwMode
,
const
SIZEL
*
psizelExtent
,
LONG
*
pwidth
,
LONG
*
pheight
)
{
...
...
@@ -327,7 +327,7 @@ HRESULT WINAPI fnTextSrv_TxGetNaturalSize(ITextServices *iface, DWORD dwAspect,
return
E_NOTIMPL
;
}
HRESULT
WINAPI
fnTextSrv_TxGetDropTarget
(
ITextServices
*
iface
,
IDropTarget
**
ppDropTarget
)
DECLSPEC_HIDDEN
HRESULT
WINAPI
fnTextSrv_TxGetDropTarget
(
ITextServices
*
iface
,
IDropTarget
**
ppDropTarget
)
{
ITextServicesImpl
*
This
=
impl_from_ITextServices
(
iface
);
...
...
@@ -335,7 +335,7 @@ HRESULT WINAPI fnTextSrv_TxGetDropTarget(ITextServices *iface, IDropTarget **ppD
return
E_NOTIMPL
;
}
HRESULT
WINAPI
fnTextSrv_OnTxPropertyBitsChange
(
ITextServices
*
iface
,
DWORD
dwMask
,
DWORD
dwBits
)
DECLSPEC_HIDDEN
HRESULT
WINAPI
fnTextSrv_OnTxPropertyBitsChange
(
ITextServices
*
iface
,
DWORD
dwMask
,
DWORD
dwBits
)
{
ITextServicesImpl
*
This
=
impl_from_ITextServices
(
iface
);
...
...
@@ -343,7 +343,7 @@ HRESULT WINAPI fnTextSrv_OnTxPropertyBitsChange(ITextServices *iface, DWORD dwMa
return
E_NOTIMPL
;
}
HRESULT
WINAPI
fnTextSrv_TxGetCachedSize
(
ITextServices
*
iface
,
DWORD
*
pdwWidth
,
DWORD
*
pdwHeight
)
DECLSPEC_HIDDEN
HRESULT
WINAPI
fnTextSrv_TxGetCachedSize
(
ITextServices
*
iface
,
DWORD
*
pdwWidth
,
DWORD
*
pdwHeight
)
{
ITextServicesImpl
*
This
=
impl_from_ITextServices
(
iface
);
...
...
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