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
8196e2d0
Commit
8196e2d0
authored
Sep 21, 2005
by
Eric Kohl
Committed by
Alexandre Julliard
Sep 21, 2005
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Implement setupapi stringtable functions.
parent
2aae74df
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
40 additions
and
12 deletions
+40
-12
Makefile.in
dlls/setupapi/Makefile.in
+3
-0
setupapi.spec
dlls/setupapi/setupapi.spec
+24
-12
stringtable.c
dlls/setupapi/stringtable.c
+0
-0
setupapi.h
include/setupapi.h
+13
-0
No files found.
dlls/setupapi/Makefile.in
View file @
8196e2d0
...
...
@@ -18,6 +18,7 @@ C_SRCS = \
parser.c
\
queue.c
\
setupcab.c
\
stringtable.c
\
stubs.c
C_SRCS16
=
\
...
...
@@ -30,6 +31,8 @@ SPEC_SRCS16 = setupx.spec
RC_SRCS
=
setupapi.rc
SUBDIRS
=
tests
@MAKE_DLL_RULES@
### Dependencies:
dlls/setupapi/setupapi.spec
View file @
8196e2d0
...
...
@@ -513,19 +513,20 @@
@ stdcall SetupTerminateFileLog(long)
@ stub ShouldDeviceBeExcluded
@ stdcall StampFileSecurity(wstr ptr)
@ st
ub StringTableAddString
@ st
ub StringTableAddStringEx
@ st
ub StringTableDestroy
@ st
ub StringTableDuplicate
@ st
dcall StringTableAddString(ptr wstr long)
@ st
dcall StringTableAddStringEx(ptr wstr long ptr long)
@ st
dcall StringTableDestroy(ptr)
@ st
dcall StringTableDuplicate(ptr)
@ stub StringTableEnum
@ stub StringTableGetExtraData
@ stub StringTableInitialize
@ stub StringTableInitializeEx
@ stub StringTableLookUpString
@ stub StringTableLookUpStringEx
@ stub StringTableSetExtraData
@ stub StringTableStringFromId
@ stub StringTableTrim
@ stdcall StringTableGetExtraData(ptr long ptr long)
@ stdcall StringTableInitialize()
@ stdcall StringTableInitializeEx(long long)
@ stdcall StringTableLookUpString(ptr wstr long)
@ stdcall StringTableLookUpStringEx(ptr wstr long ptr ptr)
@ stdcall StringTableSetExtraData(ptr long ptr long)
@ stdcall StringTableStringFromId(ptr long)
@ stdcall StringTableStringFromIdEx(ptr long ptr ptr)
@ stdcall StringTableTrim(ptr)
@ stdcall TakeOwnershipOfFile(wstr)
@ stdcall UnicodeToMultiByte(wstr long)
@ stdcall UnmapAndCloseFile(long long ptr)
...
...
@@ -549,4 +550,15 @@
@ stub pSetupSetQueueFlags
@ stub pSetupSetSystemSourceFlags
@ stub pSetupStringFromGuid
@ stdcall pSetupStringTableAddString(ptr wstr long) StringTableAddString
@ stdcall pSetupStringTableAddStringEx(ptr wstr long ptr long) StringTableAddStringEx
@ stdcall pSetupStringTableDestroy(ptr) StringTableDestroy
@ stdcall pSetupStringTableDuplicate(ptr) StringTableDuplicate
@ stub pSetupStringTableEnum
@ stdcall pSetupStringTableGetExtraData(ptr long ptr long) StringTableGetExtraData
@ stdcall pSetupStringTableInitialize() StringTableInitialize
@ stdcall pSetupStringTableInitializeEx(long long) StringTableInitializeEx
@ stdcall pSetupStringTableLookUpString(ptr wstr long) StringTableLookUpString
@ stdcall pSetupStringTableLookUpStringEx(ptr wstr long ptr ptr) StringTableLookUpStringEx
@ stdcall pSetupStringTableSetExtraData(ptr long ptr long) StringTableSetExtraData
@ stub pSetupVerifyQueuedCatalogs
dlls/setupapi/stringtable.c
0 → 100644
View file @
8196e2d0
This diff is collapsed.
Click to expand it.
include/setupapi.h
View file @
8196e2d0
...
...
@@ -158,6 +158,8 @@ DECL_WINELIB_SETUPAPI_TYPE_AW(PSP_FILE_CALLBACK)
typedef
UINT
DI_FUNCTION
;
DECLARE_HANDLE
(
HSTRING_TABLE
);
typedef
struct
_SP_CLASSINSTALL_HEADER
{
DWORD
cbSize
;
...
...
@@ -415,6 +417,9 @@ DECL_WINELIB_SETUPAPI_TYPE_AW(PFILEPATHS)
#define SP_COPY_NOPRUNE 0x00100000
#define SP_COPY_OEM_F6_INF 0x00200000
/* Flags for StringTableAddString and StringTableLookUpString */
#define ST_CASE_SENSITIVE_COMPARE 0x00000001
#define FLG_ADDREG_DELREG_BIT 0x00008000
#define FLG_ADDREG_BINVALUETYPE 0x00000001
#define FLG_ADDREG_NOCLOBBER 0x00000002
...
...
@@ -858,6 +863,14 @@ BOOL WINAPI SetupSetFileQueueAlternatePlatformW( HSPFILEQ, PSP_ALTPLATFORM_I
BOOL
WINAPI
SetupSetFileQueueFlags
(
HSPFILEQ
,
DWORD
,
DWORD
);
void
WINAPI
SetupTermDefaultQueueCallback
(
PVOID
);
DWORD
WINAPI
StampFileSecurity
(
PCWSTR
,
PSECURITY_DESCRIPTOR
);
DWORD
WINAPI
StringTableAddString
(
HSTRING_TABLE
,
LPWSTR
,
DWORD
);
VOID
WINAPI
StringTableDestroy
(
HSTRING_TABLE
);
HSTRING_TABLE
WINAPI
StringTableDuplicate
(
HSTRING_TABLE
hStringTable
);
HSTRING_TABLE
WINAPI
StringTableInitialize
(
VOID
);
DWORD
WINAPI
StringTableLookUpString
(
HSTRING_TABLE
,
LPWSTR
,
DWORD
);
LPWSTR
WINAPI
StringTableStringFromId
(
HSTRING_TABLE
,
DWORD
);
BOOL
WINAPI
StringTableStringFromIdEx
(
HSTRING_TABLE
,
DWORD
,
LPWSTR
,
LPDWORD
);
VOID
WINAPI
StringTableTrim
(
HSTRING_TABLE
);
DWORD
WINAPI
TakeOwnershipOfFile
(
PCWSTR
);
PSTR
WINAPI
UnicodeToMultiByte
(
PCWSTR
lpUnicodeStr
,
UINT
uCodePage
);
BOOL
WINAPI
UnmapAndCloseFile
(
HANDLE
,
HANDLE
,
PVOID
);
...
...
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