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.
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.
Comment