working on documentation examples

git-svn-id: svn://136.177.114.72/svn_GW/IPhreeqc/branches/ErrorHandling@6106 1feff8c3-07ed-0310-ac33-dd36852eb9cd
This commit is contained in:
Scott R Charlton 2012-01-24 05:31:57 +00:00
parent 1ce85992bc
commit 0ddd9b0adb
3 changed files with 12 additions and 2 deletions

View File

@ -85,3 +85,4 @@ C
INTEGER(KIND=4) SetOutputFileOn
INTEGER(KIND=4) SetOutputStringOn
INTEGER(KIND=4) SetSelectedOutputFileOn
INTEGER(KIND=4) SetSelectedOutputStringOn

View File

@ -463,3 +463,12 @@
INTEGER(KIND=4) :: SetSelectedOutputFileOn
END FUNCTION SetSelectedOutputFileOn
END INTERFACE
INTERFACE
FUNCTION SetSelectedOutputStringOn(ID,SEL_ON)
INTEGER(KIND=4), INTENT(IN) :: ID
LOGICAL(KIND=4), INTENT(IN) :: SEL_ON
INTEGER(KIND=4) :: SetSelectedOutputStringOn
END FUNCTION SetSelectedOutputStringOn
END INTERFACE

View File

@ -589,9 +589,9 @@ SetSelectedOutputFileOnF(int *id, int* sel_on)
}
IPQ_RESULT
SetSelectedOutputStringOnF(int *id, int* dump_string_on)
SetSelectedOutputStringOnF(int *id, int* selected_output_string_on)
{
return ::SetSelectedOutputStringOn(*id, *dump_string_on);
return ::SetSelectedOutputStringOn(*id, *selected_output_string_on);
}
#if defined(_WIN32) && !defined(_M_AMD64)