ExternalLibraryFunction.st
author Claus Gittinger <cg@exept.de>
Thu, 31 Mar 2005 20:49:37 +0200
changeset 8814 501f04d1f533
parent 8728 d70396dc4e96
child 8891 c30a030ff5ec
permissions -rw-r--r--
*** empty log message ***
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
8728
d70396dc4e96 copyright
Claus Gittinger <cg@exept.de>
parents: 8550
diff changeset
     1
"
d70396dc4e96 copyright
Claus Gittinger <cg@exept.de>
parents: 8550
diff changeset
     2
 COPYRIGHT (c) 2004 by eXept Software AG
d70396dc4e96 copyright
Claus Gittinger <cg@exept.de>
parents: 8550
diff changeset
     3
              All Rights Reserved
d70396dc4e96 copyright
Claus Gittinger <cg@exept.de>
parents: 8550
diff changeset
     4
d70396dc4e96 copyright
Claus Gittinger <cg@exept.de>
parents: 8550
diff changeset
     5
 This software is furnished under a license and may be used
d70396dc4e96 copyright
Claus Gittinger <cg@exept.de>
parents: 8550
diff changeset
     6
 only in accordance with the terms of that license and with the
d70396dc4e96 copyright
Claus Gittinger <cg@exept.de>
parents: 8550
diff changeset
     7
 inclusion of the above copyright notice.   This software may not
d70396dc4e96 copyright
Claus Gittinger <cg@exept.de>
parents: 8550
diff changeset
     8
 be provided or otherwise made available to, or used by, any
d70396dc4e96 copyright
Claus Gittinger <cg@exept.de>
parents: 8550
diff changeset
     9
 other person.  No title to or ownership of the software is
d70396dc4e96 copyright
Claus Gittinger <cg@exept.de>
parents: 8550
diff changeset
    10
 hereby transferred.
d70396dc4e96 copyright
Claus Gittinger <cg@exept.de>
parents: 8550
diff changeset
    11
"
d70396dc4e96 copyright
Claus Gittinger <cg@exept.de>
parents: 8550
diff changeset
    12
8533
9065c547ea75 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    13
"{ Package: 'stx:libbasic' }"
9065c547ea75 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    14
9065c547ea75 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    15
ExternalFunction subclass:#ExternalLibraryFunction
9065c547ea75 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    16
	instanceVariableNames:'flags argTypes'
9065c547ea75 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    17
	classVariableNames:''
9065c547ea75 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    18
	poolDictionaries:''
9065c547ea75 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    19
	category:'System-Support'
9065c547ea75 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    20
!
9065c547ea75 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    21
8728
d70396dc4e96 copyright
Claus Gittinger <cg@exept.de>
parents: 8550
diff changeset
    22
!ExternalLibraryFunction class methodsFor:'documentation'!
d70396dc4e96 copyright
Claus Gittinger <cg@exept.de>
parents: 8550
diff changeset
    23
d70396dc4e96 copyright
Claus Gittinger <cg@exept.de>
parents: 8550
diff changeset
    24
copyright
d70396dc4e96 copyright
Claus Gittinger <cg@exept.de>
parents: 8550
diff changeset
    25
"
d70396dc4e96 copyright
Claus Gittinger <cg@exept.de>
parents: 8550
diff changeset
    26
 COPYRIGHT (c) 2004 by eXept Software AG
d70396dc4e96 copyright
Claus Gittinger <cg@exept.de>
parents: 8550
diff changeset
    27
              All Rights Reserved
d70396dc4e96 copyright
Claus Gittinger <cg@exept.de>
parents: 8550
diff changeset
    28
d70396dc4e96 copyright
Claus Gittinger <cg@exept.de>
parents: 8550
diff changeset
    29
 This software is furnished under a license and may be used
d70396dc4e96 copyright
Claus Gittinger <cg@exept.de>
parents: 8550
diff changeset
    30
 only in accordance with the terms of that license and with the
d70396dc4e96 copyright
Claus Gittinger <cg@exept.de>
parents: 8550
diff changeset
    31
 inclusion of the above copyright notice.   This software may not
d70396dc4e96 copyright
Claus Gittinger <cg@exept.de>
parents: 8550
diff changeset
    32
 be provided or otherwise made available to, or used by, any
d70396dc4e96 copyright
Claus Gittinger <cg@exept.de>
parents: 8550
diff changeset
    33
 other person.  No title to or ownership of the software is
d70396dc4e96 copyright
Claus Gittinger <cg@exept.de>
parents: 8550
diff changeset
    34
 hereby transferred.
d70396dc4e96 copyright
Claus Gittinger <cg@exept.de>
parents: 8550
diff changeset
    35
"
d70396dc4e96 copyright
Claus Gittinger <cg@exept.de>
parents: 8550
diff changeset
    36
! !
8533
9065c547ea75 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    37
8550
72982f85bd41 *** empty log message ***
ca
parents: 8533
diff changeset
    38
!ExternalLibraryFunction class methodsFor:'instance creation'!
72982f85bd41 *** empty log message ***
ca
parents: 8533
diff changeset
    39
72982f85bd41 *** empty log message ***
ca
parents: 8533
diff changeset
    40
name:functionName module:moduleName callType:callType 
72982f85bd41 *** empty log message ***
ca
parents: 8533
diff changeset
    41
                  returnType:returnType argumentTypes:argTypes
72982f85bd41 *** empty log message ***
ca
parents: 8533
diff changeset
    42
    ^ self new
72982f85bd41 *** empty log message ***
ca
parents: 8533
diff changeset
    43
        name:functionName module:moduleName callType:callType 
72982f85bd41 *** empty log message ***
ca
parents: 8533
diff changeset
    44
        returnType:returnType argumentTypes:argTypes
72982f85bd41 *** empty log message ***
ca
parents: 8533
diff changeset
    45
! !
72982f85bd41 *** empty log message ***
ca
parents: 8533
diff changeset
    46
72982f85bd41 *** empty log message ***
ca
parents: 8533
diff changeset
    47
!ExternalLibraryFunction methodsFor:'private-accessing'!
72982f85bd41 *** empty log message ***
ca
parents: 8533
diff changeset
    48
72982f85bd41 *** empty log message ***
ca
parents: 8533
diff changeset
    49
name:functionName module:moduleName callType:callType 
72982f85bd41 *** empty log message ***
ca
parents: 8533
diff changeset
    50
                  returnType:returnType argumentTypes:argumentTypes
72982f85bd41 *** empty log message ***
ca
parents: 8533
diff changeset
    51
72982f85bd41 *** empty log message ***
ca
parents: 8533
diff changeset
    52
        name := functionName.
72982f85bd41 *** empty log message ***
ca
parents: 8533
diff changeset
    53
        "/ module:moduleName.
72982f85bd41 *** empty log message ***
ca
parents: 8533
diff changeset
    54
        "/ callType := callType.
72982f85bd41 *** empty log message ***
ca
parents: 8533
diff changeset
    55
        "/ returnType := returnType.
72982f85bd41 *** empty log message ***
ca
parents: 8533
diff changeset
    56
        argTypes := argumentTypes.
72982f85bd41 *** empty log message ***
ca
parents: 8533
diff changeset
    57
! !
72982f85bd41 *** empty log message ***
ca
parents: 8533
diff changeset
    58
8533
9065c547ea75 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    59
!ExternalLibraryFunction class methodsFor:'documentation'!
9065c547ea75 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    60
9065c547ea75 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    61
version
8728
d70396dc4e96 copyright
Claus Gittinger <cg@exept.de>
parents: 8550
diff changeset
    62
    ^ '$Header: /cvs/stx/stx/libbasic/ExternalLibraryFunction.st,v 1.3 2005-02-02 11:02:12 cg Exp $'
8533
9065c547ea75 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    63
! !