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
8aa79fbe
Commit
8aa79fbe
authored
Sep 29, 2000
by
Francois Gouget
Committed by
Alexandre Julliard
Sep 29, 2000
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Moved DLLVERSIONINFO to shlwapi.h.
parent
e983dbbc
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
16 additions
and
8 deletions
+16
-8
commctrl.c
dlls/comctl32/commctrl.c
+1
-0
richedit.c
dlls/richedit/richedit.c
+1
-0
shlwapi_main.c
dlls/shlwapi/shlwapi_main.c
+1
-0
shlwapi.h
include/shlwapi.h
+13
-0
winbase.h
include/winbase.h
+0
-8
No files found.
dlls/comctl32/commctrl.c
View file @
8aa79fbe
...
...
@@ -13,6 +13,7 @@
#include "commctrl.h"
#include "debugtools.h"
#include "winerror.h"
#include "shlwapi.h"
DEFAULT_DEBUG_CHANNEL
(
commctrl
);
...
...
dlls/richedit/richedit.c
View file @
8aa79fbe
...
...
@@ -17,6 +17,7 @@
#include "riched32.h"
#include "richedit.h"
#include "charlist.h"
#include "shlwapi.h"
#include "rtf.h"
#include "rtf2text.h"
...
...
dlls/shlwapi/shlwapi_main.c
View file @
8aa79fbe
...
...
@@ -12,6 +12,7 @@
#include "initguid.h"
#include "wine/obj_base.h"
#include "wine/obj_storage.h"
#include "shlwapi.h"
DEFAULT_DEBUG_CHANNEL
(
shell
);
...
...
include/shlwapi.h
View file @
8aa79fbe
...
...
@@ -130,6 +130,19 @@ DWORD WINAPI SHDeleteEmptyKeyA(HKEY hKey, LPCSTR lpszSubKey);
DWORD
WINAPI
SHDeleteEmptyKeyW
(
HKEY
hKey
,
LPCWSTR
lpszSubKey
);
#define SHDeleteEmptyKey WINELIB_NAME_AW(SHDeleteEmptyKey)
typedef
struct
_DllVersionInfo
{
DWORD
cbSize
;
DWORD
dwMajorVersion
;
DWORD
dwMinorVersion
;
DWORD
dwBuildNumber
;
DWORD
dwPlatformID
;
}
DLLVERSIONINFO
;
#define DLLVER_PLATFORM_WINDOWS 0x00000001 // Windows 9x
#define DLLVER_PLATFORM_NT 0x00000002 // Windows NT
typedef
HRESULT
(
CALLBACK
*
DLLGETVERSIONPROC
)(
DLLVERSIONINFO
*
);
#ifdef __cplusplus
}
/* extern "C" */
#endif
/* defined(__cplusplus) */
...
...
include/winbase.h
View file @
8aa79fbe
...
...
@@ -882,14 +882,6 @@ typedef struct _WIN32_FILE_ATTRIBUTES_DATA {
DWORD
nFileSizeLow
;
}
WIN32_FILE_ATTRIBUTE_DATA
,
*
LPWIN32_FILE_ATTRIBUTE_DATA
;
typedef
struct
_DllVersionInfo
{
DWORD
cbSize
;
DWORD
dwMajorVersion
;
DWORD
dwMinorVersion
;
DWORD
dwBuildNumber
;
DWORD
dwPlatformID
;
}
DLLVERSIONINFO
;
/*
* This one seems to be a Win32 only definition. It also is defined with
* WINAPI instead of CALLBACK in the windows headers.
...
...
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