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
a9532c96
Commit
a9532c96
authored
Jan 07, 2009
by
Francois Gouget
Committed by
Alexandre Julliard
Jan 07, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
oleview: Make some functions static.
parent
df05a90a
Show whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
11 additions
and
11 deletions
+11
-11
details.c
programs/oleview/details.c
+1
-1
interface.c
programs/oleview/interface.c
+1
-1
oleview.c
programs/oleview/oleview.c
+3
-3
pane.c
programs/oleview/pane.c
+1
-1
tree.c
programs/oleview/tree.c
+1
-1
typelib.c
programs/oleview/typelib.c
+4
-4
No files found.
programs/oleview/details.c
View file @
a9532c96
...
...
@@ -350,7 +350,7 @@ static void CreateTabCtrl(HWND hWnd)
0
,
0
,
0
,
0
,
details
.
hTab
,
NULL
,
globals
.
hMainInst
,
NULL
);
}
LRESULT
CALLBACK
DetailsProc
(
HWND
hWnd
,
UINT
uMsg
,
WPARAM
wParam
,
LPARAM
lParam
)
static
LRESULT
CALLBACK
DetailsProc
(
HWND
hWnd
,
UINT
uMsg
,
WPARAM
wParam
,
LPARAM
lParam
)
{
int
sel
;
...
...
programs/oleview/interface.c
View file @
a9532c96
...
...
@@ -63,7 +63,7 @@ static IUnknown *GetInterface(void)
return
unk
;
}
INT_PTR
CALLBACK
InterfaceViewerProc
(
HWND
hDlgWnd
,
UINT
uMsg
,
static
INT_PTR
CALLBACK
InterfaceViewerProc
(
HWND
hDlgWnd
,
UINT
uMsg
,
WPARAM
wParam
,
LPARAM
lParam
)
{
DIALOG_INFO
*
di
;
...
...
programs/oleview/oleview.c
View file @
a9532c96
...
...
@@ -26,7 +26,7 @@ static WCHAR wszFormat[] = { '<','o','b','j','e','c','t','\n',' ',' ',' ',
'c'
,
'l'
,
'a'
,
's'
,
's'
,
'i'
,
'd'
,
'='
,
'\"'
,
'c'
,
'l'
,
's'
,
'i'
,
'd'
,
':'
,
'%'
,
's'
,
'\"'
,
'\n'
,
'>'
,
'\n'
,
'<'
,
'/'
,
'o'
,
'b'
,
'j'
,
'e'
,
'c'
,
't'
,
'>'
,
'\0'
};
INT_PTR
CALLBACK
SysConfProc
(
HWND
hDlgWnd
,
UINT
uMsg
,
WPARAM
wParam
,
LPARAM
lParam
)
static
INT_PTR
CALLBACK
SysConfProc
(
HWND
hDlgWnd
,
UINT
uMsg
,
WPARAM
wParam
,
LPARAM
lParam
)
{
HKEY
hKey
;
WCHAR
buffer
[
MAX_LOAD_STRING
];
...
...
@@ -98,7 +98,7 @@ INT_PTR CALLBACK SysConfProc(HWND hDlgWnd, UINT uMsg, WPARAM wParam, LPARAM lPar
return
FALSE
;
}
INT_PTR
CALLBACK
CreateInstOnProc
(
HWND
hDlgWnd
,
UINT
uMsg
,
WPARAM
wParam
,
LPARAM
lParam
)
static
INT_PTR
CALLBACK
CreateInstOnProc
(
HWND
hDlgWnd
,
UINT
uMsg
,
WPARAM
wParam
,
LPARAM
lParam
)
{
HWND
hEdit
;
...
...
@@ -431,7 +431,7 @@ static void UpdateStatusBar(int itemID)
SendMessage
(
globals
.
hStatusBar
,
SB_SETTEXT
,
0
,
(
LPARAM
)
info
);
}
LRESULT
CALLBACK
WndProc
(
HWND
hWnd
,
UINT
uMsg
,
static
LRESULT
CALLBACK
WndProc
(
HWND
hWnd
,
UINT
uMsg
,
WPARAM
wParam
,
LPARAM
lParam
)
{
switch
(
uMsg
)
...
...
programs/oleview/pane.c
View file @
a9532c96
...
...
@@ -57,7 +57,7 @@ static void DrawSplitMoving(HWND hWnd, int x)
ReleaseDC
(
hWnd
,
hdc
);
}
LRESULT
CALLBACK
PaneProc
(
HWND
hWnd
,
UINT
uMsg
,
WPARAM
wParam
,
LPARAM
lParam
)
static
LRESULT
CALLBACK
PaneProc
(
HWND
hWnd
,
UINT
uMsg
,
WPARAM
wParam
,
LPARAM
lParam
)
{
POINT
pt
;
PANE
*
pane
=
(
PANE
*
)
GetMenu
(
hWnd
);
...
...
programs/oleview/tree.c
View file @
a9532c96
...
...
@@ -646,7 +646,7 @@ void AddTree(void)
AddCOMandAll
();
}
LRESULT
CALLBACK
TreeProc
(
HWND
hWnd
,
UINT
uMsg
,
WPARAM
wParam
,
LPARAM
lParam
)
static
LRESULT
CALLBACK
TreeProc
(
HWND
hWnd
,
UINT
uMsg
,
WPARAM
wParam
,
LPARAM
lParam
)
{
switch
(
uMsg
)
{
...
...
programs/oleview/typelib.c
View file @
a9532c96
...
...
@@ -189,12 +189,12 @@ static void GetSaveIdlAsPath(void)
SaveIdl
(
wszPath
);
}
void
AddToStrW
(
WCHAR
*
wszDest
,
const
WCHAR
*
wszSource
)
static
void
AddToStrW
(
WCHAR
*
wszDest
,
const
WCHAR
*
wszSource
)
{
lstrcpyW
(
&
wszDest
[
lstrlenW
(
wszDest
)],
wszSource
);
}
void
AddToTLDataStrW
(
TYPELIB_DATA
*
pTLData
,
const
WCHAR
*
wszSource
)
static
void
AddToTLDataStrW
(
TYPELIB_DATA
*
pTLData
,
const
WCHAR
*
wszSource
)
{
int
SourceLen
=
lstrlenW
(
wszSource
);
...
...
@@ -205,7 +205,7 @@ void AddToTLDataStrW(TYPELIB_DATA *pTLData, const WCHAR *wszSource)
pTLData
->
idlLen
+=
SourceLen
;
}
void
AddToTLDataStrWithTabsW
(
TYPELIB_DATA
*
pTLData
,
WCHAR
*
wszSource
)
static
void
AddToTLDataStrWithTabsW
(
TYPELIB_DATA
*
pTLData
,
WCHAR
*
wszSource
)
{
int
lineLen
=
lstrlenW
(
wszSource
);
int
newLinesNo
=
0
;
...
...
@@ -1552,7 +1552,7 @@ static void EmptyTLTree(void)
}
}
LRESULT
CALLBACK
TypeLibProc
(
HWND
hWnd
,
UINT
uMsg
,
WPARAM
wParam
,
LPARAM
lParam
)
static
LRESULT
CALLBACK
TypeLibProc
(
HWND
hWnd
,
UINT
uMsg
,
WPARAM
wParam
,
LPARAM
lParam
)
{
switch
(
uMsg
)
{
...
...
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