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
40953c2a
Commit
40953c2a
authored
Feb 21, 2008
by
Alistair Leslie-Hughes
Committed by
Alexandre Julliard
Feb 22, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
slc: Added stub for SLGetWindowsInformationDWORD.
parent
88c7c2c7
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
77 additions
and
1 deletion
+77
-1
Makefile.in
dlls/slc/Makefile.in
+1
-0
slc.c
dlls/slc/slc.c
+9
-0
slc.spec
dlls/slc/slc.spec
+1
-1
Makefile.in
include/Makefile.in
+2
-0
slerror.h
include/slerror.h
+25
-0
slpublic.h
include/slpublic.h
+39
-0
No files found.
dlls/slc/Makefile.in
View file @
40953c2a
EXTRADEFS
=
-D_SLC_
TOPSRCDIR
=
@top_srcdir@
TOPOBJDIR
=
../..
SRCDIR
=
@srcdir@
...
...
dlls/slc/slc.c
View file @
40953c2a
...
...
@@ -23,8 +23,17 @@
#include "winbase.h"
#include "wine/debug.h"
#include "slpublic.h"
#include "slerror.h"
WINE_DEFAULT_DEBUG_CHANNEL
(
slc
);
DWORD
WINAPI
SLGetWindowsInformationDWORD
(
LPCWSTR
lpszValueName
,
LPDWORD
pdwValue
)
{
FIXME
(
"(%s) stub
\n
"
,
debugstr_w
(
lpszValueName
)
);
return
SL_E_RIGHT_NOT_GRANTED
;
}
/***********************************************************************
* DllMain (CLUSAPI.@)
...
...
dlls/slc/slc.spec
View file @
40953c2a
...
...
@@ -26,7 +26,7 @@
@ stub SLGetSLIDList
@ stub SLGetServiceInformation
@ stub SLGetWindowsInformation
@ st
ub SLGetWindowsInformationDWORD
@ st
dcall SLGetWindowsInformationDWORD(wstr ptr)
@ stub SLInstallLicense
@ stub SLInstallProofOfPurchase
@ stub SLInstallSAMLicense
...
...
include/Makefile.in
View file @
40953c2a
...
...
@@ -359,6 +359,8 @@ SRCDIR_INCLUDES = \
shlobj.h
\
shlwapi.h
\
sipbase.h
\
slerror.h
\
slpublic.h
\
snmp.h
\
softpub.h
\
sql.h
\
...
...
include/slerror.h
0 → 100644
View file @
40953c2a
/*
*
* Copyright 2008 Alistair Leslie-Hughes
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#ifndef __WINE_SLERROR_H
#define __WINE_SLERROR_H
#define SL_E_RIGHT_NOT_GRANTED 0xC004F013
#define SL_E_DATATYPE_MISMATCHED 0xC004F01E
#endif
/* __WINE_SLERROR_H */
include/slpublic.h
0 → 100644
View file @
40953c2a
/*
*
* Copyright 2008 Alistair Leslie-Hughes
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#ifndef __WINE_SLPUBLIC_H
#define __WINE_SLPUBLIC_H
#ifdef __cplusplus
extern
"C"
{
#endif
#ifdef _SLC_
#define SLCAPI
#else
#define SLCAPI DECLSPEC_IMPORT
#endif
SLCAPI
DWORD
WINAPI
SLGetWindowsInformationDWORD
(
LPCWSTR
lpszValueName
,
LPDWORD
pdwValue
);
#ifdef __cplusplus
}
#endif
#endif
/* __WINE_SLPUBLIC_H */
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