Delphi-PRAXiS

Delphi-PRAXiS (https://www.delphipraxis.net/forum.php)
-   Object-Pascal / Delphi-Language (https://www.delphipraxis.net/32-object-pascal-delphi-language/)
-   -   Delphi enum - Von C nach Delphi ? (https://www.delphipraxis.net/97765-enum-von-c-nach-delphi.html)

turboPASCAL 15. Aug 2007 22:30


enum - Von C nach Delphi ?
 
Code:
enum NVDFPSCALING
{
    NVDFPSCALING_NONE        = -1,      
    NVDFPSCALING_NATIVE      =  1,      
    NVDFPSCALING_SCALED      =  2,      
    /* ... */       
    NVDFPSCALING_SCALEDASPECT =  5,
};

typedef struct tagNVDISPLAYINFO
{
    DWORD cbSize;                                                                
    DWORD dwInputFields1;                
    enum NVDFPSCALING nDfpScaling;      
    /* ... */
    DWORD dwBoardType;
    /* ... */
} NVDISPLAYINFO;

Tja, wie würde das in Delphi aussehen ?

Luckie 15. Aug 2007 22:57

Re: enum - Von C nach Delphi ?
 
Delphi-Quellcode:
type
  NVDFPSCALING = (
    NVDFPSCALING_NONE        = -1,      
    NVDFPSCALING_NATIVE      =  1,
    NVDFPSCALING_SCALEDASPECT =  5
  )

  tagNVDISPLAYINFO = packed record
    cbSize: DWORD;                                                                
    dwInputFields1: DWORD;
    nDfpScaling: NVDFPSCALING;
  end;
Auf die schnelle ohne Gewähr und ohne es getestet zu haben. Bei so Strukturen muss ich auch immer überlegen bzw. nachbessern, nach Strg + F9. ;)

Christian Seehase 15. Aug 2007 23:03

Re: enum - Von C nach Delphi ?
 
Moin Michael,

vor dem Set muss noch ein

{$MINENUMSIZE 4}

eingefügt werden also

Delphi-Quellcode:
{$MINENUMSIZE 4}

type
  NVDFPSCALING = (
    NVDFPSCALING_NONE        = -1,      
    NVDFPSCALING_NATIVE      =  1,
    NVDFPSCALING_SCALEDASPECT =  5
  )
da die Werte in Delphi standardmässig sonst nur 1 Byte gross sind, während C da immer 4 Byte nimmt.
Macht man das nicht stimmt sonst anschliessend die Grösse der Struktur nicht.

turboPASCAL 16. Aug 2007 06:04

Re: enum - Von C nach Delphi ?
 
Ich danke euch, wusste überhaupt nicht dass das auch mit Vorgabewerten klappt. Man lernt nie aus...

jim_raynor 16. Aug 2007 08:26

Re: enum - Von C nach Delphi ?
 
Zitat:

Zitat von turboPASCAL
Ich danke euch, wusste überhaupt nicht dass das auch mit Vorgabewerten klappt. Man lernt nie aus...

Aber erst seit Delphi 6 oder 7. Delphi 5 und davor können es definitiv nicht ;)

Razor 16. Aug 2007 08:53

Re: enum - Von C nach Delphi ?
 
This shows nvidia display info i think,right.Well there are a lot of other functions in nvcpl.dll that are very interesting.

turboPASCAL 16. Aug 2007 11:36

Re: enum - Von C nach Delphi ?
 
Zitat:

Zitat von jim_raynor
Zitat:

Zitat von turboPASCAL
Ich danke euch, wusste überhaupt nicht dass das auch mit Vorgabewerten klappt. Man lernt nie aus...

Aber erst seit Delphi 6 oder 7. Delphi 5 und davor können es definitiv nicht ;)

Ebend.

Zitat:

Zitat von Razor
This shows nvidia display info i think,right.Well there are a lot of other functions in nvcpl.dll that are very interesting.

Sorry, bad english ;) :

You can read more Information in the -> nVidia API

Razor 16. Aug 2007 11:39

Re: enum - Von C nach Delphi ?
 
does such thing exist for ati? :)

turboPASCAL 16. Aug 2007 12:14

Re: enum - Von C nach Delphi ?
 
http://ati.de/products/catalystcontr.../features.html

more information do not know I


Alle Zeitangaben in WEZ +1. Es ist jetzt 13:46 Uhr.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
LinkBacks Enabled by vBSEO © 2011, Crawlability, Inc.
Delphi-PRAXiS (c) 2002 - 2023 by Daniel R. Wolf, 2024-2025 by Thomas Breitkreuz