Skip to content

Commit

Permalink
Driver/API v1.0.6.20
Browse files Browse the repository at this point in the history
* Fixed problem in aimapi.dll/ImScsiCreateDevice
  • Loading branch information
Olof Lagerkvist committed Sep 21, 2015
1 parent a5fca4a commit fc63cb4
Show file tree
Hide file tree
Showing 15 changed files with 9 additions and 7 deletions.
Binary file modified API/aimapi.zip
Binary file not shown.
Binary file modified Command line applications/aim_cli.exe
Binary file not shown.
Binary file modified Command line applications/aim_ll.zip
Binary file not shown.
Binary file modified DriverSetup/ArsenalImageMounterCLISetup.exe
Binary file not shown.
Binary file modified DriverSetup/ArsenalImageMounterGUISetup.exe
Binary file not shown.
Binary file modified DriverSetup/DriverFiles.zip
Binary file not shown.
Binary file modified DriverSetup/DriverSetup.7z
Binary file not shown.
2 changes: 1 addition & 1 deletion Managed Source/CommonAssemblyInfo.vb
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,4 @@ Imports System.Runtime.InteropServices
' <Assembly: AssemblyVersion("1.0.*")>

<Assembly: AssemblyVersion("1.0.0.0")>
<Assembly: AssemblyFileVersion("2.0.010.0")>
<Assembly: AssemblyFileVersion("2.0.011.0")>
Binary file modified MountTool/ArsenalImageMounterControl.exe
Binary file not shown.
Binary file modified MountTool/ArsenalImageMounterControl.pdb
Binary file not shown.
Binary file modified MountTool/ArsenalImageMounterMountTool.exe
Binary file not shown.
4 changes: 3 additions & 1 deletion Unmanaged Source/aim_ll/aimcmd.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -745,9 +745,11 @@ LPWSTR FormatOptions)

HANDLE event = ImScsiRescanScsiAdapterAsync(TRUE);

Sleep(400);

if (event == NULL)
{
Sleep(600);
Sleep(200);
}
else
{
Expand Down
2 changes: 1 addition & 1 deletion Unmanaged Source/aimapi/aimapi.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1162,7 +1162,7 @@ IN BOOL CreatePartition)
}
}

WMem<WCHAR> disk_path(ImDiskAllocPrintF(L"\\\\?\\PhysicalDrive%u",
WMem<WCHAR> disk_path(ImDiskAllocPrintF(L"\\\\?\\PhysicalDrive%1!u!",
disk_number));

if (!disk_path)
Expand Down
4 changes: 2 additions & 2 deletions Unmanaged Source/aimapi/debugmsg.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@

#include "aimapi.h"

pfImScsiDebugMessageCallback DebugMessageCallback;
LPVOID DebugMessageCallbackContext;
pfImScsiDebugMessageCallback DebugMessageCallback = NULL;
LPVOID DebugMessageCallbackContext = NULL;

AIMAPI_API
VOID
Expand Down
4 changes: 2 additions & 2 deletions Unmanaged Source/phdskmnt/inc/phdskmntver.h
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
#define PHDSKMNT_RC_VERSION_STR "1.0.6.19"
#define PHDSKMNT_RC_VERSION_STR "1.0.6.20"
#define PHDSKMNT_MAJOR_VERSION 1
#define PHDSKMNT_MINOR_VERSION 0
#define PHDSKMNT_MINOR_LOW_VERSION 6
#define PHDSKMNT_BUILD_VERSION 19
#define PHDSKMNT_BUILD_VERSION 20

#define PHDSKMNT_VERSION_ULONG (((ULONG)PHDSKMNT_MAJOR_VERSION << 24) + ((ULONG)PHDSKMNT_MINOR_VERSION << 16) + ((ULONG)PHDSKMNT_MINOR_LOW_VERSION << 8) + PHDSKMNT_BUILD_VERSION)

Expand Down

0 comments on commit fc63cb4

Please sign in to comment.