Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
L
libdap
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
cellframe
libdap
Commits
498c44b5
Commit
498c44b5
authored
5 years ago
by
Constantin Papizh
Browse files
Options
Downloads
Patches
Plain Diff
Behaviour fixed for sys service sake
parent
ae9fc900
No related branches found
No related tags found
1 merge request
!32
Behaviour fixed for sys service sake
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/win32/registry.c
+6
-6
6 additions, 6 deletions
src/win32/registry.c
with
6 additions
and
6 deletions
src/win32/registry.c
+
6
−
6
View file @
498c44b5
...
@@ -13,31 +13,31 @@ wchar_t* readRegKey(HKEY hKey, LPCWSTR regSubKey, LPCWSTR val) {
...
@@ -13,31 +13,31 @@ wchar_t* readRegKey(HKEY hKey, LPCWSTR regSubKey, LPCWSTR val) {
}
}
char
*
regGetUsrPath
()
{
char
*
regGetUsrPath
()
{
static
char
path
[
MAX_PATH
]
=
{};
static
char
path
[
MAX_PATH
]
=
{
'\0'
};
if
(
strlen
(
path
)
>
3
)
{
return
path
;
}
if
(
strlen
(
path
)
>
3
)
{
return
path
;
}
HKEY
hKey
;
HKEY
hKey
;
const
char
keyPath
[]
=
"SOFTWARE
\\
Microsoft
\\
Windows
\\
CurrentVersion
\\
Explorer
\\
Shell Folders"
;
const
char
keyPath
[]
=
"SOFTWARE
\\
Microsoft
\\
Windows
\\
CurrentVersion
\\
Explorer
\\
Shell Folders"
;
LSTATUS
err
=
RegOpenKeyExA
(
HKEY_
CURRENT_USER
,
LSTATUS
err
=
RegOpenKeyExA
(
HKEY_
LOCAL_MACHINE
,
keyPath
,
keyPath
,
0
,
KEY_READ
,
&
hKey
);
0
,
KEY_READ
,
&
hKey
);
if
(
err
!=
ERROR_SUCCESS
)
{
return
NULL
;
}
if
(
err
!=
ERROR_SUCCESS
)
{
return
NULL
;
}
DWORD
len
=
MAX_PATH
;
DWORD
len
=
MAX_PATH
;
err
=
RegGetValueA
(
hKey
,
NULL
,
"
Personal
"
,
RRF_RT_REG_SZ
,
NULL
,
(
void
*
)
path
,
&
len
);
err
=
RegGetValueA
(
hKey
,
NULL
,
"
Common Documents
"
,
RRF_RT_REG_SZ
,
NULL
,
(
void
*
)
path
,
&
len
);
RegCloseKey
(
hKey
);
RegCloseKey
(
hKey
);
return
path
;
return
path
;
}
}
wchar_t
*
regWGetUsrPath
()
{
wchar_t
*
regWGetUsrPath
()
{
static
wchar_t
path
[
MAX_PATH
]
=
{};
static
wchar_t
path
[
MAX_PATH
]
=
{
'\0'
};
if
(
wcslen
(
path
)
>
3
)
{
return
path
;
}
if
(
wcslen
(
path
)
>
3
)
{
return
path
;
}
HKEY
hKey
;
HKEY
hKey
;
const
char
keyPath
[]
=
"SOFTWARE
\\
Microsoft
\\
Windows
\\
CurrentVersion
\\
Explorer
\\
Shell Folders"
;
const
char
keyPath
[]
=
"SOFTWARE
\\
Microsoft
\\
Windows
\\
CurrentVersion
\\
Explorer
\\
Shell Folders"
;
LSTATUS
err
=
RegOpenKeyExA
(
HKEY_
CURRENT_USER
,
LSTATUS
err
=
RegOpenKeyExA
(
HKEY_
LOCAL_MACHINE
,
keyPath
,
keyPath
,
0
,
KEY_READ
,
&
hKey
);
0
,
KEY_READ
,
&
hKey
);
if
(
err
!=
ERROR_SUCCESS
)
{
return
NULL
;
}
if
(
err
!=
ERROR_SUCCESS
)
{
return
NULL
;
}
DWORD
len
=
MAX_PATH
;
DWORD
len
=
MAX_PATH
;
err
=
RegGetValueW
(
hKey
,
NULL
,
L"
Personal
"
,
RRF_RT_REG_SZ
,
NULL
,
(
void
*
)
path
,
&
len
);
err
=
RegGetValueW
(
hKey
,
NULL
,
L"
Common Documents
"
,
RRF_RT_REG_SZ
,
NULL
,
(
void
*
)
path
,
&
len
);
RegCloseKey
(
hKey
);
RegCloseKey
(
hKey
);
return
path
;
return
path
;
}
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment