home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Power-Programmierung
/
CD1.mdf
/
fortran
/
mslang
/
vb_fort
/
global.bas
< prev
next >
Wrap
BASIC Source File
|
1993-08-05
|
680b
|
22 lines
Type struct
strings As String * 30
int2 As Integer
int4 As Long
real4 As Single
real8 As Double
End Type
Type StringArray
strings As String * 24
End Type
Declare Sub ARRAYTEST Lib "fortvb.dll" (Myarray As Single)
Declare Sub ARRAYSTRING Lib "fortvb.dll" (Myarray As StringArray)
Declare Sub Square Lib "fortvb.dll" (a As Single)
Declare Sub SQUAREROOT Lib "fortvb.dll" (a As Single)
Declare Function CUBE Lib "fortvb.dll" (a As Single) As Single
Declare Sub STRINGER Lib "fortvb.dll" (ByVal mystring As String)
Declare Sub STRUCTEST Lib "fortvb.dll" (fstruct As struct)
Declare Function INTPOWER Lib "fortvb.dll" (m As Long, n As Long) As Long