}
}
-static void edg_wll_SoapToHelperCallSrc_role(enum in, edg_wll_HelperCallSrc_role *out)
+static void edg_wll_SoapToHelperCallSrcRole(enum in, edg_wll_HelperCallSrc_role *out)
{
switch ( in ) {
case : *out = EDG_WLL_HELPERCALL_UNDEFINED,; break;
}
}
-static void edg_wll_SoapToHelperReturnSrc_role(enum in, edg_wll_HelperReturnSrc_role *out)
+static void edg_wll_SoapToHelperReturnSrcRole(enum in, edg_wll_HelperReturnSrc_role *out)
{
switch ( in ) {
case : *out = EDG_WLL_HELPERRETURN_UNDEFINED,; break;
}
}
-static void edg_wll_SoapToDoneStatus_code(enum in, edg_wll_DoneStatus_code *out)
+static void edg_wll_SoapToDoneStatusCode(enum in, edg_wll_DoneStatus_code *out)
{
switch ( in ) {
case : *out = EDG_WLL_DONE_UNDEFINED,; break;
}
}
-static void edg_wll_SoapToCancelStatus_code(enum in, edg_wll_CancelStatus_code *out)
+static void edg_wll_SoapToCancelStatusCode(enum in, edg_wll_CancelStatus_code *out)
{
switch ( in ) {
case : *out = EDG_WLL_CANCEL_UNDEFINED,; break;
}
}
-static void edg_wll_HelperCallSrc_roleToSoap(edg_wll_HelperCallSrc_role in, enum *out)
+static void edg_wll_HelperCallSrcRoleToSoap(edg_wll_HelperCallSrc_role in, enum *out)
{
switch ( in ) {
case EDG_WLL_HELPERCALL_UNDEFINED,: *out = ; break;
}
}
-static void edg_wll_HelperReturnSrc_roleToSoap(edg_wll_HelperReturnSrc_role in, enum *out)
+static void edg_wll_HelperReturnSrcRoleToSoap(edg_wll_HelperReturnSrc_role in, enum *out)
{
switch ( in ) {
case EDG_WLL_HELPERRETURN_UNDEFINED,: *out = ; break;
}
}
-static void edg_wll_DoneStatus_codeToSoap(edg_wll_DoneStatus_code in, enum *out)
+static void edg_wll_DoneStatusCodeToSoap(edg_wll_DoneStatus_code in, enum *out)
{
switch ( in ) {
case EDG_WLL_DONE_UNDEFINED,: *out = ; break;
}
}
-static void edg_wll_CancelStatus_codeToSoap(edg_wll_CancelStatus_code in, enum *out)
+static void edg_wll_CancelStatusCodeToSoap(edg_wll_CancelStatus_code in, enum *out)
{
switch ( in ) {
case EDG_WLL_CANCEL_UNDEFINED,: *out = ; break;
}
}
-static void edg_wll_RegJobJobtypeToSoap(edg_wll_RegJobJobtype in, enum *out)
+static void edg_wll_RegJobtypeToSoap(edg_wll_RegJobJobtype in, enum *out)
{
switch ( in ) {
case EDG_WLL_REGJOB_UNDEFINED,: *out = ; break;
}
my $usuc = $fn;
$usuc = $1.uc($2).$3 while ($usuc =~ /([^_]*)_([a-z])(.*)/);
+ my $fuc = ucfirst($usuc);
if ($ft eq 'jobid') {
if ($f->{optional}) {
gen "\t\t\tout->$act.$fn = *in->$name->$usuc;\n";
}
+# XXX: comment out when tranform functions ready...
+# elsif ($f->{codes}) {
+# if ($type eq '_common_') {
+# gen "\t\t\tedg_wll_SoapTo$fuc(in->$name->$usuc,&(out->$act.$fn));\n";
+# }
+# else {
+# gen "\t\t\tedg_wll_SoapTo$name$fuc(in->$name->$usuc,&(out->$act.$fn));\n";
+# }
+# }
else {
gen "\t\t\tout->$act.$fn = in->$name->$usuc;\n";
}