First time here? We are a friendly community of Power Systems Engineers. Check out the FAQ!
1 | initial version |
Hello,
I am getting 'unresolved external symbol error' when compiling and creating dll file from Fotran code.
To get line status, I am using the API:
CALL BRNINT(ICON(M),ICON(M+1),ICON(M+2),'STATUS', STATUS, IERR)
With ICON(M+2), I am getting the external symbol error. However, if I replace ICON(M+2) with '1', I get no error.
CALL BRNINT(ICON(M),ICON(M+1),'1','STATUS', STATUS, IERR)
Is it possible that the ICON(M+2) is being considered any other type other than type CHARACTER? Is there way to fix the issue?
Thank you.
2 | No.2 Revision |
Hello,
I am getting 'unresolved external symbol error' when while compiling and creating dll file from Fotran code.
To get line status, I am using the API:
CALL BRNINT(ICON(M),ICON(M+1),ICON(M+2),'STATUS', STATUS, IERR)
With ICON(M+2), I am getting the external symbol error. However, if I replace ICON(M+2) with '1', I get no error.
CALL BRNINT(ICON(M),ICON(M+1),'1','STATUS', STATUS, IERR)
Is it possible that the ICON(M+2) is being considered any other type other than type CHARACTER? Is there way to fix the issue?
Thank you.
3 | No.3 Revision |
Hello,
I am getting 'unresolved external symbol error' while compiling and creating dll file from Fotran code.
To get line status, I am using the API:
CALL BRNINT(ICON(M),ICON(M+1),ICON(M+2),'STATUS', STATUS, IERR)
With ICON(M+2), I am getting the external symbol error. However, if I replace ICON(M+2) with '1', I get no error.
CALL BRNINT(ICON(M),ICON(M+1),'1','STATUS', STATUS, IERR)
Is it possible that the ICON(M+2) is being considered any other type other than type CHARACTER? Is there a way to fix the issue?
Thank you.