User Profile

Collapse

Profile Sidebar

Collapse
sjdltzy
sjdltzy
Last Activity: Sep 1 '10, 10:40 AM
Joined: Aug 15 '10
Location:
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • sjdltzy
    started a topic A question of Fortran 2003

    A question of Fortran 2003

    Here is an example of Fortran ,but I can't run it in ivf 11.
    Code:
     MODULE m
     TYPE t(k)
     INTEGER, KIND :: k
     REAL(k),POINTER :: vector(:) => NULL()
     CONTAINS
     FINAL :: finalize_t1s, finalize_t1v, finalize_t2e
     END TYPE
     CONTAINS
     SUBROUTINE finalize_t1s(x)
     TYPE(t(KIND(0.0))) x
     IF (ASSOCIATED(x%vector)) DEALLOCATE(x%vector)
     END SUBROUTINE
     SUBROUTINE finalize_t1v(x)
    ...
    See more | Go to post

  • sjdltzy
    started a topic how to export function in namespace to dll
    in C

    how to export function in namespace to dll

    I'm writing a dll for other people ,but I don't wan't to give him codes.
    How can I export the function class and namespace in dll .like:
    namespace name
    {
    class a
    {
    a();
    ~a();
    public :
    int fun1(int i);
    double b;
    };
    int fun2(int j);
    }
    See more | Go to post
No activity results to display
Show More
Working...