cancel
Showing results for 
Search instead for 
Did you mean: 

Archives Discussions

j0dy
Journeyman III

atiadlxy.dll not present on 32 Bit Windows

Hello,

I'm the developer of a free application. I have a problem with an user where the atiadlxy.dll is missing.

My program loads the atiadlxy.dll and calls various functions exported by the API. Without it's basically useless.

His setup:

1) 32 Bit Windows OS

2) Driver Version: 8.97.100.11

Whats wrong? When/why is the atiadlxy missing?

Thanks,

j0dy

0 Likes
1 Solution

I don't know why are there 2 dlls.

    HADLModule:=LoadLibrary('atiadlxx.dll');

    if HADLModule=0 then HADLModule:=LoadLibrary('atiadlxy.dll');

All I know is that this code loads the proper dll on both XP 32 and Win7 64.

View solution in original post

0 Likes
3 Replies
realhet
Miniboss

Hi,

I'm using a dynamic loader: If there is an atiadlxx.dll present then I use that, otherwise I use atiadlxy.dll

Don't ask why

0 Likes

Hi,

can you tell the difference between atiadlxx.dll and atiadlxy.dll?

So you mean, when the OS is 32bit you load xx.dll and if it is 64bit, you load xy.dll?

Thanks

0 Likes

I don't know why are there 2 dlls.

    HADLModule:=LoadLibrary('atiadlxx.dll');

    if HADLModule=0 then HADLModule:=LoadLibrary('atiadlxy.dll');

All I know is that this code loads the proper dll on both XP 32 and Win7 64.

0 Likes