Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
30346232
Commit
30346232
authored
May 01, 2008
by
Eric Pouech
Committed by
Alexandre Julliard
May 02, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
winhelp: Get rid of the old internal rendering.
parent
10e676ab
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
0 additions
and
39 deletions
+0
-39
string.c
programs/winhelp/string.c
+0
-1
winhelp.c
programs/winhelp/winhelp.c
+0
-0
winhelp.h
programs/winhelp/winhelp.h
+0
-38
No files found.
programs/winhelp/string.c
View file @
30346232
...
...
@@ -22,7 +22,6 @@
const
char
MAIN_WIN_CLASS_NAME
[]
=
"MS_WINHELP"
;
const
char
BUTTON_BOX_WIN_CLASS_NAME
[]
=
"WHButtonBox"
;
const
char
TEXT_WIN_CLASS_NAME
[]
=
"WHText"
;
const
char
SHADOW_WIN_CLASS_NAME
[]
=
"WHShadow"
;
const
char
HISTORY_WIN_CLASS_NAME
[]
=
"WHHistory"
;
const
char
STRING_BUTTON
[]
=
"BUTTON"
;
...
...
programs/winhelp/winhelp.c
View file @
30346232
This diff is collapsed.
Click to expand it.
programs/winhelp/winhelp.h
View file @
30346232
...
...
@@ -40,42 +40,6 @@
#include "macro.h"
#include "winhelp_res.h"
typedef
struct
tagHelpLinePart
{
RECT
rect
;
enum
{
hlp_line_part_text
,
hlp_line_part_bitmap
,
hlp_line_part_metafile
}
cookie
;
union
{
struct
{
LPCSTR
lpsText
;
HFONT
hFont
;
COLORREF
color
;
WORD
wTextLen
;
WORD
wUnderline
;
/* 0 None, 1 simple, 2 double, 3 dotted */
}
text
;
struct
{
HBITMAP
hBitmap
;
}
bitmap
;
struct
{
HMETAFILE
hMetaFile
;
INT
mm
;
}
metafile
;
}
u
;
HLPFILE_LINK
*
link
;
struct
tagHelpLinePart
*
next
;
}
WINHELP_LINE_PART
;
typedef
struct
tagHelpLine
{
RECT
rect
;
WINHELP_LINE_PART
first_part
;
struct
tagHelpLine
*
next
;
}
WINHELP_LINE
;
typedef
struct
tagHelpButton
{
HWND
hWnd
;
...
...
@@ -111,7 +75,6 @@ typedef struct tagWinHelp
WINHELP_BUTTON
*
first_button
;
HLPFILE_PAGE
*
page
;
WINHELP_LINE
*
first_line
;
HWND
hMainWnd
;
HWND
hShadowWnd
;
...
...
@@ -120,7 +83,6 @@ typedef struct tagWinHelp
HFONT
*
fonts
;
UINT
fonts_len
;
HCURSOR
hArrowCur
;
HCURSOR
hHandCur
;
HBRUSH
hBrush
;
...
...
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