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
555f7ba5
Commit
555f7ba5
authored
Dec 17, 2003
by
claes
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Create Distribute instead of Nodehier object as child
parent
e9b5b91f
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
10 deletions
+1
-10
wb/lib/wb/src/wb_c_nodeconfig.c
wb/lib/wb/src/wb_c_nodeconfig.c
+1
-10
No files found.
wb/lib/wb/src/wb_c_nodeconfig.c
View file @
555f7ba5
...
@@ -17,22 +17,13 @@ static pwr_tStatus PostCreate (
...
@@ -17,22 +17,13 @@ static pwr_tStatus PostCreate (
pwr_tObjid
oid
,
poid
;
pwr_tObjid
oid
,
poid
;
pwr_tClassId
cid
;
pwr_tClassId
cid
;
pwr_tStatus
sts
;
pwr_tStatus
sts
;
char
source
[
80
];
sts
=
ldh_ClassNameToId
(
Session
,
&
cid
,
"RootVolumeLoad"
);
sts
=
ldh_ClassNameToId
(
Session
,
&
cid
,
"RootVolumeLoad"
);
sts
=
ldh_CreateObject
(
Session
,
&
oid
,
"O1"
,
cid
,
Object
,
ldh_eDest_IntoLast
);
sts
=
ldh_CreateObject
(
Session
,
&
oid
,
"O1"
,
cid
,
Object
,
ldh_eDest_IntoLast
);
sts
=
ldh_ClassNameToId
(
Session
,
&
cid
,
"
$NodeHier
"
);
sts
=
ldh_ClassNameToId
(
Session
,
&
cid
,
"
Distribute
"
);
sts
=
ldh_CreateObject
(
Session
,
&
poid
,
"Distribute"
,
cid
,
Object
,
ldh_eDest_IntoLast
);
sts
=
ldh_CreateObject
(
Session
,
&
poid
,
"Distribute"
,
cid
,
Object
,
ldh_eDest_IntoLast
);
sts
=
ldh_ClassNameToId
(
Session
,
&
cid
,
"GraphDistribute"
);
sts
=
ldh_CreateObject
(
Session
,
&
oid
,
"AllPwg"
,
cid
,
poid
,
ldh_eDest_IntoLast
);
strcpy
(
source
,
"$pwrp_pop/*.pwg"
);
sts
=
ldh_SetObjectPar
(
Session
,
oid
,
"DevBody"
,
"Source"
,
source
,
sizeof
(
source
));
if
(
EVEN
(
sts
))
return
sts
;
return
PWRS__SUCCESS
;
return
PWRS__SUCCESS
;
}
}
...
...
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