Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
P
proview
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Esteban Blanc
proview
Commits
2e107bd5
Commit
2e107bd5
authored
Dec 11, 2014
by
Claes Sjofors
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Attribute flag DevHideValue added for password attributes
parent
7cb35204
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
3 deletions
+8
-3
src/exe/co_convert/src/cnv_readwbl.cpp
src/exe/co_convert/src/cnv_readwbl.cpp
+1
-0
src/exp/inc/src/pwr_class.h
src/exp/inc/src/pwr_class.h
+7
-3
No files found.
src/exe/co_convert/src/cnv_readwbl.cpp
View file @
2e107bd5
...
...
@@ -1342,6 +1342,7 @@ char *CnvReadWbl::flags_to_string( int value)
if
(
value
&
pwr_mAdef_alwayswbl
)
strcat
(
str
,
"Alwayswbl|"
);
if
(
value
&
pwr_mAdef_disableattr
)
strcat
(
str
,
"DisableAttr|"
);
if
(
value
&
pwr_mAdef_rthide
)
strcat
(
str
,
"RtHide|"
);
if
(
value
&
pwr_mAdef_devhidevalue
)
strcat
(
str
,
"DevHideValue|"
);
if
(
str
[
strlen
(
str
)
-
1
]
==
'|'
)
str
[
strlen
(
str
)
-
1
]
=
0
;
return
str
;
...
...
src/exp/inc/src/pwr_class.h
View file @
2e107bd5
...
...
@@ -713,10 +713,12 @@ union pwr_m_Adef {
pwr_Bits
(
buffer
,
1
),
pwr_Bits
(
nowbl
,
1
),
pwr_Bits
(
alwayswbl
,
1
),
pwr_Bits
(
newattribute
,
1
),
pwr_Bits
(
fill_0
,
1
),
pwr_Bits
(
disableattr
,
1
),
pwr_Bits
(
rthide
,
1
),
pwr_Bits
(
fill_1
,
8
),,,,,,,
pwr_Bits
(
newattribute
,
1
),
pwr_Bits
(
devhidevalue
,
1
),
pwr_Bits
(
fill_1
,
6
),,,,,
)
b
;
#define pwr_mAdef_pointer pwr_Bit(0)
/* 1 */
...
...
@@ -744,6 +746,7 @@ union pwr_m_Adef {
#define pwr_mAdef_disableattr pwr_Bit(22)
/* Can be disabled */
#define pwr_mAdef_rthide pwr_Bit(23)
/* Hide in runtime */
#define pwr_mAdef_newattribute pwr_Bit(24)
/* New attribute */
#define pwr_mAdef_devhidevalue pwr_Bit(25)
/* Hide in runtime */
};
#define PWR_MASK_POINTER pwr_mAdef_pointer
...
...
@@ -772,6 +775,7 @@ union pwr_m_Adef {
#define PWR_MASK_DISABLEATTR pwr_mAdef_disableattr
#define PWR_MASK_RTHIDE pwr_mAdef_rthide
#define PWR_MASK_NEWATTRIBUTE pwr_mAdef_newattribute
#define PWR_MASK_DEVHIDEVALUE pwr_mAdef_devhidevalue
struct
pwr_s_Param
{
pwr_sParInfo
Info
pwr_dAlignLW
;
...
...
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