![]() |
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 ? |
Re: enum - Von C nach Delphi ?
Delphi-Quellcode:
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. ;)
type
NVDFPSCALING = ( NVDFPSCALING_NONE = -1, NVDFPSCALING_NATIVE = 1, NVDFPSCALING_SCALEDASPECT = 5 ) tagNVDISPLAYINFO = packed record cbSize: DWORD; dwInputFields1: DWORD; nDfpScaling: NVDFPSCALING; end; |
Re: enum - Von C nach Delphi ?
Moin Michael,
vor dem Set muss noch ein {$MINENUMSIZE 4} eingefügt werden also
Delphi-Quellcode:
da die Werte in Delphi standardmässig sonst nur 1 Byte gross sind, während C da immer 4 Byte nimmt.
{$MINENUMSIZE 4}
type NVDFPSCALING = ( NVDFPSCALING_NONE = -1, NVDFPSCALING_NATIVE = 1, NVDFPSCALING_SCALEDASPECT = 5 ) Macht man das nicht stimmt sonst anschliessend die Grösse der Struktur nicht. |
Re: enum - Von C nach Delphi ?
Ich danke euch, wusste überhaupt nicht dass das auch mit Vorgabewerten klappt. Man lernt nie aus...
|
Re: enum - Von C nach Delphi ?
Zitat:
|
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.
|
Re: enum - Von C nach Delphi ?
Zitat:
Zitat:
You can read more Information in the -> ![]() |
Re: enum - Von C nach Delphi ?
does such thing exist for ati? :)
|
Re: enum - Von C nach Delphi ?
|
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