View Issue Details
ID | Project | Category | View Status | Date Submitted | Last Update |
---|---|---|---|---|---|
0004533 | JEDI VCL | 00 JVCL Components | public | 2008-10-15 09:26 | 2008-10-16 00:09 |
Reporter | Bummisoft | Assigned To | obones | ||
Priority | normal | Severity | minor | Reproducibility | always |
Status | resolved | Resolution | fixed | ||
Product Version | 3.35 | ||||
Target Version | Fixed in Version | 3.36 | |||
Summary | 0004533: JvComputerInfoEx Hardwareprofile/GUID does not work with D2009 | ||||
Description | function TJvHardwareProfile.GetNativeType: HW_PROFILE_INFO; begin // works GetCurrentHwProfile(Result); end; { does not work 20081015 by Thomas Wassermann type GetCurrentHwProfileFunc = function(var lpHwProfileInfo: HW_PROFILE_INFO): BOOL; stdcall; var GetCurrentHwProfile: GetCurrentHwProfileFunc; LibHandle: THandle; begin FillChar(Result, SizeOf(Result), 0); // GetCurrentHwProfile is not available on all Win95's LibHandle := SafeLoadLibrary('advapi32.dll'); if LibHandle <> 0 then try @GetCurrentHwProfile := GetProcAddress(LibHandle, 'GetCurrentHwProfileA'); if Assigned(GetCurrentHwProfile) then GetCurrentHwProfile(Result); finally FreeLibrary(LibHandle); end; end; } | ||||
Tags | No tags attached. | ||||
Date Modified | Username | Field | Change |
---|---|---|---|
2008-10-15 09:26 | Bummisoft | New Issue | |
2008-10-16 00:09 | obones | Status | new => resolved |
2008-10-16 00:09 | obones | Fixed in Version | => Daily / SVN |
2008-10-16 00:09 | obones | Resolution | open => fixed |
2008-10-16 00:09 | obones | Assigned To | => obones |
2008-10-16 00:09 | obones | Note Added: 0014868 |