Announcement

Collapse
No announcement yet.

DLL.SHORT, DLL.INT byte size?

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • DLL.SHORT, DLL.INT byte size?

    Hello,

    I am writing a DLL in C++ and need to know the byte sizes of the following efs declarations?

    DLL.BYTE ?
    DLL.SHORT ?
    DLL.INT ?
    DLL.FLOAT ?
    DLL.DOUBLE ?

    Here are the C++ byte sizes:

    SHORT 2 bytes
    INT 4 bytes
    LONG 4 bytes
    FLOAT 4 bytes
    DOUBLE 8 bytes

    Thank you.
    Last edited by doug1; 10-27-2003, 09:24 AM.

  • #2
    Hello doug1,

    They are the same as the byte info in your post.
    Jason K.
    Project Manager
    eSignal - an Interactive Data company

    EFS KnowledgeBase
    JavaScript for EFS Video Series
    EFS Beginner Tutorial Series
    EFS Glossary
    Custom EFS Development Policy

    New User Orientation

    Comment


    • #3
      My 2 cents:

      In JavaScript (as in the parent Java language), they are:

      SHORT - 2 bytes (equals to C++ 'int')
      INT - 4 bytes (erquals to C++ 'long')

      Comment


      • #4
        Thanks.

        Comment

        Working...
        X