Assaf Stone wrote:
> 1. can I define a variable as an unsigned 64-bit integer in Delphi 7?

No.

You can declare a TULargeInteger, though.

What do you need it for?

Although the compiler doesn't generate code to do unsigned arithmetic on 
64-bit types, the System unit does include the subroutines that the 
compiler would generate calls to, and you can call them yourself form 
assembler. You can see calls to the unsigned division and modulus 
routines in the JclWideFormat unit, if you have it.

> 2. Is there any way that I can write a Delphi program that uses a C++
> header file?

No. C++ headers are written in C++ (and can contain arbitrary C++ code, 
not just type declarations). Delphi only compiles Delphi code.

Translate the header into Delphi declarations and code.

-- 
Rob


-----------------------------------------------------
Home page: http://groups.yahoo.com/group/delphi-en/
To unsubscribe: [EMAIL PROTECTED] 
Yahoo! Groups Links

<*> To visit your group on the web, go to:
    http://groups.yahoo.com/group/delphi-en/

<*> To unsubscribe from this group, send an email to:
    [EMAIL PROTECTED]

<*> Your use of Yahoo! Groups is subject to:
    http://docs.yahoo.com/info/terms/
 


Reply via email to