welcome: please sign in

Upload page content

You can upload content for the page named below. If you change the page name, you can also upload content for another page. If the page name is empty, we derive the page name from the file name.

File to load page content from
Page name
Comment
What is the Admin password?

location: Develop / Typedef

Types

For c/cpp users

HEADER: source/include/BDFTYPE.h

typedef FORTINT INTEGER;
typedef double REAL;
typedef unsigned char BYTE;
typedef char* LPSTR;
typedef const char* LPCSTR;

FORTINT is usually 'long long' for 64-bit and that intel mkl is used.

Fortran passes pointer as parameters. Fortran functions are compatible with C, but not CPP.
C function(note the underline)

void fun_(REAL* fp)
{}

is equal to F subroutine

subroutine fun(f)
implicit none
real*8::f
end subroutine