Jump to content

RainerHH

Members
  • Posts

    9
  • Joined

  • Last visited

Posts posted by RainerHH

  1. 1.:
    When I put my PC into standby mode, the AX206 display goes out. That is exactly right.
    But after a certain time the display comes on again and shows its firmware panel.
    Can you change that?

    2 .:
    Is there a similar panel in 5 inches?

     

  2. thats the code of the plugin to read the values wich are puts in the shared memory by everest/aida64.

    no, I'm unable to disassemble the .dll, understand it, change it and reassemble.

    first the plugin must find the running aida and then locate the shared memory of it and

    then periodictly read the values.

  3. here are the sample code to get the values stored from Everest in the shared memory (file/options/ext. Apps/activate shared memory).

    The alphacool app reads ist from there.:

    Const

    sharedmem_name = 'EVEREST_SensorValues';

    Function ExtApp_SharedMem_ReadBuffer(bu:PChar;bu_size:DWord):Boolean;

    Var

    mappedData : PChar;

    th : THandle;

    Begin

    Result:=False;

    th:=OpenFileMapping(FILE_MAP_READ,False,sharedmem_name);

    If th<>INVALID_HANDLE_VALUE Then

    Begin

    mappedData:=MapViewOfFile(th,FILE_MAP_READ,0,0,0);

    If mappedData<>Nil Then

    Begin

    StrLCopy(bu,mappedData,bu_size);

    If UnmapViewOfFile(mappedData) Then Result:=True;

    End;

    CloseHandle(th);

    End;

    End;

    The only difference to AIDA64 is this:

    Const

    sharedmem_name = 'AIDA64_SensorValues';

    An example of read values is attached:

    post-316-095852800 1296311117_thumb.jpg

×
×
  • Create New...