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
d5e7c792
Commit
d5e7c792
authored
Dec 09, 1998
by
Marcus Meissner
Committed by
Alexandre Julliard
Dec 09, 1998
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Some unnecessary #include and messages removed.
parent
b741528f
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
9 additions
and
18 deletions
+9
-18
menu.c
controls/menu.c
+2
-2
scroll.c
controls/scroll.c
+0
-3
change.c
files/change.c
+0
-1
module.c
loader/module.c
+3
-1
lzexpand.c
misc/lzexpand.c
+0
-5
main.c
misc/main.c
+1
-2
time.c
multimedia/time.c
+0
-1
compobj.c
ole/compobj.c
+3
-3
No files found.
controls/menu.c
View file @
d5e7c792
...
...
@@ -18,10 +18,9 @@
#include <string.h>
#include "windows.h"
#include "bitmap.h"
#include "
gdi
.h"
#include "
win
.h"
#include "sysmetrics.h"
#include "task.h"
#include "win.h"
#include "heap.h"
#include "module.h"
#include "neexe.h"
...
...
@@ -30,6 +29,7 @@
#include "message.h"
#include "resource.h"
#include "tweak.h"
#include "debug.h"
...
...
controls/scroll.c
View file @
d5e7c792
...
...
@@ -5,9 +5,6 @@
* Copyright 1994, 1996 Alexandre Julliard
*/
#include <stdlib.h>
#include <sys/types.h>
#include <sys/stat.h>
#include "windows.h"
#include "sysmetrics.h"
#include "scroll.h"
...
...
files/change.c
View file @
d5e7c792
...
...
@@ -4,7 +4,6 @@
* Copyright 1998 Ulrich Weigand
*/
#include <errno.h>
#include <assert.h>
#include <stdlib.h>
#include <unistd.h>
...
...
loader/module.c
View file @
d5e7c792
...
...
@@ -95,6 +95,9 @@ static void MODULE_DoInitializeDLLs( PDB32 *process, WINE_MODREF *wm,
PE_InitDLL
(
wm
,
type
,
lpReserved
);
break
;
case
MODULE32_ELF
:
/* no need to do that, dlopen() already does */
break
;
default:
ERR
(
module
,
"wine_modref type %d not handled.
\n
"
,
wm
->
type
);
break
;
...
...
@@ -579,7 +582,6 @@ BOOL32 WINAPI CreateProcess32A( LPCSTR lpApplicationName, LPSTR lpCommandLine,
lstrcpyn32A
(
name
,
lpCommandLine
,
len
);
if
(
!
strchr
(
name
,
'\\'
)
&&
!
strchr
(
name
,
'.'
))
strcat
(
name
,
".exe"
);
fprintf
(
stderr
,
"looking for: %s
\n
"
,
name
);
if
(
GetFileAttributes32A
(
name
)
!=-
1
)
break
;
/* if there is a space and no file found yet, include the word
...
...
misc/lzexpand.c
View file @
d5e7c792
...
...
@@ -7,16 +7,11 @@
* FIXME: return values might be wrong
*/
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include <ctype.h>
#include <sys/types.h>
#include <sys/stat.h>
#include "windows.h"
#include "file.h"
#include "heap.h"
#include "ldt.h"
#include "lzexpand.h"
#include "debug.h"
...
...
misc/main.c
View file @
d5e7c792
...
...
@@ -9,9 +9,8 @@
#include <string.h>
#include <unistd.h>
#include <ctype.h>
/* #include <locale.h> */
#ifdef MALLOC_DEBUGGING
#include <malloc.h>
#
include <malloc.h>
#endif
#include "ts_xlib.h"
#include "ts_xresource.h"
...
...
multimedia/time.c
View file @
d5e7c792
...
...
@@ -92,7 +92,6 @@ static void TIME_TriggerCallBack(LPTIMERENTRY lpTimer, DWORD dwCurrent)
break
;
}
TRACE
(
mmtime
,
"after CallBack16 !
\n
"
);
fflush
(
stdout
);
}
if
(
lpTimer
->
wFlags
&
TIME_ONESHOT
)
timeKillEvent32
(
lpTimer
->
wTimerID
);
...
...
ole/compobj.c
View file @
d5e7c792
...
...
@@ -768,13 +768,13 @@ HRESULT WINAPI CoGetClassObject(REFCLSID rclsid, DWORD dwClsContext,
if
(
hres
!=
ERROR_SUCCESS
)
{
RegCloseKey
(
CLSIDkey
);
return
REGDB_E_CLASSNOTREG
;
}
hres
=
RegQueryValue32A
(
key
,
"InprocServer32"
,
dllName
,
&
dllNameLen
);
}
hres
=
RegQueryValue32A
(
key
,
"InprocServer32"
,
dllName
,
&
dllNameLen
);
RegCloseKey
(
key
);
RegCloseKey
(
CLSIDkey
);
if
(
hres
!=
ERROR_SUCCESS
)
return
REGDB_E_READREGDB
;
TRACE
(
ole
,
"found InprocServer32 dll %s
\n
"
,
dllName
);
TRACE
(
ole
,
"found InprocServer32 dll %s
\n
"
,
dllName
);
/* open dll, call DllGetClassFactory */
hLibrary
=
CoLoadLibrary
(
dllName
,
TRUE
);
...
...
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