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
c8225669
Commit
c8225669
authored
Mar 29, 2005
by
Vincent Béron
Committed by
Alexandre Julliard
Mar 29, 2005
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Change prototypes so gcc with some warnings doesn't bark.
parent
f4db2e3a
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
8 deletions
+8
-8
clipboard.c
dlls/ole32/clipboard.c
+6
-6
ole2.c
dlls/ole32/ole2.c
+2
-2
No files found.
dlls/ole32/clipboard.c
View file @
c8225669
...
...
@@ -172,11 +172,11 @@ static OLEClipbrd* theOleClipboard = NULL;
/*
* Prototypes for the methods of the OLEClipboard class.
*/
extern
void
OLEClipbrd_Initialize
(
);
extern
void
OLEClipbrd_UnInitialize
(
);
static
OLEClipbrd
*
OLEClipbrd_Construct
();
void
OLEClipbrd_Initialize
(
void
);
void
OLEClipbrd_UnInitialize
(
void
);
static
OLEClipbrd
*
OLEClipbrd_Construct
(
void
);
static
void
OLEClipbrd_Destroy
(
OLEClipbrd
*
ptrToDestroy
);
static
HWND
OLEClipbrd_CreateWindow
();
static
HWND
OLEClipbrd_CreateWindow
(
void
);
static
void
OLEClipbrd_DestroyWindow
(
HWND
hwnd
);
LRESULT
CALLBACK
OLEClipbrd_WndProc
(
HWND
hWnd
,
UINT
message
,
WPARAM
wParam
,
LPARAM
lParam
);
static
HRESULT
OLEClipbrd_RenderFormat
(
IDataObject
*
pIDataObject
,
LPFORMATETC
pFormatetc
);
...
...
@@ -610,7 +610,7 @@ HRESULT WINAPI OleIsCurrentClipboard ( IDataObject *pDataObject)
* OLEClipbrd_Initialize()
* Initializes the OLE clipboard.
*/
void
OLEClipbrd_Initialize
()
void
OLEClipbrd_Initialize
(
void
)
{
/*
* Create the clipboard if necessary
...
...
@@ -627,7 +627,7 @@ void OLEClipbrd_Initialize()
* OLEClipbrd_UnInitialize()
* Un-Initializes the OLE clipboard
*/
void
OLEClipbrd_UnInitialize
()
void
OLEClipbrd_UnInitialize
(
void
)
{
TRACE
(
"()
\n
"
);
/*
...
...
dlls/ole32/ole2.c
View file @
c8225669
...
...
@@ -143,8 +143,8 @@ LRESULT CALLBACK OLEMenu_GetMsgProc(INT code, WPARAM wParam, LPARAM lParam);
/******************************************************************************
* These are the prototypes of the OLE Clipboard initialization methods (in clipboard.c)
*/
void
OLEClipbrd_UnInitialize
(
void
);
void
OLEClipbrd_Initialize
(
void
);
extern
void
OLEClipbrd_UnInitialize
(
void
);
extern
void
OLEClipbrd_Initialize
(
void
);
/******************************************************************************
* These are the prototypes of the utility methods used for OLE Drag n Drop
...
...
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