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
b2a3ffd8
Commit
b2a3ffd8
authored
Apr 18, 2006
by
James Hawkins
Committed by
Alexandre Julliard
Apr 19, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
advpack: Put function declarations in advpack_private.h.
parent
a0f8623e
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
32 additions
and
4 deletions
+32
-4
advpack.c
dlls/advpack/advpack.c
+1
-2
advpack_private.h
dlls/advpack/advpack_private.h
+29
-0
files.c
dlls/advpack/files.c
+1
-2
install.c
dlls/advpack/install.c
+1
-0
No files found.
dlls/advpack/advpack.c
View file @
b2a3ffd8
...
...
@@ -32,6 +32,7 @@
#include "advpub.h"
#include "wine/unicode.h"
#include "wine/debug.h"
#include "advpack_private.h"
WINE_DEFAULT_DEBUG_CHANNEL
(
advpack
);
...
...
@@ -40,8 +41,6 @@ typedef HRESULT (WINAPI *DLLREGISTER) (void);
#define MAX_FIELD_LENGTH 512
#define PREFIX_LEN 5
HRESULT
launch_exe
(
LPCWSTR
cmd
,
LPCWSTR
dir
,
HANDLE
*
phEXE
);
/* registry path of the Installed Components key for per-user stubs */
static
const
WCHAR
setup_key
[]
=
{
'S'
,
'O'
,
'F'
,
'T'
,
'W'
,
'A'
,
'R'
,
'E'
,
'\\'
,
...
...
dlls/advpack/advpack_private.h
0 → 100644
View file @
b2a3ffd8
/*
* Advpack private header
*
* Copyright 2006 James Hawkins
*
* 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#ifndef __ADVPACK_PRIVATE_H
#define __ADVPACK_PRIVATE_H
LPWSTR
get_parameter
(
LPWSTR
*
params
,
WCHAR
separator
);
HRESULT
launch_exe
(
LPCWSTR
cmd
,
LPCWSTR
dir
,
HANDLE
*
phEXE
);
HRESULT
do_ocx_reg
(
HMODULE
hocx
,
BOOL
do_reg
);
#endif
/* __ADVPACK_PRIVATE_H */
dlls/advpack/files.c
View file @
b2a3ffd8
...
...
@@ -31,11 +31,10 @@
#include "advpub.h"
#include "wine/debug.h"
#include "wine/unicode.h"
#include "advpack_private.h"
WINE_DEFAULT_DEBUG_CHANNEL
(
advpack
);
LPWSTR
get_parameter
(
LPWSTR
*
params
,
WCHAR
separator
);
/* converts an ansi double null-terminated list to a unicode list */
static
LPWSTR
ansi_to_unicode_list
(
LPCSTR
ansi_list
)
{
...
...
dlls/advpack/install.c
View file @
b2a3ffd8
...
...
@@ -32,6 +32,7 @@
#include "advpub.h"
#include "wine/debug.h"
#include "wine/unicode.h"
#include "advpack_private.h"
WINE_DEFAULT_DEBUG_CHANNEL
(
advpack
);
...
...
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