FILE OVERVIEWGENERAL INFORMATION CONTENT OF FILES - C:\autoexec.bat - C:\config.sys - C:\boot.ini - C:\Program Files\Matrox Imaging\mil\include\milsetup.h LICENSES - Debug information file DRIVERS STATUS REGISTRY STRUCTURE - HKEY_CURRENT_USER\Software\Matrox\ - HKEY_LOCAL_MACHINE\SOFTWARE\Matrox\ - HKEY_LOCAL_MACHINE\SOFTWARE\Rainbow\ - HKEY_LOCAL_MACHINE\SOFTWARE\RAINBOW TECHNOLOGIES\ - HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\MtxDma0\ - HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Sentinel\ - HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Genesis\ - HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Corona\ - HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Meteor\ - HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Pulsar\ - HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\orion\ - HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\cronos\ - \SYSTEM\CurrentControlSet\Services\mtx1394\ - \SYSTEM\CurrentControlSet\Services\MF1394CORE\ EEPROM OF MATROX 4SIGHT I EEPROM OF MATROX ORION EEPROM OF MATROX 1394 OUTPUT OF CHECKPCI.EXE MATROX DLLs, LIBs, DRVs, VXDs AND SYSs C:\Documents and Settings\hoa.tran\Desktop\clean\DLLANDSYS\DLLANDSYS C:\Drivers\Ethernet C:\Program Files\Matrox Imaging\ActiveMIL\controls C:\Program Files\Matrox Imaging\ActiveMIL\NativeMIL\Library C:\Program Files\Matrox Imaging\drivers\orion\drivernt C:\Program Files\Matrox Imaging\drivers\VGA\drivernt C:\Program Files\Matrox Imaging\intellicam C:\Program Files\Matrox Imaging\mil\library\winnt\msc\dll C:\WINDOWS\LastGood\System32\DRIVERS C:\WINDOWS\LastGood.Tmp\System32\DRIVERS C:\WINDOWS\system C:\WINDOWS\system32 C:\WINDOWS\system32\drivers [ Back to top of page ] GENERAL INFORMATION- Date of file creation : Tuesday, February 15, 2005 - Os information : Windows NT 5 Build 2600 Service Pack 1 - Processor information : CPU Vendor Name : GenuineIntel CPU Family Number : 15 CPU Model Number : 2 CPU Stepping Number : 4 AMD3DNow : NOT supported AMD3DNowExtension : NOT supported AMDMMXExtension : NOT supported MMX : supported SSE : supported SSEInt : supported SSE2 : supported SSE2Int : supported - Display properties with GDI : Primary Monitor Display width : 1024 Display height : 768 Bits Per Pixel : 32 Vertical Refresh : 60 Display Monitor Name : \\.\DISPLAY1 - Display properties with DDraw : Primary Monitor Display width : 1024 Display height : 768 Bits Per Pixel : 32 Vertical Refresh : 60 Driver Description : Primary Display Driver Driver Name : display - Dual head : Status : Disabled - Multi-monitor : Status : Disabled - Direct X : At least DirectX 8 installed. - Mil version : 7.10.240 - Memory information : RAM size : 191.55 MBs - DMA information : DMA size : 64 MBs ____________________________________________ ALLUSERSPROFILE=C:\Documents and Settings\All Users APPDATA=C:\Documents and Settings\hoa.tran\Application Data CLIENTNAME=Console CommonProgramFiles=C:\Program Files\Common Files COMPPATH=C:\MSDEV COMPUTERNAME=NAVISSRV ComSpec=C:\WINDOWS\system32\cmd.exe HOMEDRIVE=P: HOMEPATH=\ HOMESHARE=\\fsvejx152801\home\hoa.tran LOGONSERVER=\\VEJXAMCW3DC502 NUMBER_OF_PROCESSORS=1 ORIONDCF=C:\Program Files\Matrox Imaging\drivers\orion\dcf OS=Windows_NT Path=C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\Program Files\Microsoft SQL Server\80\Tools\Binn\;;;; PATHEXT=.COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH PROCESSOR_ARCHITECTURE=x86 PROCESSOR_IDENTIFIER=x86 Family 15 Model 2 Stepping 4, GenuineIntel PROCESSOR_LEVEL=15 PROCESSOR_REVISION=0204 ProgramFiles=C:\Program Files PROMPT=$P$G SESSIONNAME=Console SystemDrive=C: SystemRoot=C:\WINDOWS TEMP=C:\DOCUME~1\HOA~1.TRA\LOCALS~1\Temp TMP=C:\DOCUME~1\HOA~1.TRA\LOCALS~1\Temp USERDNSDOMAIN=AMC.DS.AF.MIL USERDOMAIN=AMC-2K USERNAME=hoa.tran USERPROFILE=C:\Documents and Settings\hoa.tran VGAVCF=C:\Program Files\Matrox Imaging\drivers\vga\vcf windir=C:\WINDOWS < [ Back to top of page ] CONTENT OF FILES- C:\autoexec.bat : ____________________________________________ - C:\config.sys : ____________________________________________ - C:\boot.ini [boot loader] timeout=30 default=multi(0)disk(0)rdisk(0)partition(1)\WINDOWS [operating systems] multi(0)disk(0)rdisk(0)partition(1)\WINDOWS="Microsoft Windows XP Professional (Memory: NT=192 MB, MIL=64.0 MB)" /MAXMEM=192 /fastdetect < ____________________________________________ ____________________________________________ - C:\Program Files\Matrox Imaging\mil\include\milsetup.h : /***************************************************************************/
/* */
/* */
/* Filename: MILSETUP.H */
/* Owner : Matrox Imaging dept. */
/* Rev : $Revision: 1.0 $ */
/* Content : This file contains definitions for specifying the target */
/* compile environment and the default state to set for */
/* MIL (Matrox Imaging Library). It also defines the */
/* MappAllocDefault() and MappFreeDefault() macros. */
/* */
/* COPYRIGHT (c) 1993-1995 Matrox Electronic Systems Ltd. */
/* All Rights Reserved. */
/* */
/* */
/***************************************************************************/
/************************************************************************/
/* MIL LITE IDENTIFICATION FLAG */
/* Activate or Deactivate MIL Lite flag */
/************************************************************************/
#define M_MIL_LITE 1
/************************************************************************/
/* SETUP SPECIFIED FLAG */
/* Activate or Deactivate MIL use-setup flag */
/************************************************************************/
#define M_MIL_USE_SETUP 1
/************************************************************************/
/* COMPILATION FLAG */
/* One and only one flag must be active */
/* */
/* Activate or Deactivate DOS32 compile mode */
/* Activate or Deactivate NT under WINDOWS compile mode */
/************************************************************************/
#ifndef M_MIL_USE_OS
#define M_MIL_USE_OS 1
#define M_MIL_USE_DOS_32 0
#define M_MIL_USE_WINDOWS 1
#define M_MIL_USE_CE 0
#define M_MIL_USE_PPC 0
#endif
#if !(M_MIL_USE_DOS_32 || M_MIL_USE_WINDOWS || M_MIL_USE_PPC || M_MIL_USE_QNX)
#error You must set at least one compilation flag.
#endif
#if (M_MIL_USE_DOS_32 && M_MIL_USE_WINDOWS)
#error You must select one and only one compilation flag.
#endif
#if (M_MIL_USE_DOS_32 && M_MIL_USE_PPC)
#error You must select one and only one compilation flag.
#endif
#if (M_MIL_USE_WINDOWS && M_MIL_USE_PPC)
#error You must select one and only one compilation flag.
#endif
#if (M_MIL_USE_DOS_32 && M_MIL_USE_QNX)
#error You must select one and only one compilation flag.
#endif
#if (M_MIL_USE_WINDOWS && M_MIL_USE_QNX)
#error You must select one and only one compilation flag.
#endif
#if defined(_MSC_VER) && (M_MIL_USE_DOS_32)
#error Do not use DOS 32 compile mode with MSC.
#endif
/************************************************************************/
/* IMAGE PATH */
/* Path to the images used by the examples */
/************************************************************************/
#if !M_MIL_USE_CE
#define M_IMAGE_PATH MIL_TEXT("C:\\Program Files\\Matrox Imaging\\Images\\")
#else
#define M_IMAGE_PATH MIL_TEXT("\\cedisk\\mil\\images\\")
#endif
/************************************************************************/
/* ERROR MESSAGES AND VALUES USAGE FLAG */
/* Activate or Deactivate error messages inclusion */
/************************************************************************/
#define M_MIL_USE_ERROR_MESSAGE 0
/************************************************************************/
/* BLOB ANALYSIS MODULE PROGRAMMING FLAG */
/* Activate or Deactivate blob module programming */
/************************************************************************/
#define M_MIL_USE_BLOB 0
/************************************************************************/
/* PATTERN RECOGNITION MODULE PROGRAMMING FLAG */
/* Activate or Deactivate pat module programming */
/************************************************************************/
#define M_MIL_USE_PAT 0
/************************************************************************/
/* OCR MODULE PROGRAMMING FLAG */
/* Activate or Deactivate ocr module programming */
/************************************************************************/
#define M_MIL_USE_OCR 0
/************************************************************************/
/* MEASUREMENT MODULE PROGRAMMING FLAG */
/* Activate or Deactivate meas module programming */
/************************************************************************/
#define M_MIL_USE_MEAS 0
/************************************************************************/
/* CALIBRATION MODULE PROGRAMMING FLAG */
/* Activate or Deactivate cal module programming */
/************************************************************************/
#define M_MIL_USE_CAL 0
/************************************************************************/
/* CODE MODULE PROGRAMMING FLAG */
/* Activate or Deactivate code module programming */
/************************************************************************/
#define M_MIL_USE_CODE 0
/************************************************************************/
/* MODEL FINDER MODULE PROGRAMMING FLAG */
/* Activate or Deactivate model finder programming */
/************************************************************************/
#define M_MIL_USE_MOD 0
/************************************************************************/
/* PULSAR SYSTEM USAGE FLAG AND INCLUDE PATH */
/* Activate or Deactivate pulsar module programming */
/************************************************************************/
#define M_MIL_USE_PULSAR 0
/************************************************************************/
/* GENESIS SYSTEM USAGE FLAG AND INCLUDE PATH */
/* Activate or Deactivate Genesis module programming */
/************************************************************************/
#define M_MIL_USE_GENESIS 0
/************************************************************************/
/* CORONA SYSTEM USAGE FLAG AND INCLUDE PATH */
/* Activate or Deactivate Corona module programming */
/************************************************************************/
#define M_MIL_USE_CORONA 0
/************************************************************************/
/* CORONA-II SYSTEM USAGE FLAG AND INCLUDE PATH */
/* Activate or Deactivate Corona II module programming */
/************************************************************************/
#define M_MIL_USE_CORONA_II 0
/************************************************************************/
/* METEOR_II SYSTEM USAGE FLAG AND INCLUDE PATH */
/* Activate or Deactivate Meteor II module programming */
/************************************************************************/
#define M_MIL_USE_METEOR_II 0
/************************************************************************/
/* METEOR_II_DIG SYSTEM USAGE FLAG AND INCLUDE PATH. */
/* Activate or Deactivate Meteor II Dig module programming. */
/************************************************************************/
#define M_MIL_USE_METEOR_II_DIG 0
/************************************************************************/
/* METEOR_II_CL SYSTEM USAGE FLAG AND INCLUDE PATH. */
/* Activate or Deactivate Meteor II CL module programming. */
/************************************************************************/
#define M_MIL_USE_METEOR_II_CL 0
/************************************************************************/
/* ORION SYSTEM USAGE FLAG AND INCLUDE PATH. */
/* Activate or Deactivate Orion module programming. */
/************************************************************************/
#define M_MIL_USE_ORION 1
/************************************************************************/
/* CRONOS SYSTEM USAGE FLAG AND INCLUDE PATH. */
/* Activate or Deactivate Cronos module programming. */
/************************************************************************/
#define M_MIL_USE_CRONOS 0
/************************************************************************/
/* ODYSSEY SYSTEM USAGE FLAG AND INCLUDE PATH. */
/* Activate or Deactivate Odyssey module programming. */
/************************************************************************/
#define M_MIL_USE_ODYSSEY 0
/************************************************************************/
/* NEWBOARD SYSTEM USAGE FLAG AND INCLUDE PATH */
/* Activate or Deactivate newboard module programming */
/************************************************************************/
#define M_MIL_USE_NEWBOARD 1
/************************************************************************/
/* DEFAULT STATE INITIALIZATION FLAG */
/************************************************************************/
#define M_SETUP M_DEFAULT
/************************************************************************/
/* DEFAULT SYSTEM SPECIFICATIONS */
/************************************************************************/
#define M_DEF_SYSTEM_TYPE M_SYSTEM_ORION
#define M_DEF_SYSTEM_NUM M_DEV0
#define M_SYSTEM_SETUP M_DEF_SYSTEM_TYPE
/************************************************************************/
/* DEFAULT DIGITIZER SPECIFICATIONS */
/************************************************************************/
#define M_DEF_DIGITIZER_NUM M_DEV0
#define M_DEF_DIGITIZER_FORMAT MIL_TEXT("Rs170.dcf")
#define M_DEF_DIGITIZER_INIT M_DEFAULT
#define M_CAMERA_SETUP M_DEF_DIGITIZER_FORMAT
/************************************************************************/
/* DEFAULT DISPLAY SPECIFICATIONS */
/************************************************************************/
#define M_DEF_DISPLAY_NUM M_DEV0
#define M_DEF_DISPLAY_FORMAT MIL_TEXT("M_DEFAULT")
#define M_DEF_DISPLAY_INIT M_DEFAULT
#define M_DISPLAY_SETUP M_DEF_DISPLAY_FORMAT
#define M_DEF_DISPLAY_KEY_COLOR 0
#define M_DEF_DISPLAY_KEY_ENABLE_ON_ALLOC 0
#define M_DEF_DISPLAY_KEY_DISABLE_ON_FREE 0
/************************************************************************/
/* DEFAULT IMAGE BUFFER SPECIFICATIONS */
/************************************************************************/
#define M_DEF_IMAGE_NUMBANDS_MIN 1
#define M_DEF_IMAGE_SIZE_X_MIN 512
#define M_DEF_IMAGE_SIZE_Y_MIN 480
#define M_DEF_IMAGE_SIZE_X_MAX 4096
#define M_DEF_IMAGE_SIZE_Y_MAX 4096
#define M_DEF_IMAGE_TYPE 8+M_UNSIGNED
#define M_DEF_IMAGE_ATTRIBUTE_MIN M_IMAGE+M_PROC
/***************************************************************************/
/* LocalBufferAllocDefault - Local macro to allocate a default MIL buffer: */
/* */
/* MIL_ID *SystemIdVarPtr; */
/* MIL_ID *DisplayIdVarPtr; */
/* MIL_ID *ImageIdVarPtr; */
/* */
/***************************************************************************/
#define LocalBufferAllocDefault(SystemIdVarPtr,DisplayIdVarPtr,DigitizerIdVarPtr,ImageIdVarPtr) \
{ \
/* local variables */ \
long m_def_image_numbands = M_DEF_IMAGE_NUMBANDS_MIN; \
long m_def_image_size_x = M_DEF_IMAGE_SIZE_X_MIN; \
long m_def_image_size_y = M_DEF_IMAGE_SIZE_Y_MIN; \
long m_def_image_type = M_DEF_IMAGE_TYPE; \
long m_def_image_attribute= M_DEF_IMAGE_ATTRIBUTE_MIN; \
MIL_ID *LNullPtr = M_NULL; \
MIL_ID LNull = M_NULL; \
\
/* determines the needed size band, x, y, type and attribute */ \
if ((((MIL_ID *)(DisplayIdVarPtr)) != LNullPtr) && \
((*((MIL_ID *)(DisplayIdVarPtr)))!= LNull)) \
{ \
if ((((MIL_ID *)(DigitizerIdVarPtr)) != LNullPtr) && \
((*((MIL_ID *)(DigitizerIdVarPtr)))!= LNull)) \
{ \
m_def_image_size_x = \
MdigInquire(*((MIL_ID *)(DigitizerIdVarPtr)),M_SIZE_X,M_NULL); \
m_def_image_size_y = \
MdigInquire(*((MIL_ID *)(DigitizerIdVarPtr)),M_SIZE_Y,M_NULL); \
m_def_image_type = \
MdigInquire(*((MIL_ID *)(DigitizerIdVarPtr)),M_TYPE,M_NULL); \
} \
else \
{ \
m_def_image_size_x = M_DEF_IMAGE_SIZE_X_MIN; \
m_def_image_size_y = M_DEF_IMAGE_SIZE_Y_MIN; \
m_def_image_type = M_DEF_IMAGE_TYPE; \
} \
} \
if (m_def_image_size_x < M_DEF_IMAGE_SIZE_X_MIN) \
m_def_image_size_x = M_DEF_IMAGE_SIZE_X_MIN; \
if (m_def_image_size_y < M_DEF_IMAGE_SIZE_Y_MIN) \
m_def_image_size_y = M_DEF_IMAGE_SIZE_Y_MIN; \
if (m_def_image_size_x > M_DEF_IMAGE_SIZE_X_MAX) \
m_def_image_size_x = M_DEF_IMAGE_SIZE_X_MAX; \
if (m_def_image_size_y > M_DEF_IMAGE_SIZE_Y_MAX) \
m_def_image_size_y = M_DEF_IMAGE_SIZE_Y_MAX; \
if (((m_def_image_type & 0xFF) < (M_DEF_IMAGE_TYPE & 0xFF)) || \
((m_def_image_type & 0xFF) > (M_DEF_IMAGE_TYPE & 0xFF))) \
m_def_image_type = M_DEF_IMAGE_TYPE; \
\
/* determines the needed attribute and number of band */ \
m_def_image_attribute = M_DEF_IMAGE_ATTRIBUTE_MIN; \
m_def_image_numbands = M_DEF_IMAGE_NUMBANDS_MIN; \
if ((((MIL_ID *)(DisplayIdVarPtr)) != LNullPtr) && \
((*((MIL_ID *)(DisplayIdVarPtr)))!= LNull)) \
m_def_image_attribute += M_DISP; \
if (((((MIL_ID *)DigitizerIdVarPtr)) != LNullPtr) && \
((*((MIL_ID *)(DigitizerIdVarPtr)))!= LNull)) \
{ \
m_def_image_attribute += M_GRAB; \
m_def_image_numbands = \
MdigInquire(*(MIL_ID *)DigitizerIdVarPtr,M_SIZE_BAND,M_NULL); \
if (m_def_image_numbands<M_DEF_IMAGE_NUMBANDS_MIN) \
m_def_image_numbands=M_DEF_IMAGE_NUMBANDS_MIN; \
} \
\
/* allocates a monochromatic or color image buffer */ \
MbufAllocColor(*((MIL_ID *)(SystemIdVarPtr)), \
m_def_image_numbands, \
m_def_image_size_x, \
m_def_image_size_y, \
m_def_image_type, \
m_def_image_attribute, \
((MIL_ID *)(ImageIdVarPtr))); \
\
/* clear and display the image buffer */ \
if (((DisplayIdVarPtr) !=LNullPtr) && \
((*((MIL_ID *)(DisplayIdVarPtr)))!=LNull) && \
((*((MIL_ID *)(ImageIdVarPtr))) !=LNull)) \
{ \
MbufClear(*((MIL_ID *)(ImageIdVarPtr)), 0); \
MdispSelect(*((MIL_ID *)(DisplayIdVarPtr)), \
*((MIL_ID *)(ImageIdVarPtr))); \
} \
}
/**************************************************************************/
/* MappAllocDefault - macro to allocate default MIL objects: */
/* */
/* long InitFlag; */
/* MIL_ID *ApplicationIdVarPtr; */
/* MIL_ID *SystemIdVarPtr; */
/* MIL_ID *DisplayIdVarPtr; */
/* MIL_ID *DigitizerIdVarPtr; */
/* MIL_ID *ImageIdVarPtr; */
/* */
/* Note: */
/* An application must be allocated before a system. */
/* An system must be allocated before a display,digitzer or image. */
/* */
/**************************************************************************/
#define MappAllocDefault(InitFlag,ApplicationIdVarPtr,SystemIdVarPtr,DisplayIdVarPtr,DigitizerIdVarPtr,ImageIdVarPtr) \
{ \
/* local variables */ \
MIL_ID *LNullPtr = M_NULL; \
MIL_ID LNull = M_NULL; \
\
/* allocate a MIL application. */ \
if (((MIL_ID *)(ApplicationIdVarPtr)) != LNullPtr) \
MappAlloc(InitFlag,((MIL_ID *)(ApplicationIdVarPtr))); \
\
/* allocate a system */ \
if ((((MIL_ID *)(SystemIdVarPtr)) != LNullPtr) && \
(((MIL_ID *)(ApplicationIdVarPtr)) != LNullPtr) && \
((*((MIL_ID *)(ApplicationIdVarPtr)))!= LNull)) \
MsysAlloc(M_DEF_SYSTEM_TYPE, \
M_DEF_SYSTEM_NUM, \
(InitFlag), \
((MIL_ID *)(SystemIdVarPtr))); \
\
/* allocate a display */ \
if ((((MIL_ID *)(DisplayIdVarPtr)) != LNullPtr) && \
(((MIL_ID *)(SystemIdVarPtr)) != LNullPtr) && \
((*((MIL_ID *)(SystemIdVarPtr))) != LNull)) \
MdispAlloc(*((MIL_ID *)(SystemIdVarPtr)), \
M_DEF_DISPLAY_NUM, \
M_DEF_DISPLAY_FORMAT, \
M_DEF_DISPLAY_INIT, \
((MIL_ID *)(DisplayIdVarPtr))); \
\
/* allocate a digitizer */ \
if ((((MIL_ID *)(DigitizerIdVarPtr)) != LNullPtr) && \
(((MIL_ID *)(SystemIdVarPtr)) != LNullPtr) && \
((*((MIL_ID *)(SystemIdVarPtr))) != LNull)) \
MdigAlloc(*((MIL_ID *)(SystemIdVarPtr)), \
M_DEF_DIGITIZER_NUM, \
M_DEF_DIGITIZER_FORMAT, \
M_DEF_DIGITIZER_INIT, \
((MIL_ID *)(DigitizerIdVarPtr))); \
\
/* enable keying if keying is supported */ \
if (((DisplayIdVarPtr) !=LNullPtr) && \
((*((MIL_ID *)(DisplayIdVarPtr)))!=LNull) && \
(M_DEF_DISPLAY_KEY_ENABLE_ON_ALLOC!=LNull) && \
(MdispInquire(*((MIL_ID *)(DisplayIdVarPtr)),M_KEY_SUPPORTED,0)))\
MdispOverlayKey(*((MIL_ID *)(DisplayIdVarPtr)),M_KEY_ON_COLOR, \
M_EQUAL,0xFFL,M_DEF_DISPLAY_KEY_COLOR); \
\
/* allocate an image buffer */ \
if ((((MIL_ID *)(ImageIdVarPtr)) != LNullPtr) && \
(((MIL_ID *)(SystemIdVarPtr)) != LNullPtr) && \
((*((MIL_ID *)(SystemIdVarPtr)))!= LNull)) \
LocalBufferAllocDefault(((MIL_ID *)(SystemIdVarPtr)), \
((MIL_ID *)(DisplayIdVarPtr)), \
((MIL_ID *)(DigitizerIdVarPtr)), \
((MIL_ID *)(ImageIdVarPtr))); \
\
/* enable keying if keying is supported */ \
if (((DisplayIdVarPtr) !=LNullPtr) && \
((*((MIL_ID *)(DisplayIdVarPtr)))!=LNull) && \
(M_DEF_DISPLAY_KEY_ENABLE_ON_ALLOC!=LNull) && \
(MdispInquire(*((MIL_ID *)(DisplayIdVarPtr)),M_KEY_SUPPORTED,0)))\
MdispOverlayKey(*((MIL_ID *)(DisplayIdVarPtr)),M_KEY_ON_COLOR, \
M_EQUAL,0xFFL,M_DEF_DISPLAY_KEY_COLOR); \
}
/************************************************************************/
/* MappFreeDefault - macro to free default MIL objects: */
/* */
/* MIL_ID ApplicationId; */
/* MIL_ID SystemId; */
/* MIL_ID DisplayId; */
/* MIL_ID DigitizerId; */
/* MIL_ID ImageId; */
/* */
/************************************************************************/
#define MappFreeDefault(ApplicationId,SystemId,DisplayId,DigitizerId,BufferId) \
{ \
MIL_ID NullId = M_NULL; \
\
/* free the image buffer */ \
if ((BufferId) != NullId) \
{ \
MbufFree((BufferId)); \
} \
\
/* free digitizer */ \
if ((DigitizerId) != NullId) \
{ \
MdigFree((DigitizerId)); \
} \
\
/* free the display */ \
if ((DisplayId) != NullId) \
{ \
if ((M_DEF_DISPLAY_KEY_DISABLE_ON_FREE != NullId)&& \
MdispInquire((DisplayId),M_KEY_SUPPORTED,0)) \
MdispOverlayKey((DisplayId),M_KEY_OFF,M_NULL,M_NULL,M_NULL); \
MdispFree((DisplayId)); \
} \
\
/* free the system */ \
if ((SystemId) != NullId) \
{ \
MsysFree((SystemId)); \
} \
\
/* free the system */ \
if ((ApplicationId) != NullId) \
{ \
MappFree((ApplicationId)); \
} \
}
<____________________________________________ [ Back to top of page ] LICENSESLicenses for MIL __________________________________________________________________________ Simple License Type = LITE TOTAL : 00000000 00000003 LITE DBG __________________________________________________________________________ S_MIL_TEMP LITE S_INSP_TEMP S_INSP_TEMP S_INSP_TEMP S_MGA_VGA DONGLE UNLIMITED S_ORION S_ETHERNET S_COMP_IDKEY S_NC_MIL6 S_DAVICOM __________________________________________________________________________ Licenses for Inspector __________________________________________________________________________ Simple License Type = NONE TOTAL : 00000000 00000000 __________________________________________________________________________ S_MIL_TEMP S_INSP_TEMP S_INSP_TEMP S_INSP_TEMP S_MGA_VGA DONGLE UNLIMITED S_ORION S_ETHERNET S_COMP_IDKEY S_NC_MIL6 S_DAVICOM __________________________________________________________________________ < ____________________________________________ [ Back to top of page ] - Debug information file : cc3589ee *S*000000030000000100000000000007b8013a0002"C:\Program Files\Matrox Imaging\milconfig\MILConfig.exe" 01180001Tue Feb 15 12:19:45 200500000028000111700000002b0033C3D00600002a000000010600002d00000001040000f0000000010600025800000001060000390000000100000038cc3589ee060001b800000000040000f000000002040000f000000002040000f000000002040000f00000000400000140010100540000014200000001030001441a1a49f80000000800000147102b0525000001420000000101070143BB106200000014500000007000001410042297c040000f000000008000002300000000c040000f000000010030002080000000000000000040000f000000020040000f00000004000000168000000100000016c00000010040000f00000008000000038cc3589ee0000002f0000000000000191000000000300019200000000000000100300019300000000000403330000019034a2268e040000f0000001000000002f00000000000002830000000003000282000000000000000003000284000000000000000000000280000000000000002f0000000000000283000000000000028700000000040000f0000002000000002f00000000040000f0000004000000002f00000000040000f000000800040000f0000010000400003b00000001050000f2a0000000000000000600003a00000001040000a600000001000000a700000000040000a600000002000000a700000000040000a600000002000000a700000000040000a600000002000000a7000000000400003b000000040600025b000000010000002f000000000000002f00000000000002590000001201060267Matrox010202687001020269020600025b000000000600003a00000000040000a600000004000000a70042297c040000a600000008000000a700000000040000a600000010000000a7000000000400003b0000004006000173000000010600016a000000000000016e000000000000016f000000640000016b00000080010e016dM_SYSTEM_ORION01000172000001760021297c0600025b000000010000002f000000000000002f00000000000002590000001201060267Matrox010202687001020269160600025b000000000600003a00000000040000a600400000000000a70021297c0400003b000000800600025b000000010000002f000000000000002f00000000000002590000001201060267Matrox010202687001020269070600025b000000000600003a00000000040000a600000080000000a734a2268e040000a600000100000000a700000000040000a600000200000000a700000000040000a600000400000000a7000000000600003900000001040000f400000400060000f3000000000600003900000001040000f400000200060000f3000000000600003900000001040000f400000100060000f3000000000600003900000001040000f400000080060000f3000000000600003900000001040000f400400000060000f3000000000600003900000001040000f400000010060000f3000000000600003900000001040000f400000008060000f3000000000600003900000001040000f400000004060000f3000000000600003900000001040000f400000001060000f30000000105000034800000000000000005000035a0000000000000000600002a00000000000000c900000f440000002c0033C3D0*E* *S*000000030000000100000000000007b8013a0002"C:\Program Files\Matrox Imaging\milconfig\MILConfig.exe" 01180001Tue Feb 15 12:19:45 200500000028000111700000002b0033B3C00600002a000000010600002d00000000040000f00000000106000258000000010600003900000001040000f000000002040000f000000002040000f000000002040000f00000000400000140010100540000014200000001030001441a1a49f80000000800000147102b0525000001420000000101070143BB106200000014500000007000001410042297c040000f000000008000002300000000c040000f000000010030002080000000000000000040000f000000020040000f00000004000000168000000100000016c00000010040000f00000008000000038cc3589ee0000002f0000000000000191000000000300019200000000000000100300019300000000000403330000019034a2268e040000f0000001000000002f00000000000002830000000003000282000000000000000003000284000000000000000000000280000000000000002f0000000000000283000000000000028700000000040000f0000002000000002f00000000040000f0000004000000002f00000000040000f000000800040000f000001000040000a600000001000000a700000000040000a600000002000000a700000000040000a600000002000000a700000000040000a600000002000000a7000000000400003b000000040600025b000000010000002f000000000000002f00000000000002590000001201060267Matrox010202687001020269020600025b000000000600003a00000000040000a600000004000000a70042297c040000a600000008000000a700000000040000a600000010000000a7000000000400003b0000004006000173000000010600016a000000000000016e000000000000016f000000640000016b00000080010e016dM_SYSTEM_ORION01000172000001760021297c0600025b000000010000002f000000000000002f00000000000002590000001201060267Matrox010202687001020269160600025b000000000600003a00000000040000a600400000000000a70021297c0400003b000000800600025b000000010000002f000000000000002f00000000000002590000001201060267Matrox010202687001020269070600025b000000000600003a00000000040000a600000080000000a734a2268e040000a600000100000000a700000000040000a600000200000000a700000000040000a600000400000000a7000000000400003700000800040000370000040004000037000002000400003700000100040000370000008004000037000000400400003700000020040000370000001004000037000000080400003700000004040000370000000204000037000000010500003480000000000000000500003580000000000000000500007880000000000000010500007b00000000000000000500007a00000000000000010600002a000000000500007880000000000004000500007b80000000000000000500007a8000000000000400000000c900000f440000002c0033B3C0*E* SENTINEL SuperPro status code ---------------------------------------------- Code 12 : Device driver not installed. SENTINEL SuperPro status code ---------------------------------------------- Code 12 : Device driver not installed. "NET START SENTINEL" Command Output -------------------------------------------------------------- The service name is invalid. More help is available by typing NET HELPMSG 2185. "NET START PARPORT" Command Output -------------------------------------------------------------- The requested service has already been started. More help is available by typing NET HELPMSG 2182. < [ Back to top of page ] DRIVERS STATUSCorona: Not found. Corona2: Not found. Genesis: Not found. Meteor: Not found. Meteor2: Not found. MF1394CORE: Not found. mtx1394: Not found. Mtxdma0: Service is running. Pulsar: Not found. Orion: Service is stopped. Cronos: Not found. [ Back to top of page ] REGISTRY STRUCTURE- HKEY_CURRENT_USER |..... \Software\Matrox\ | |..... Status 0x00000000 | |..... \Software\Matrox\ActiveMIL\ | | |..... \Software\Matrox\ActiveMIL\Settings\ | | | |..... FastEvents 0x00000000 | | | |..... MILTrace 0x00000000 | | | |..... HookTrace 0x00000000 | | | |..... DetailedMILErrors 0x00000000 | | | |..... NoDesignTimeAlloc 0x00000000 | | | |..... DesignTimePropertyValidation 0x00000001 | | | |..... GlobalMILTrace 0x00000000 | | | |..... ActiveMILTrace 0x00000000 | | | |..... ActiveMILTiming 0x00000000 | | | |..... GlobalMILTiming 0x00000000 | | | |..... MILTiming 0x00000000 | | | |..... PipeDelay 0x00000000 | | | |..... PipeMachine . | | | |..... ManualPropPage 0x00000000 | | | |..... IncrementalSerialization 0x00000001 | | | |..... FilterHistoryLog 0x00000001 | | | |..... SpyOnAllocations 0x00000000 | | | |..... BreakOnAllocation 0x00000000 | | | |..... ServerReleaseDelay 0x0000001E | | | |..... SerializeDefaultsStatus 0x00000000 | | | |..... ReferenceTrace 0x00000000 | | | |..... ContainerTrace 0x00000000 | | | |..... ScriptingEngine 0x00000000 | | | |..... ScriptingPropPage 0x00000000 | | | |..... ResultsPropPage 0x00000000 | | | |..... ValidationBufferSize 0x00000020 | | | |..... UseSystemAllocationString 0x00000000 | | | |..... PrintUnhandledInternalMILErrors 0x00000000 | |..... \Software\Matrox\MIP\ | | |..... \Software\Matrox\MIP\MILRuntime\ | | | |..... \Software\Matrox\MIP\MILRuntime\Settings\ | | | | |..... \Software\Matrox\MIP\MILRuntime\Settings\Debug\ | | | | | |..... LTrace 0x00000000 | | | | | |..... DAccess 0x00000000 | | | | | |..... \Software\Matrox\MIP\MILRuntime\Settings\Debug\LTrace\ | |..... \Software\Matrox\MultiDesktop\ | | |..... \Software\Matrox\MultiDesktop\Version1\ | | | |..... \Software\Matrox\MultiDesktop\Version1\Desktops\ | | | | |..... 0 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 2A 2A 20 47 6C 6F 62 61 6C 20 2A 2A 00 00 00 00 00 00 00 00 00 00 00 00 1C 00 00 00 15 00 00 00 40 40 40 00 0F 00 00 00 D4 D0 C8 00 14 00 00 00 FF FF FF 00 16 00 00 00 D4 D0 C8 00 10 00 00 00 80 80 80 00 0A 00 00 00 D4 D0 C8 00 02 00 00 00 0A 24 6A 00 0C 00 00 00 80 80 80 00 01 00 00 00 3A 6E A5 00 12 00 00 00 00 00 00 00 09 00 00 00 FF FF FF 00 1B 00 00 00 A6 CA F0 00 1C 00 00 00 C0 C0 C0 00 11 00 00 00 80 80 80 00 0D 00 00 00 0A 24 6A 00 0E 00 00 00 FF FF FF 00 1A 00 00 00 00 00 80 00 0B 00 00 00 D4 D0 C8 00 03 00 00 00 80 80 80 00 13 00 00 00 D4 D0 C8 00 18 00 00 00 FF FF E1 00 17 00 00 00 00 00 00 00 04 00 00 00 D4 D0 C8 00 07 00 00 00 00 00 00 00 00 00 00 00 D4 D0 C8 00 05 00 00 00 FF FF FF 00 06 00 00 00 00 00 00 00 08 00 00 00 00 00 00 00 01 00 00 00 00 00 00 00 | | | | |..... 1 02 00 00 00 02 10 00 10 00 00 00 00 00 00 00 00 44 65 73 6B 74 6F 70 20 31 00 01 43 3A 5C 57 49 4E 44 4F 57 53 5C 53 79 73 74 65 6D 33 32 5C 50 44 65 73 6B 5C 50 44 4D 4D 44 2E 45 58 45 00 05 00 00 00 00 02 00 00 00 1C 00 00 00 15 00 00 00 40 40 40 00 0F 00 00 00 D4 D0 C8 00 14 00 00 00 FF FF FF 00 16 00 00 00 D4 D0 C8 00 10 00 00 00 80 80 80 00 0A 00 00 00 D4 D0 C8 00 02 00 00 00 0A 24 6A 00 0C 00 00 00 80 80 80 00 01 00 00 00 3A 6E A5 00 12 00 00 00 00 00 00 00 09 00 00 00 FF FF FF 00 1B 00 00 00 A6 CA F0 00 1C 00 00 00 C0 C0 C0 00 11 00 00 00 80 80 80 00 0D 00 00 00 0A 24 6A 00 0E 00 00 00 FF FF FF 00 1A 00 00 00 00 00 80 00 0B 00 00 00 D4 D0 C8 00 03 00 00 00 80 80 80 00 13 00 00 00 D4 D0 C8 00 18 00 00 00 FF FF E1 00 17 00 00 00 00 00 00 00 04 00 00 00 D4 D0 C8 00 07 00 00 00 00 00 00 00 00 00 00 00 D4 D0 C8 00 05 00 00 00 FF FF FF 00 06 00 00 00 00 00 00 00 08 00 00 00 00 00 00 00 01 00 00 00 00 00 00 00 | | | | |..... 2 02 00 00 00 03 10 00 10 00 00 00 00 00 00 00 00 44 65 73 6B 74 6F 70 20 32 00 00 43 3A 5C 57 49 4E 44 4F 57 53 5C 53 79 73 74 65 6D 33 32 5C 50 44 65 73 6B 5C 50 44 4D 4D 44 2E 45 58 45 00 06 00 00 00 00 02 00 00 00 1C 00 00 00 15 00 00 00 40 40 40 00 0F 00 00 00 D4 D0 C8 00 14 00 00 00 FF FF FF 00 16 00 00 00 D4 D0 C8 00 10 00 00 00 80 80 80 00 0A 00 00 00 D4 D0 C8 00 02 00 00 00 0A 24 6A 00 0C 00 00 00 80 80 80 00 01 00 00 00 3A 6E A5 00 12 00 00 00 00 00 00 00 09 00 00 00 FF FF FF 00 1B 00 00 00 A6 CA F0 00 1C 00 00 00 C0 C0 C0 00 11 00 00 00 80 80 80 00 0D 00 00 00 0A 24 6A 00 0E 00 00 00 FF FF FF 00 1A 00 00 00 00 00 80 00 0B 00 00 00 D4 D0 C8 00 03 00 00 00 80 80 80 00 13 00 00 00 D4 D0 C8 00 18 00 00 00 FF FF E1 00 17 00 00 00 00 00 00 00 04 00 00 00 D4 D0 C8 00 07 00 00 00 00 00 00 00 00 00 00 00 D4 D0 C8 00 05 00 00 00 FF FF FF 00 06 00 00 00 00 00 00 00 08 00 00 00 00 00 00 00 01 00 00 00 00 00 00 00 ____________________________________________ - HKEY_LOCAL_MACHINE |..... \SOFTWARE\Matrox\ | |..... \SOFTWARE\Matrox\ActiveMIL\ | | |..... Revision 7.10.240 | | |..... Version ActiveMILLite7.10 | | |..... \SOFTWARE\Matrox\ActiveMIL\7.10.240\ | | | |..... Version ActiveMILLite7.10 | | | |..... Type Lite | | | |..... Directory C:\Program Files\Matrox Imaging\ActiveMIL | | | |..... MIPDirectory C:\Program Files\Matrox Imaging | | | |..... BoardDetected True | | | |..... Folder Matrox Imaging Products\ActiveMIL | | | |..... MIPFolder Matrox Imaging Products | | | |..... Matrox DMA manager 65536 Kb | | | |..... ActiveMILExamples1394DefaultsDone False | | | |..... PositionX 0x00000087 | | | |..... PositionY 0x00000096 | | | |..... ActiveMILExamplesPositionX 0x00000009 | | | |..... ActiveMILExamplesPositionY 0x00000002 | | | |..... \SOFTWARE\Matrox\ActiveMIL\7.10.240\Default\ | | | | |..... \SOFTWARE\Matrox\ActiveMIL\7.10.240\Default\Digitizer\ | | | | | |..... Format Rs170.dcf | | | | | |..... DeviceNumber 0 | | | | |..... \SOFTWARE\Matrox\ActiveMIL\7.10.240\Default\Display\ | | | | | |..... DeviceNumber 268435456 | | | | | |..... Format [empty] | | | | | |..... DisplayType 268435456 | | | | |..... \SOFTWARE\Matrox\ActiveMIL\7.10.240\Default\GraphicContext\ | | | | |..... \SOFTWARE\Matrox\ActiveMIL\7.10.240\Default\Image\ | | | | | |..... NumberOfBands 1 | | | | | |..... SizeX 640 | | | | | |..... SizeY 480 | | | | |..... \SOFTWARE\Matrox\ActiveMIL\7.10.240\Default\System\ | | | | | |..... SystemType Host | | | | | |..... DeviceNumber 0 | | | |..... \SOFTWARE\Matrox\ActiveMIL\7.10.240\Files\ | | | | |..... \SOFTWARE\Matrox\ActiveMIL\7.10.240\Files\Registered\ | | | | | |..... "C:\Program Files\Matrox Imaging\ActiveMIL\controls\MIL.ocx" [empty] | | | | | |..... "C:\Program Files\Matrox Imaging\ActiveMIL\Controls\MILPropertyPages.dll" [empty] | | | | | |..... "C:\Program Files\Matrox Imaging\ActiveMIL\Controls\MILUserInterface.dll" [empty] | | | | | |..... "C:\Program Files\Matrox Imaging\ActiveMIL\containers\vc++\libraries\amilvc.dll" [empty] | | | | |..... \SOFTWARE\Matrox\ActiveMIL\7.10.240\Files\Shared\ | | | | | |..... C:\WINDOWS\System32\stdole2.tlb [empty] | | | | | |..... C:\WINDOWS\System32\dispex.dll [empty] | | | | | |..... C:\WINDOWS\System32\oleaut32.dll [empty] | | | | | |..... C:\WINDOWS\System32\olepro32.dll [empty] | | | | | |..... C:\WINDOWS\System32\Regsvr32.exe [empty] | | | | | |..... C:\WINDOWS\System32\asycfilt.dll [empty] | | | | | |..... C:\WINDOWS\System32\scrobj.dll [empty] | | | | | |..... C:\WINDOWS\System32\scrrun.dll [empty] | | | | | |..... C:\WINDOWS\System32\vbscript.dll [empty] | | | | | |..... C:\WINDOWS\System32\Comctl32.ocx [empty] | | | | | |..... C:\WINDOWS\System32\Mscomctl.ocx [empty] | | | | | |..... C:\WINDOWS\System32\comcat.dll [empty] | | | | | |..... C:\WINDOWS\System32\Msvbvm60.dll [empty] | | | | | |..... C:\WINDOWS\System32\Tabctl32.ocx [empty] | | | | | |..... C:\WINDOWS\System32\HHActiveX.dll [empty] | | | | | |..... C:\WINDOWS\System32\Hhupd.exe [empty] | | | | |..... \SOFTWARE\Matrox\ActiveMIL\7.10.240\Files\Standard\ | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\Demos\AMILDebug.exe [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\Demos\AMILGMFProject.exe [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\controls\MILPropertyPages.dll [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\controls\MILUserInterface.dll [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\controls\MIL.ocx [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\controls\ActiveMILRegister.exe [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\controls\amil.avi [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\help\HelpOnHelp.chm [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\help\ActiveMILGlossary.chm [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\help\ActiveMILHelp.chm [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\help\ActiveMILSettings.htm [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\help\ActiveMILUserGuide.chm [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\help\ActiveMILBoardSpecificNotes.chm [empty] | | | | | |..... C:\WINDOWS\System32\digctrl.dll [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\ActiveMILDefault.exe [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\ReadMe.html [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\ActiveMILExamples.exe [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\examples\MError.txt [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\examples\MDisplayOverlay.txt [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\examples\MStart.txt [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\examples\VC++NativeCOM\MError\StdAfx.h [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\examples\VC++NativeCOM\MError\MError.cpp [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\examples\VC++NativeCOM\MError\MError.dsp [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\examples\VC++NativeCOM\MError\MError.dsw [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\examples\VC++NativeCOM\MError\MError.h [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\examples\VC++NativeCOM\MError\MError.opt [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\examples\VC++NativeCOM\MError\MError.rc [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\examples\VC++NativeCOM\MError\MErrorDlg.cpp [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\examples\VC++NativeCOM\MError\MErrorDlg.h [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\examples\VC++NativeCOM\MError\ReadMe.txt [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\examples\VC++NativeCOM\MError\resource.h [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\examples\VC++NativeCOM\MError\StdAfx.cpp [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\examples\VC++NativeCOM\MError\MError.clw [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\examples\VC++NativeCOM\MError\Release\MError.exe [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\examples\VC++NativeCOM\MError\res\MError.rc2 [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\examples\VC++NativeCOM\MError\res\MError.ico [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\examples\VC++NativeCOM\MDisplayOverlay\StdAfx.h [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\examples\VC++NativeCOM\MDisplayOverlay\MDisplayOverlay.cpp [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\examples\VC++NativeCOM\MDisplayOverlay\MDisplayOverlay.dsp [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\examples\VC++NativeCOM\MDisplayOverlay\MDisplayOverlay.dsw [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\examples\VC++NativeCOM\MDisplayOverlay\MDisplayOverlay.h [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\examples\VC++NativeCOM\MDisplayOverlay\MDisplayOverlay.opt [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\examples\VC++NativeCOM\MDisplayOverlay\MDisplayOverlay.rc [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\examples\VC++NativeCOM\MDisplayOverlay\MDisplayOverlayDlg.cpp [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\examples\VC++NativeCOM\MDisplayOverlay\MDisplayOverlayDlg.h [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\examples\VC++NativeCOM\MDisplayOverlay\ReadMe.txt [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\examples\VC++NativeCOM\MDisplayOverlay\resource.h [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\examples\VC++NativeCOM\MDisplayOverlay\StdAfx.cpp [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\examples\VC++NativeCOM\MDisplayOverlay\MDisplayOverlay.clw [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\examples\VC++NativeCOM\MDisplayOverlay\Release\MDisplayOverlay.exe [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\examples\VC++NativeCOM\MDisplayOverlay\res\MDisplayOverlay.rc2 [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\examples\VC++NativeCOM\MDisplayOverlay\res\MDisplayOverlay.ico [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\examples\VC++NativeCOM\MStart\StdAfx.h [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\examples\VC++NativeCOM\MStart\MStart.cpp [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\examples\VC++NativeCOM\MStart\MStart.dsp [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\examples\VC++NativeCOM\MStart\MStart.dsw [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\examples\VC++NativeCOM\MStart\MStart.h [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\examples\VC++NativeCOM\MStart\MStart.opt [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\examples\VC++NativeCOM\MStart\MStart.rc [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\examples\VC++NativeCOM\MStart\MStartDlg.cpp [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\examples\VC++NativeCOM\MStart\MStartDlg.h [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\examples\VC++NativeCOM\MStart\ReadMe.txt [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\examples\VC++NativeCOM\MStart\resource.h [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\examples\VC++NativeCOM\MStart\StdAfx.cpp [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\examples\VC++NativeCOM\MStart\MStart.clw [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\examples\VC++NativeCOM\MStart\Release\MStart.exe [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\examples\VC++NativeCOM\MStart\res\MStart.rc2 [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\examples\VC++NativeCOM\MStart\res\MStart.ico [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\Containers\VC++\include\WarpQuadrilateral.h [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\Containers\VC++\include\Angle.h [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\Containers\VC++\include\Application.h [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\Containers\VC++\include\ApplicationTimer.h [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\Containers\VC++\include\AvailableSystem.h [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\Containers\VC++\include\AvailableSystems.h [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\Containers\VC++\include\AVIFileHandler.h [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\Containers\VC++\include\BlobAnalysis.h [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\Containers\VC++\include\BlobChain.h [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\Containers\VC++\include\BlobChains.h [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\Containers\VC++\include\BlobResult.h [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\Containers\VC++\include\BlobResults.h [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\Containers\VC++\include\BlobRun.h [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\Containers\VC++\include\BlobRuns.h [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\Containers\VC++\include\Buffer.h [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\Containers\VC++\include\Code.h [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\Containers\VC++\include\CodeResults.h [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\Containers\VC++\include\CodeTargetGrid.h [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\Containers\VC++\include\Digitizer.h [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\Containers\VC++\include\Display.h [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\Containers\VC++\include\ExternalWindow.h [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\Containers\VC++\include\FeatureBox.h [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\Containers\VC++\include\FeatureCenterOfGravity.h [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\Containers\VC++\include\FeatureContactPoints.h [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\Containers\VC++\include\FeatureGeneralFeret.h [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\Containers\VC++\include\FeatureGeneralMoment.h [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\Containers\VC++\include\FeatureList.h [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\Containers\VC++\include\Filter.h [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\Containers\VC++\include\Filters.h [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\Containers\VC++\include\FocusParameters.h [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\Containers\VC++\include\GrabInDisplay.h [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\Containers\VC++\include\GraphicContext.h [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\Containers\VC++\include\Image.h [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\Containers\VC++\include\ImageProcessing.h [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\Containers\VC++\include\ImageProcessingResults.h [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\Containers\VC++\include\JPEGAlgorithm.h [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\Containers\VC++\include\Kernel.h [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\Containers\VC++\include\Kernels.h [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\Containers\VC++\include\LUT.h [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\Containers\VC++\include\LUTs.h [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\Containers\VC++\include\MarkerPolarity.h [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\Containers\VC++\include\MarkerPosition.h [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\Containers\VC++\include\MarkerValue.h [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\Containers\VC++\include\MarkerValueEdge.h [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\Containers\VC++\include\Measurement.h [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\Containers\VC++\include\MeasurementEdgeResult.h [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\Containers\VC++\include\MeasurementList.h [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\Containers\VC++\include\MeasurementMarker.h [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\Containers\VC++\include\MeasurementMarkers.h [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\Containers\VC++\include\MeasurementPixelAspectRatio.h [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\Containers\VC++\include\MeasurementResult.h [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\Containers\VC++\include\MeasurementResults.h [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\Containers\VC++\include\OCRCharacterMetrics.h [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\Containers\VC++\include\OCRConstraint.h [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\Containers\VC++\include\OCRConstraints.h [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\Containers\VC++\include\OCRFont.h [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\Containers\VC++\include\OCRResultCharacter.h [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\Containers\VC++\include\OCRResultCharacters.h [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\Containers\VC++\include\OCRResults.h [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\Containers\VC++\include\OCRTargetCharacter.h [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\Containers\VC++\include\PatternMatching.h [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\Containers\VC++\include\PatternMatchingModel.h [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\Containers\VC++\include\PatternMatchingModels.h [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\Containers\VC++\include\PatternMatchingResult.h [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\Containers\VC++\include\PatternMatchingResults.h [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\Containers\VC++\include\PatternMatchingSearchAlgorithm.h [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\Containers\VC++\include\Pixel.h [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\Containers\VC++\include\Pixels.h [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\Containers\VC++\include\PolarParameters.h [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\Containers\VC++\include\RegionOfInterest.h [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\Containers\VC++\include\RegionOfInterest2.h [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\Containers\VC++\include\ResultEdgeValues.h [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\Containers\VC++\include\SerialPort.h [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\Containers\VC++\include\SortingKey.h [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\Containers\VC++\include\SortingKeys.h [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\Containers\VC++\include\StructuringElement.h [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\Containers\VC++\include\StructuringElements.h [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\Containers\VC++\include\System.h [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\Containers\VC++\include\WarpLUT.h [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\Containers\VC++\include\WarpParameters.h [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\Containers\VC++\include\WarpRectangle.h [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\Containers\VC++\include\CharacterRecognition.h [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\Containers\VC++\include\CalibrationGrid.h [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\Containers\VC++\include\CalibrationPoint.h [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\Containers\VC++\include\CalibrationPoints.h [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\Containers\VC++\include\CalibrationRelativeOrigin.h [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\Containers\VC++\include\CalibrationResults.h [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\Containers\VC++\include\CalibrationCameraPosition.h [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\Containers\VC++\include\Calibration.h [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\Containers\VC++\include\ImageCalibrationInfo.h [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\Containers\VC++\include\ActiveMILPatternMatchingTypes.h [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\Containers\VC++\include\ActiveMILBlobAnalysisTypes.h [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\Containers\VC++\include\ActiveMILCalibrationTypes.h [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\Containers\VC++\include\ActiveMILCharacterRecognitionTypes.h [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\Containers\VC++\include\ActiveMILCodeTypes.h [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\Containers\VC++\include\ActiveMILImageProcessingTypes.h [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\Containers\VC++\include\ActiveMILMeasurementTypes.h [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\Containers\VC++\include\ActiveMILBaseTypes.h [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\Containers\VC++\include\ActiveMILUtils.h [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\Containers\VC++\include\SystemUserBits.h [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\Containers\VC++\include\SystemUserBit.h [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\Containers\VC++\include\JPEG2000Algorithm.h [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\Containers\VC++\libraries\ActiveMILD.lib [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\Containers\VC++\libraries\ActiveMIL.lib [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\Containers\VC++\libraries\Amilvc.dll [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\Containers\VC++\libraries\AMILAppWizard.awx [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\Containers\VC++\libraries\ActiveMILWD.lib [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\Containers\VC++\libraries\ActiveMILW.lib [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\NativeMIL\Include\Mwinmil.h [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\NativeMIL\Include\Mildec.h [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\NativeMIL\Include\Milerr.h [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\NativeMIL\Include\Milnat.h [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\NativeMIL\Include\Milos.h [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\NativeMIL\Include\Milproto.h [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\NativeMIL\Include\Milsetup.h [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\NativeMIL\Include\Mil.h [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\NativeMIL\Library\msvcrt.lib [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\NativeMIL\Library\mil.lib [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\NativeMIL\Library\mwinmil.res [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\NativeMIL\Library\milvb.lib [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\NativeMIL\Library\mil.dbg [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\NativeMIL\Library\milvb.dbg [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\NativeMIL\Library\milvga.dbg [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\NativeMIL\Library\milcor.dbg [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\NativeMIL\Library\milcor2.dbg [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\NativeMIL\Library\milmet2.dbg [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\NativeMIL\Library\milmet2cl.dbg [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\NativeMIL\Library\milmet2d.dbg [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\NativeMIL\Library\milorion.dbg [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\NativeMIL\Library\milpul.dbg [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\NativeMIL\Library\mil1394.dbg [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\NativeMIL\Library\milgen.dbg [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\NativeMIL\Library\milvga.lib [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\NativeMIL\Library\milcor.lib [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\NativeMIL\Library\milcor2.lib [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\NativeMIL\Library\milgen.lib [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\NativeMIL\Library\milmet2.lib [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\NativeMIL\Library\milmet2cl.lib [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\NativeMIL\Library\milmet2d.lib [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\NativeMIL\Library\milorion.lib [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\NativeMIL\Library\milpul.lib [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\NativeMIL\Library\mil1394.lib [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\NativeMIL\Library\milvhook.dbg [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\NativeMIL\Library\milvhook.lib [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\NativeMIL\Library\MSVCRT.DLL [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\NativeMIL\Library\msvcirt.dll [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\NativeMIL\Library\mfc42.dll [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\NativeMIL\Library\MSVCRT40.DLL [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\NativeMIL\Library\milcronos.dbg [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\NativeMIL\Library\milcronos.lib [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\NativeMIL\Library\MILDCOM.dll [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\NativeMIL\Library\MILDCOM.lib [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\NativeMIL\Library\mildcom.dbg [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\examples\MMultiThreadLite.txt [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\examples\MMultipleDisplayLite.txt [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\examples\MMultipleDocumentLite.txt [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\examples\VC++NativeCOM\MMultiThreadLite\StdAfx.h [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\examples\VC++NativeCOM\MMultiThreadLite\MMultiThreadLite.cpp [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\examples\VC++NativeCOM\MMultiThreadLite\MMultiThreadLite.dsp [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\examples\VC++NativeCOM\MMultiThreadLite\MMultiThreadLite.dsw [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\examples\VC++NativeCOM\MMultiThreadLite\MMultiThreadLite.h [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\examples\VC++NativeCOM\MMultiThreadLite\MMultiThreadLite.opt [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\examples\VC++NativeCOM\MMultiThreadLite\MMultiThreadLite.rc [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\examples\VC++NativeCOM\MMultiThreadLite\MMultiThreadLiteDlg.cpp [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\examples\VC++NativeCOM\MMultiThreadLite\MMultiThreadLiteDlg.h [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\examples\VC++NativeCOM\MMultiThreadLite\ReadMe.txt [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\examples\VC++NativeCOM\MMultiThreadLite\resource.h [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\examples\VC++NativeCOM\MMultiThreadLite\StdAfx.cpp [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\examples\VC++NativeCOM\MMultiThreadLite\MMultiThreadLite.clw [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\examples\VC++NativeCOM\MMultiThreadLite\Release\MMultiThreadLite.exe [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\examples\VC++NativeCOM\MMultiThreadLite\res\MMultiThreadLite.rc2 [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\examples\VC++NativeCOM\MMultiThreadLite\res\MMultiThreadLite.ico [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\examples\VC++NativeCOM\MMultipleDisplayLite\StdAfx.h [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\examples\VC++NativeCOM\MMultipleDisplayLite\MMultipleDisplayLite.cpp [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\examples\VC++NativeCOM\MMultipleDisplayLite\MMultipleDisplayLite.dsp [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\examples\VC++NativeCOM\MMultipleDisplayLite\MMultipleDisplayLite.dsw [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\examples\VC++NativeCOM\MMultipleDisplayLite\MMultipleDisplayLite.h [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\examples\VC++NativeCOM\MMultipleDisplayLite\MMultipleDisplayLite.opt [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\examples\VC++NativeCOM\MMultipleDisplayLite\MMultipleDisplayLite.rc [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\examples\VC++NativeCOM\MMultipleDisplayLite\MMultipleDisplayLiteDlg.cpp [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\examples\VC++NativeCOM\MMultipleDisplayLite\MMultipleDisplayLiteDlg.h [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\examples\VC++NativeCOM\MMultipleDisplayLite\ReadMe.txt [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\examples\VC++NativeCOM\MMultipleDisplayLite\resource.h [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\examples\VC++NativeCOM\MMultipleDisplayLite\StdAfx.cpp [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\examples\VC++NativeCOM\MMultipleDisplayLite\MMultipleDisplayLite.clw [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\examples\VC++NativeCOM\MMultipleDisplayLite\Release\MMultipleDisplayLite.exe [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\examples\VC++NativeCOM\MMultipleDisplayLite\res\MMultipleDisplayLite.rc2 [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\examples\VC++NativeCOM\MMultipleDisplayLite\res\MMultipleDisplayLite.ico [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\examples\VC++NativeCOM\MMultipleDocumentLite\StdAfx.h [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\examples\VC++NativeCOM\MMultipleDocumentLite\ChildFrm.h [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\examples\VC++NativeCOM\MMultipleDocumentLite\DocumentDlg.cpp [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\examples\VC++NativeCOM\MMultipleDocumentLite\DocumentDlg.h [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\examples\VC++NativeCOM\MMultipleDocumentLite\ImageProcessing.cpp [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\examples\VC++NativeCOM\MMultipleDocumentLite\ImageProcessing.h [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\examples\VC++NativeCOM\MMultipleDocumentLite\MainFrm.cpp [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\examples\VC++NativeCOM\MMultipleDocumentLite\MainFrm.h [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\examples\VC++NativeCOM\MMultipleDocumentLite\MMultipleDocumentLite.clw [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\examples\VC++NativeCOM\MMultipleDocumentLite\MMultipleDocumentLite.cpp [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\examples\VC++NativeCOM\MMultipleDocumentLite\MMultipleDocumentLite.dsp [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\examples\VC++NativeCOM\MMultipleDocumentLite\MMultipleDocumentLite.dsw [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\examples\VC++NativeCOM\MMultipleDocumentLite\MMultipleDocumentLite.h [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\examples\VC++NativeCOM\MMultipleDocumentLite\MMultipleDocumentLite.opt [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\examples\VC++NativeCOM\MMultipleDocumentLite\MMultipleDocumentLite.rc [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\examples\VC++NativeCOM\MMultipleDocumentLite\MMultipleDocumentLiteDoc.cpp [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\examples\VC++NativeCOM\MMultipleDocumentLite\MMultipleDocumentLiteDoc.h [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\examples\VC++NativeCOM\MMultipleDocumentLite\MMultipleDocumentLiteView.cpp [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\examples\VC++NativeCOM\MMultipleDocumentLite\MMultipleDocumentLiteView.h [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\examples\VC++NativeCOM\MMultipleDocumentLite\NewImageDlg.cpp [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\examples\VC++NativeCOM\MMultipleDocumentLite\NewImageDlg.h [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\examples\VC++NativeCOM\MMultipleDocumentLite\OptionsDlg.cpp [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\examples\VC++NativeCOM\MMultipleDocumentLite\OptionsDlg.h [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\examples\VC++NativeCOM\MMultipleDocumentLite\ReadMe.txt [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\examples\VC++NativeCOM\MMultipleDocumentLite\resource.h [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\examples\VC++NativeCOM\MMultipleDocumentLite\StdAfx.cpp [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\examples\VC++NativeCOM\MMultipleDocumentLite\ChildFrm.cpp [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\examples\VC++NativeCOM\MMultipleDocumentLite\Release\MMultipleDocumentLite.exe [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\examples\VC++NativeCOM\MMultipleDocumentLite\res\Toolbar.bmp [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\examples\VC++NativeCOM\MMultipleDocumentLite\res\MMultipleDocumentLite.ico [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\examples\VC++NativeCOM\MMultipleDocumentLite\res\MMultipleDocumentLite.rc2 [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\examples\VC++NativeCOM\MMultipleDocumentLite\res\MMultipleDocumentLiteDoc.ico [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\examples\VC++NativeCOM\MMultipleDocumentLite\res\ActiveMIL.ico [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\examples\MGrabContinuous.txt [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\examples\MGrabMonoshot.txt [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\examples\MGrabEvent.txt [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\examples\MGrabSequence.txt [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\examples\VC++NativeCOM\MGrabContinuous\StdAfx.h [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\examples\VC++NativeCOM\MGrabContinuous\MGrabContinuous.cpp [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\examples\VC++NativeCOM\MGrabContinuous\MGrabContinuous.dsp [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\examples\VC++NativeCOM\MGrabContinuous\MGrabContinuous.dsw [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\examples\VC++NativeCOM\MGrabContinuous\MGrabContinuous.h [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\examples\VC++NativeCOM\MGrabContinuous\MGrabContinuous.opt [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\examples\VC++NativeCOM\MGrabContinuous\MGrabContinuous.rc [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\examples\VC++NativeCOM\MGrabContinuous\MGrabContinuousDlg.cpp [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\examples\VC++NativeCOM\MGrabContinuous\MGrabContinuousDlg.h [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\examples\VC++NativeCOM\MGrabContinuous\ReadMe.txt [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\examples\VC++NativeCOM\MGrabContinuous\resource.h [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\examples\VC++NativeCOM\MGrabContinuous\StdAfx.cpp [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\examples\VC++NativeCOM\MGrabContinuous\MGrabContinuous.clw [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\examples\VC++NativeCOM\MGrabContinuous\Release\MGrabContinuous.exe [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\examples\VC++NativeCOM\MGrabContinuous\res\MGrabContinuous.rc2 [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\examples\VC++NativeCOM\MGrabContinuous\res\MGrabContinuous.ico [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\examples\VC++NativeCOM\MGrabMonoshot\StdAfx.h [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\examples\VC++NativeCOM\MGrabMonoshot\MGrabMonoshot.cpp [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\examples\VC++NativeCOM\MGrabMonoshot\MGrabMonoshot.dsp [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\examples\VC++NativeCOM\MGrabMonoshot\MGrabMonoshot.dsw [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\examples\VC++NativeCOM\MGrabMonoshot\MGrabMonoshot.h [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\examples\VC++NativeCOM\MGrabMonoshot\MGrabMonoshot.opt [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\examples\VC++NativeCOM\MGrabMonoshot\MGrabMonoshot.rc [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\examples\VC++NativeCOM\MGrabMonoshot\MGrabMonoshotDlg.cpp [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\examples\VC++NativeCOM\MGrabMonoshot\MGrabMonoshotDlg.h [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\examples\VC++NativeCOM\MGrabMonoshot\ReadMe.txt [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\examples\VC++NativeCOM\MGrabMonoshot\resource.h [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\examples\VC++NativeCOM\MGrabMonoshot\StdAfx.cpp [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\examples\VC++NativeCOM\MGrabMonoshot\MGrabMonoshot.clw [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\examples\VC++NativeCOM\MGrabMonoshot\Release\MGrabMonoshot.exe [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\examples\VC++NativeCOM\MGrabMonoshot\res\MGrabMonoshot.rc2 [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\examples\VC++NativeCOM\MGrabMonoshot\res\MGrabMonoshot.ico [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\examples\VC++NativeCOM\MGrabEvent\StdAfx.h [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\examples\VC++NativeCOM\MGrabEvent\MGrabEvent.cpp [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\examples\VC++NativeCOM\MGrabEvent\MGrabEvent.dsp [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\examples\VC++NativeCOM\MGrabEvent\MGrabEvent.dsw [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\examples\VC++NativeCOM\MGrabEvent\MGrabEvent.h [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\examples\VC++NativeCOM\MGrabEvent\MGrabEvent.opt [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\examples\VC++NativeCOM\MGrabEvent\MGrabEvent.rc [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\examples\VC++NativeCOM\MGrabEvent\MGrabEventDlg.cpp [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\examples\VC++NativeCOM\MGrabEvent\MGrabEventDlg.h [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\examples\VC++NativeCOM\MGrabEvent\ReadMe.txt [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\examples\VC++NativeCOM\MGrabEvent\resource.h [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\examples\VC++NativeCOM\MGrabEvent\StdAfx.cpp [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\examples\VC++NativeCOM\MGrabEvent\MGrabEvent.clw [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\examples\VC++NativeCOM\MGrabEvent\Release\MGrabEvent.exe [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\examples\VC++NativeCOM\MGrabEvent\res\MGrabEvent.rc2 [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\examples\VC++NativeCOM\MGrabEvent\res\MGrabEvent.ico [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\examples\VC++NativeCOM\MGrabSequence\StdAfx.h [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\examples\VC++NativeCOM\MGrabSequence\MGrabSequence.cpp [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\examples\VC++NativeCOM\MGrabSequence\MGrabSequence.dsp [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\examples\VC++NativeCOM\MGrabSequence\MGrabSequence.dsw [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\examples\VC++NativeCOM\MGrabSequence\MGrabSequence.h [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\examples\VC++NativeCOM\MGrabSequence\MGrabSequence.opt [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\examples\VC++NativeCOM\MGrabSequence\MGrabSequence.rc [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\examples\VC++NativeCOM\MGrabSequence\MGrabSequenceDlg.cpp [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\examples\VC++NativeCOM\MGrabSequence\MGrabSequenceDlg.h [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\examples\VC++NativeCOM\MGrabSequence\ReadMe.txt [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\examples\VC++NativeCOM\MGrabSequence\resource.h [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\examples\VC++NativeCOM\MGrabSequence\StdAfx.cpp [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\examples\VC++NativeCOM\MGrabSequence\MGrabSequence.clw [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\examples\VC++NativeCOM\MGrabSequence\Release\MGrabSequence.exe [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\examples\VC++NativeCOM\MGrabSequence\res\MGrabSequence.rc2 [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\examples\VC++NativeCOM\MGrabSequence\res\MGrabSequence.ico [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\examples\MDoubleBufferingLite.txt [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\examples\VC++NativeCOM\MDoubleBufferingLite\StdAfx.h [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\examples\VC++NativeCOM\MDoubleBufferingLite\MDoubleBufferingLite.cpp [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\examples\VC++NativeCOM\MDoubleBufferingLite\MDoubleBufferingLite.dsp [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\examples\VC++NativeCOM\MDoubleBufferingLite\MDoubleBufferingLite.dsw [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\examples\VC++NativeCOM\MDoubleBufferingLite\MDoubleBufferingLite.h [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\examples\VC++NativeCOM\MDoubleBufferingLite\MDoubleBufferingLite.opt [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\examples\VC++NativeCOM\MDoubleBufferingLite\MDoubleBufferingLite.rc [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\examples\VC++NativeCOM\MDoubleBufferingLite\MDoubleBufferingLiteDlg.cpp [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\examples\VC++NativeCOM\MDoubleBufferingLite\MDoubleBufferingLiteDlg.h [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\examples\VC++NativeCOM\MDoubleBufferingLite\ReadMe.txt [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\examples\VC++NativeCOM\MDoubleBufferingLite\resource.h [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\examples\VC++NativeCOM\MDoubleBufferingLite\StdAfx.cpp [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\examples\VC++NativeCOM\MDoubleBufferingLite\MDoubleBufferingLite.clw [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\examples\VC++NativeCOM\MDoubleBufferingLite\Release\MDoubleBufferingLite.exe [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\examples\VC++NativeCOM\MDoubleBufferingLite\res\MDoubleBufferingLite.rc2 [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\examples\VC++NativeCOM\MDoubleBufferingLite\res\MDoubleBufferingLite.ico [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\examples\MColorLite.txt [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\examples\VC++NativeCOM\MColorLite\StdAfx.h [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\examples\VC++NativeCOM\MColorLite\MColorLite.cpp [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\examples\VC++NativeCOM\MColorLite\MColorLite.dsp [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\examples\VC++NativeCOM\MColorLite\MColorLite.dsw [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\examples\VC++NativeCOM\MColorLite\MColorLite.h [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\examples\VC++NativeCOM\MColorLite\MColorLite.opt [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\examples\VC++NativeCOM\MColorLite\MColorLite.rc [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\examples\VC++NativeCOM\MColorLite\MColorLiteDlg.cpp [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\examples\VC++NativeCOM\MColorLite\MColorLiteDlg.h [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\examples\VC++NativeCOM\MColorLite\ReadMe.txt [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\examples\VC++NativeCOM\MColorLite\resource.h [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\examples\VC++NativeCOM\MColorLite\StdAfx.cpp [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\examples\VC++NativeCOM\MColorLite\MColorLite.clw [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\examples\VC++NativeCOM\MColorLite\release\MColorLite.exe [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\examples\VC++NativeCOM\MColorLite\res\MColorLite.rc2 [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\examples\VC++NativeCOM\MColorLite\res\MColorLite.ico [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\examples\VC++NativeCOM\Examples.opt [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\examples\VC++NativeCOM\Examples.dsw [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\NativeMIL\Library\milvhook.dll [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\NativeMIL\Library\milvga.dll [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\NativeMIL\Include\orion.h [empty] | | | | | |..... C:\Program Files\Matrox Imaging\ActiveMIL\NativeMIL\Library\milorion.dll [empty] | | | | |..... \SOFTWARE\Matrox\ActiveMIL\7.10.240\Files\System\ | | | | | |..... C:\WINDOWS\System32\MILVC.dll [empty] | | | | |..... \SOFTWARE\Matrox\ActiveMIL\7.10.240\Files\SystemRegistered\ | | | | | |..... "C:\WINDOWS\System32\olepro32.dll" [empty] | | | | | |..... "C:\WINDOWS\System32\oleaut32.dll" [empty] | | | | | |..... "C:\WINDOWS\System32\mfc42.dll" [empty] | | | | | |..... "C:\WINDOWS\System32\dispex.dll" [empty] | | | | | |..... "C:\WINDOWS\System32\vbscript.dll" [empty] | | | | | |..... "C:\WINDOWS\System32\scrrun.dll" [empty] | | | | | |..... "C:\WINDOWS\System32\tabctl32.ocx" [empty] | | | | | |..... "C:\WINDOWS\System32\mscomctl.ocx" [empty] | | | | | |..... "C:\WINDOWS\System32\comctl32.ocx" [empty] | | | | | |..... "C:\WINDOWS\System32\scrobj.dll" [empty] | | | |..... \SOFTWARE\Matrox\ActiveMIL\7.10.240\InstalledEnvironments\ | | | | |..... Default VC++NativeCOM | | | | |..... \SOFTWARE\Matrox\ActiveMIL\7.10.240\InstalledEnvironments\VC++NativeCOM\ | | | | | |..... IDEPath .\ | | | | | |..... Description Microsoft Visual C++ | | | | | |..... MultiprojectSupport 0x00000001 | | | | | |..... ProjectFileExtension .dsw | | | | | |..... WorkspaceFileExtension .dsw | | | |..... \SOFTWARE\Matrox\ActiveMIL\7.10.240\SystemInitFlag\ | | | | |..... Complete 0x00000000 | | | | |..... Default 0x10000000 | | | | |..... DMA memory mask 0x0000FF00 | | | | |..... No direct draw 0x00080000 | | | | |..... No field start interrupts 0x00020000 | | | | |..... No interrupts 0x00010000 | | | | |..... Partial 0x00000001 | | | | |..... Pre-allocate DMA memory 0x00000080 | | | | |..... Use DMA for display buffer 0x00000020 | | | | |..... Use DMA for grab buffers 0x00000040 | | | | |..... Use DMA for processing buffers 0x00000010 | |..... \SOFTWARE\Matrox\Images\ | | |..... Directory C:\Program Files\Matrox Imaging\Images | | |..... \SOFTWARE\Matrox\Images\Files\ | | | |..... \SOFTWARE\Matrox\Images\Files\Standard\ | | | | |..... C:\Program Files\Matrox Imaging\Images\Rotwafer.mim [empty] | | | | |..... C:\Program Files\Matrox Imaging\Images\Board.mim [empty] | | | | |..... C:\Program Files\Matrox Imaging\Images\Cell.mim [empty] | | | | |..... C:\Program Files\Matrox Imaging\Images\lead.mim [empty] | | | | |..... C:\Program Files\Matrox Imaging\Images\PLIERS.mim [empty] | | | | |..... C:\Program Files\Matrox Imaging\Images\rotplier.mim [empty] | | | | |..... C:\Program Files\Matrox Imaging\Images\Bird.mim [empty] | |..... \SOFTWARE\Matrox\Imaging Board\ | | |..... Directory C:\Program Files\Matrox Imaging\drivers | | |..... Version 1.0.0.7 | | |..... \SOFTWARE\Matrox\Imaging Board\Orion\ | | | |..... Directory C:\Program Files\Matrox Imaging\drivers\Orion | | | |..... DCFPath C:\Program Files\Matrox Imaging\drivers\Orion\dcf | | | |..... Description Matrox Orion board | | | |..... InitFlag 0x10090001 | | | |..... Library milorion.dll | | | |..... RealDevice 0x00000000 | | | |..... SystemType 0x00000019 | | | |..... \SOFTWARE\Matrox\Imaging Board\Orion\Files\ | | | | |..... \SOFTWARE\Matrox\Imaging Board\Orion\Files\Standard\ | | | | | |..... C:\Program Files\Matrox Imaging\drivers\orion\dcf\CCIR.DCF [empty] | | | | | |..... C:\Program Files\Matrox Imaging\drivers\orion\dcf\ccirrgb.dcf [empty] | | | | | |..... C:\Program Files\Matrox Imaging\drivers\orion\dcf\NTSC.DCF [empty] | | | | | |..... C:\Program Files\Matrox Imaging\drivers\orion\dcf\NTSCRGB.DCF [empty] | | | | | |..... C:\Program Files\Matrox Imaging\drivers\orion\dcf\NTSCYC.DCF [empty] | | | | | |..... C:\Program Files\Matrox Imaging\drivers\orion\dcf\PAL.DCF [empty] | | | | | |..... C:\Program Files\Matrox Imaging\drivers\orion\dcf\PALRGB.DCF [empty] | | | | | |..... C:\Program Files\Matrox Imaging\drivers\orion\dcf\PALYC.DCF [empty] | | | | | |..... C:\Program Files\Matrox Imaging\drivers\orion\dcf\RS170.DCF [empty] | | | | | |..... C:\Program Files\Matrox Imaging\drivers\orion\dcf\rs170Rgb.dcf [empty] | | | | | |..... C:\Program Files\Matrox Imaging\drivers\doc\milorion.txt [empty] | | | | | |..... C:\WINDOWS\System32\milorion.dll [empty] | | | | | |..... C:\Program Files\Matrox Imaging\drivers\orion\drivernt\orion.sys [empty] | | | | | |..... C:\Program Files\Matrox Imaging\drivers\orion\drivernt\mildrv.exe [empty] | | | | | |..... C:\Program Files\Matrox Imaging\drivers\orion\drivernt\mtxdma.sys [empty] | | | | | |..... C:\Program Files\Matrox Imaging\drivers\win2000\drvinst.exe [empty] | | | | | |..... C:\Program Files\Matrox Imaging\drivers\win2000\Mtxwinci.dll [empty] | | | | | |..... C:\Program Files\Matrox Imaging\drivers\win2000\MtxImg.inf [empty] | | | |..... \SOFTWARE\Matrox\Imaging Board\Orion\Keys\ | | | | |..... ORIONDCF SYSTEM\CurrentControlSet\Control\Session Manager\Environment | | | |..... \SOFTWARE\Matrox\Imaging Board\Orion\SupportedDigitizerFormats\ | | | | |..... Default 0x00001CFD | | | |..... \SOFTWARE\Matrox\Imaging Board\Orion\SupportedDisplayFormats\ | | | | |..... Default 0x00000000 | | |..... \SOFTWARE\Matrox\Imaging Board\VGA\ | | | |..... RealDevice 0x00000000 | | | |..... \SOFTWARE\Matrox\Imaging Board\VGA\Files\ | | | | |..... \SOFTWARE\Matrox\Imaging Board\VGA\Files\Standard\ | | | | | |..... C:\Program Files\Matrox Imaging\drivers\doc\Milvga.txt [empty] | | | | | |..... C:\WINDOWS\System32\milvhook.dll [empty] | | | | | |..... C:\WINDOWS\System32\milvga.dll [empty] | | | | | |..... C:\Program Files\Matrox Imaging\drivers\VGA\vcf\1024x768x32@60hz.vcf [empty] | | | | | |..... C:\Program Files\Matrox Imaging\drivers\VGA\vcf\1024x768x32@70hz.vcf [empty] | | | | | |..... C:\Program Files\Matrox Imaging\drivers\VGA\vcf\1024x768x32@72hz.vcf [empty] | | | | | |..... C:\Program Files\Matrox Imaging\drivers\VGA\vcf\1024x768x8@60hz.vcf [empty] | | | | | |..... C:\Program Files\Matrox Imaging\drivers\VGA\vcf\1024x768x8@72hz.vcf [empty] | | | | | |..... C:\Program Files\Matrox Imaging\drivers\VGA\vcf\1152x864x32@70hz.vcf [empty] | | | | | |..... C:\Program Files\Matrox Imaging\drivers\VGA\vcf\1152x864x8@70hz.vcf [empty] | | | | | |..... C:\Program Files\Matrox Imaging\drivers\VGA\vcf\1280x1024x32@60hz.vcf [empty] | | | | | |..... C:\Program Files\Matrox Imaging\drivers\VGA\vcf\1280x1024x32@75hz.vcf [empty] | | | | | |..... C:\Program Files\Matrox Imaging\drivers\VGA\vcf\1280x1024x8@60hz.vcf [empty] | | | | | |..... C:\Program Files\Matrox Imaging\drivers\VGA\vcf\1280x1024x8@75hz.vcf [empty] | | | | | |..... C:\Program Files\Matrox Imaging\drivers\VGA\vcf\640x480x32@60hz.vcf [empty] | | | | | |..... C:\Program Files\Matrox Imaging\drivers\VGA\vcf\640x480x32@72hz.vcf [empty] | | | | | |..... C:\Program Files\Matrox Imaging\drivers\VGA\vcf\640x480x8@60hz.vcf [empty] | | | | | |..... C:\Program Files\Matrox Imaging\drivers\VGA\vcf\640x480x8@72hz.vcf [empty] | | | | | |..... C:\Program Files\Matrox Imaging\drivers\VGA\vcf\800x600x32@60hz.vcf [empty] | | | | | |..... C:\Program Files\Matrox Imaging\drivers\VGA\vcf\800x600x32@72hz.vcf [empty] | | | | | |..... C:\Program Files\Matrox Imaging\drivers\VGA\vcf\800x600x8@60hz.vcf [empty] | | | | | |..... C:\Program Files\Matrox Imaging\drivers\VGA\vcf\800x600x8@72hz.vcf [empty] | | | | | |..... C:\Program Files\Matrox Imaging\drivers\VGA\drivernt\mildrv.exe [empty] | | | | | |..... C:\Program Files\Matrox Imaging\drivers\VGA\drivernt\mtxdma.sys [empty] | | | |..... \SOFTWARE\Matrox\Imaging Board\VGA\Keys\ | | | | |..... VGAVCF SYSTEM\CurrentControlSet\Control\Session Manager\Environment | | | |..... \SOFTWARE\Matrox\Imaging Board\VGA\SupportedDisplayFormats\ | | | | |..... Default 0x00000000 | |..... \SOFTWARE\Matrox\Intellicam\ | | |..... Revision 2.07.240 | | |..... MilRevision 7.10.240 | | |..... Version Intellicam2.07 | | |..... \SOFTWARE\Matrox\Intellicam\2.07.240\ | | | |..... Version Intellicam2.07 | | | |..... Type Lite | | | |..... Directory C:\Program Files\Matrox Imaging\Intellicam | | | |..... MIPDirectory C:\Program Files\Matrox Imaging | | | |..... Folder Matrox Imaging Products\Intellicam | | | |..... MIPFolder Matrox Imaging Products | | | |..... Matrox DMA manager 65536 Kb | | | |..... \SOFTWARE\Matrox\Intellicam\2.07.240\Files\ | | | | |..... \SOFTWARE\Matrox\Intellicam\2.07.240\Files\Shared\ | | | | | |..... C:\WINDOWS\System32\Msvcrt40.dll [empty] | | | | | |..... C:\WINDOWS\System32\msvcirt.dll [empty] | | | | | |..... C:\WINDOWS\System32\Msvcrt.dll [empty] | | | | | |..... C:\WINDOWS\System32\mfc42.dll [empty] | | | | |..... \SOFTWARE\Matrox\Intellicam\2.07.240\Files\Standard\ | | | | | |..... C:\Program Files\Matrox Imaging\intellicam\genesis.bmp [empty] | | | | | |..... C:\Program Files\Matrox Imaging\intellicam\intelcam.exe [empty] | | | | | |..... C:\Program Files\Matrox Imaging\intellicam\digctrl.dll [empty] | | | | | |..... C:\Program Files\Matrox Imaging\intellicam\intgen.dll [empty] | | | | | |..... C:\Program Files\Matrox Imaging\intellicam\intmet.dll [empty] | | | | | |..... C:\Program Files\Matrox Imaging\intellicam\intpul.dll [empty] | | | | | |..... C:\Program Files\Matrox Imaging\intellicam\intelcam.bmp [empty] | | | | | |..... C:\Program Files\Matrox Imaging\intellicam\meteor.bmp [empty] | | | | | |..... C:\Program Files\Matrox Imaging\intellicam\pulsar.bmp [empty] | | | | | |..... C:\Program Files\Matrox Imaging\intellicam\intcor.dll [empty] | | | | | |..... C:\Program Files\Matrox Imaging\intellicam\corona.bmp [empty] | | | | | |..... C:\Program Files\Matrox Imaging\intellicam\intmet2.dll [empty] | | | | | |..... C:\Program Files\Matrox Imaging\intellicam\meteor2.bmp [empty] | | | | | |..... C:\Program Files\Matrox Imaging\intellicam\intmet2d.dll [empty] | | | | | |..... C:\Program Files\Matrox Imaging\intellicam\intorion.dll [empty] | | | | | |..... C:\Program Files\Matrox Imaging\intellicam\int1394.dll [empty] | | | | | |..... C:\Program Files\Matrox Imaging\intellicam\orion.bmp [empty] | | | | | |..... C:\Program Files\Matrox Imaging\intellicam\defines.hlp [empty] | | | | | |..... C:\Program Files\Matrox Imaging\intellicam\genesis.hlp [empty] | | | | | |..... C:\Program Files\Matrox Imaging\intellicam\intelcam.cnt [empty] | | | | | |..... C:\Program Files\Matrox Imaging\intellicam\intelcam.hlp [empty] | | | | | |..... C:\Program Files\Matrox Imaging\intellicam\meteor.hlp [empty] | | | | | |..... C:\Program Files\Matrox Imaging\intellicam\pulsar.hlp [empty] | | | | | |..... C:\Program Files\Matrox Imaging\intellicam\inttips.txt [empty] | | | | | |..... C:\Program Files\Matrox Imaging\intellicam\Pulsar.inf [empty] | | | | | |..... C:\Program Files\Matrox Imaging\intellicam\genesis.inf [empty] | | | | | |..... C:\Program Files\Matrox Imaging\intellicam\intelcam.inf [empty] | | | | | |..... C:\Program Files\Matrox Imaging\intellicam\Orion.inf [empty] | | | | | |..... C:\Program Files\Matrox Imaging\intellicam\corona.inf [empty] | | | | | |..... C:\Program Files\Matrox Imaging\intellicam\meteor2_1394.bmp [empty] | | | | | |..... C:\Program Files\Matrox Imaging\intellicam\intcor2.dll [empty] | | | | | |..... C:\Program Files\Matrox Imaging\intellicam\corona2.bmp [empty] | | | | | |..... C:\Program Files\Matrox Imaging\intellicam\meteor2cl.bmp [empty] | | | | | |..... C:\Program Files\Matrox Imaging\intellicam\intmet2cl.dll [empty] | | | | | |..... C:\Program Files\Matrox Imaging\intellicam\intcronos.dll [empty] | | | | | |..... C:\Program Files\Matrox Imaging\intellicam\cronos.bmp [empty] | | | | | |..... C:\Program Files\Matrox Imaging\intellicam\Cronos.inf [empty] | | | | | |..... C:\Program Files\Matrox Imaging\intellicam\inter\char.cl [empty] | | | | | |..... C:\Program Files\Matrox Imaging\intellicam\inter\double.cl [empty] | | | | | |..... C:\Program Files\Matrox Imaging\intellicam\inter\long.cl [empty] | | | | | |..... C:\Program Files\Matrox Imaging\intellicam\inter\mallocd.cl [empty] | | | | | |..... C:\Program Files\Matrox Imaging\intellicam\inter\mfreed.cl [empty] | | | | | |..... C:\Program Files\Matrox Imaging\intellicam\inter\milinter.ini [empty] | | | | | |..... C:\Program Files\Matrox Imaging\intellicam\inter\milsetup.cl [empty] | | | | | |..... C:\Program Files\Matrox Imaging\intellicam\inter\mil_id.cl [empty] | | | | | |..... C:\Program Files\Matrox Imaging\intellicam\inter\short.cl [empty] | | | | | |..... C:\Program Files\Matrox Imaging\intellicam\inter\examples\exrun.cl [empty] | | | | | |..... C:\Program Files\Matrox Imaging\intellicam\inter\examples\mblobcnt.cl [empty] | | | | | |..... C:\Program Files\Matrox Imaging\intellicam\inter\examples\mblobcog.cl [empty] | | | | | |..... C:\Program Files\Matrox Imaging\intellicam\inter\examples\mconvol.cl [empty] | | | | | |..... C:\Program Files\Matrox Imaging\intellicam\inter\examples\mcount.cl [empty] | | | | | |..... C:\Program Files\Matrox Imaging\intellicam\inter\examples\mdisplay.cl [empty] | | | | | |..... C:\Program Files\Matrox Imaging\intellicam\inter\examples\mfocus.cl [empty] | | | | | |..... C:\Program Files\Matrox Imaging\intellicam\inter\examples\mgrab.cl [empty] | | | | | |..... C:\Program Files\Matrox Imaging\intellicam\inter\examples\mhist.cl [empty] | | | | | |..... C:\Program Files\Matrox Imaging\intellicam\inter\examples\mmeasstr.cl [empty] | | | | | |..... C:\Program Files\Matrox Imaging\intellicam\inter\examples\mmultdis.cl [empty] | | | | | |..... C:\Program Files\Matrox Imaging\intellicam\inter\examples\mobjtrac.cl [empty] | | | | | |..... C:\Program Files\Matrox Imaging\intellicam\inter\examples\mocrfont.cl [empty] | | | | | |..... C:\Program Files\Matrox Imaging\intellicam\inter\examples\mocrread.cl [empty] | | | | | |..... C:\Program Files\Matrox Imaging\intellicam\inter\examples\mocrview.cl [empty] | | | | | |..... C:\Program Files\Matrox Imaging\intellicam\inter\examples\mopen.cl [empty] | | | | | |..... C:\Program Files\Matrox Imaging\intellicam\inter\examples\mperim.cl [empty] | | | | | |..... C:\Program Files\Matrox Imaging\intellicam\inter\examples\mrestmod.cl [empty] | | | | | |..... C:\Program Files\Matrox Imaging\intellicam\inter\examples\msearch.cl [empty] | | | | | |..... C:\Program Files\Matrox Imaging\intellicam\inter\examples\mshift.cl [empty] | | | | | |..... C:\Program Files\Matrox Imaging\intellicam\inter\examples\mstart.cl [empty] | | | | | |..... C:\Program Files\Matrox Imaging\intellicam\inter\examples\msurvey.cl [empty] | | | | | |..... C:\Program Files\Matrox Imaging\intellicam\inter\help\int.hlp [empty] | | | | | |..... C:\Program Files\Matrox Imaging\intellicam\inter\help\mil.hlp [empty] | | | | | |..... C:\Program Files\Matrox Imaging\intellicam\help\intelcam.pdf [empty] | | | |..... \SOFTWARE\Matrox\Intellicam\2.07.240\Orion\ | | | | |..... Revision 7.10.240 | | | |..... \SOFTWARE\Matrox\Intellicam\2.07.240\VGA\ | | | | |..... Revision 7.10.240 | |..... \SOFTWARE\Matrox\Matrox Imaging Library\ | | |..... Revision 7.10.240 | | |..... Version MILLite7.10(build 240) | | |..... \SOFTWARE\Matrox\Matrox Imaging Library\7.10.240\ | | | |..... Version MILLite7.10(build 240) | | | |..... Directory C:\Program Files\Matrox Imaging\mil | | | |..... MIPDirectory C:\Program Files\Matrox Imaging | | | |..... Type Lite | | | |..... Folder Matrox Imaging Products\Matrox Imaging Library | | | |..... MIPFolder Matrox Imaging Products | | | |..... Compiler name [empty] | | | |..... Compiler directory C:\MSDEV\ | | | |..... Matrox DMA manager 65536 Kb | | | |..... Default driver Orion | | | |..... \SOFTWARE\Matrox\Matrox Imaging Library\7.10.240\Files\ | | | | |..... \SOFTWARE\Matrox\Matrox Imaging Library\7.10.240\Files\Registered\ | | | | | |..... "C:\WINDOWS\System32\milvc.dll" [empty] | | | | | |..... "C:\WINDOWS\System32\mildcom.dll" [empty] | | | | |..... \SOFTWARE\Matrox\Matrox Imaging Library\7.10.240\Files\Shared\ | | | | | |..... C:\WINDOWS\System32\MSVCRT.DLL [empty] | | | | | |..... C:\WINDOWS\System32\msvcirt.dll [empty] | | | | | |..... C:\WINDOWS\System32\mfc42.dll [empty] | | | | | |..... C:\WINDOWS\System32\MSVCRT40.DLL [empty] | | | | | |..... C:\WINDOWS\System32\Regsvr32.exe [empty] | | | | | |..... C:\WINDOWS\System32\Hhupd.exe [empty] | | | | | |..... C:\WINDOWS\System32\HHActiveX.dll [empty] | | | | |..... \SOFTWARE\Matrox\Matrox Imaging Library\7.10.240\Files\Standard\ | | | | | |..... C:\Program Files\Matrox Imaging\LicenseManager\LicenseManager.exe [empty] | | | | | |..... C:\Program Files\Matrox Imaging\milconfig\mildrv.exe [empty] | | | | | |..... C:\Program Files\Matrox Imaging\milconfig\MILConfig.exe [empty] | | | | | |..... C:\Program Files\Matrox Imaging\milconfig\checkpci.exe [empty] | | | | | |..... C:\Program Files\Matrox Imaging\milconfig\checkpcidos.exe [empty] | | | | | |..... C:\Program Files\Matrox Imaging\mil\examples\Orion\MDigMultFormat.c [empty] | | | | | |..... C:\Program Files\Matrox Imaging\mil\examples\Orion\MDigMultDestination.c [empty] | | | | | |..... C:\Program Files\Matrox Imaging\mil\examples\Orion\MfocusDual.c [empty] | | | | | |..... C:\Program Files\Matrox Imaging\mil\library\winnt\msc\dll\milvhook.dll [empty] | | | | | |..... C:\Program Files\Matrox Imaging\mil\library\winnt\msc\dll\milvga.dll [empty] | | | | | |..... C:\Program Files\Matrox Imaging\mil\include\orion.h [empty] | | | | | |..... C:\Program Files\Matrox Imaging\mil\library\winnt\msc\dll\milorion.dll [empty] | | | | | |..... C:\Program Files\Matrox Imaging\mil\doc\whatsnew.txt [empty] | | | | | |..... C:\Program Files\Matrox Imaging\mil\doc\read.me [empty] | | | | | |..... C:\Program Files\Matrox Imaging\mil\doc\mmx.txt [empty] | | | | | |..... C:\Program Files\Matrox Imaging\mil\doc\redist.txt [empty] | | | | | |..... C:\Program Files\Matrox Imaging\mil\doc\SSE.txt [empty] | | | | | |..... C:\Program Files\Matrox Imaging\mil\doc\help\MILHelp.chm [empty] | | | | | |..... C:\Program Files\Matrox Imaging\mil\doc\help\HelpOnHelp.chm [empty] | | | | | |..... C:\Program Files\Matrox Imaging\mil\doc\help\BoardSpecific.pdf [empty] | | | | | |..... C:\Program Files\Matrox Imaging\mil\doc\help\mil_lite_acr.pdf [empty] | | | | | |..... C:\Program Files\Matrox Imaging\mil\doc\MIL_Lite_LastMinute.txt [empty] | | | | | |..... C:\Program Files\Matrox Imaging\mil\library\winnt\msc\dll\msvcrt.lib [empty] | | | | | |..... C:\Program Files\Matrox Imaging\mil\library\winnt\msc\dll\mil.lib [empty] | | | | | |..... C:\Program Files\Matrox Imaging\mil\library\winnt\msc\dll\mwinmil.res [empty] | | | | | |..... C:\Program Files\Matrox Imaging\mil\library\winnt\msc\dll\milvb.lib [empty] | | | | | |..... C:\Program Files\Matrox Imaging\mil\library\winnt\msc\dll\mil.dbg [empty] | | | | | |..... C:\Program Files\Matrox Imaging\mil\library\winnt\msc\dll\milvb.dbg [empty] | | | | | |..... C:\Program Files\Matrox Imaging\mil\library\winnt\msc\dll\mil.dll [empty] | | | | | |..... C:\Program Files\Matrox Imaging\mil\library\winnt\msc\dll\milvga.dbg [empty] | | | | | |..... C:\Program Files\Matrox Imaging\mil\library\winnt\msc\dll\milcor.dbg [empty] | | | | | |..... C:\Program Files\Matrox Imaging\mil\library\winnt\msc\dll\milcor2.dbg [empty] | | | | | |..... C:\Program Files\Matrox Imaging\mil\library\winnt\msc\dll\milgen.dbg [empty] | | | | | |..... C:\Program Files\Matrox Imaging\mil\library\winnt\msc\dll\milmet2.dbg [empty] | | | | | |..... C:\Program Files\Matrox Imaging\mil\library\winnt\msc\dll\milmet2cl.dbg [empty] | | | | | |..... C:\Program Files\Matrox Imaging\mil\library\winnt\msc\dll\milmet2d.dbg [empty] | | | | | |..... C:\Program Files\Matrox Imaging\mil\library\winnt\msc\dll\milorion.dbg [empty] | | | | | |..... C:\Program Files\Matrox Imaging\mil\library\winnt\msc\dll\milpul.dbg [empty] | | | | | |..... C:\Program Files\Matrox Imaging\mil\library\winnt\msc\dll\mil1394.dbg [empty] | | | | | |..... C:\Program Files\Matrox Imaging\mil\library\winnt\msc\dll\milvga.lib [empty] | | | | | |..... C:\Program Files\Matrox Imaging\mil\library\winnt\msc\dll\milcor.lib [empty] | | | | | |..... C:\Program Files\Matrox Imaging\mil\library\winnt\msc\dll\milcor2.lib [empty] | | | | | |..... C:\Program Files\Matrox Imaging\mil\library\winnt\msc\dll\milgen.lib [empty] | | | | | |..... C:\Program Files\Matrox Imaging\mil\library\winnt\msc\dll\milmet2.lib [empty] | | | | | |..... C:\Program Files\Matrox Imaging\mil\library\winnt\msc\dll\milmet2cl.lib [empty] | | | | | |..... C:\Program Files\Matrox Imaging\mil\library\winnt\msc\dll\milmet2d.lib [empty] | | | | | |..... C:\Program Files\Matrox Imaging\mil\library\winnt\msc\dll\milorion.lib [empty] | | | | | |..... C:\Program Files\Matrox Imaging\mil\library\winnt\msc\dll\milpul.lib [empty] | | | | | |..... C:\Program Files\Matrox Imaging\mil\library\winnt\msc\dll\mil1394.lib [empty] | | | | | |..... C:\Program Files\Matrox Imaging\mil\library\winnt\msc\dll\milvhook.lib [empty] | | | | | |..... C:\Program Files\Matrox Imaging\mil\library\winnt\msc\dll\milvhook.dbg [empty] | | | | | |..... C:\Program Files\Matrox Imaging\mil\library\winnt\msc\dll\msvcirt.dll [empty] | | | | | |..... C:\Program Files\Matrox Imaging\mil\library\winnt\msc\dll\mfc42.dll [empty] | | | | | |..... C:\Program Files\Matrox Imaging\mil\library\winnt\msc\dll\MSVCRT.DLL [empty] | | | | | |..... C:\Program Files\Matrox Imaging\mil\library\winnt\msc\dll\MSVCRT40.DLL [empty] | | | | | |..... C:\Program Files\Matrox Imaging\mil\library\winnt\msc\dll\milcronos.lib [empty] | | | | | |..... C:\Program Files\Matrox Imaging\mil\library\winnt\msc\dll\milcronos.dbg [empty] | | | | | |..... C:\Program Files\Matrox Imaging\mil\library\winnt\msc\dll\MILDCOM.lib [empty] | | | | | |..... C:\Program Files\Matrox Imaging\mil\library\winnt\msc\dll\mildcom.dbg [empty] | | | | | |..... C:\Program Files\Matrox Imaging\mil\examples\mil.ico [empty] | | | | | |..... C:\Program Files\Matrox Imaging\mil\examples\Read.me [empty] | | | | | |..... C:\Program Files\Matrox Imaging\mil\examples\Mstart.c [empty] | | | | | |..... C:\Program Files\Matrox Imaging\mil\examples\Mdisplay.c [empty] | | | | | |..... C:\Program Files\Matrox Imaging\mil\examples\Mwindisp.c [empty] | | | | | |..... C:\Program Files\Matrox Imaging\mil\examples\mwindisp.exe [empty] | | | | | |..... C:\Program Files\Matrox Imaging\mil\examples\MSTART.exe [empty] | | | | | |..... C:\Program Files\Matrox Imaging\mil\examples\mdisplay.exe [empty] | | | | | |..... C:\Program Files\Matrox Imaging\mil\examples\Mdispovr.c [empty] | | | | | |..... C:\Program Files\Matrox Imaging\mil\examples\mdispovr.exe [empty] | | | | | |..... C:\Program Files\Matrox Imaging\mil\examples\Mnatfct.c [empty] | | | | | |..... C:\Program Files\Matrox Imaging\mil\examples\MNATFCT.exe [empty] | | | | | |..... C:\Program Files\Matrox Imaging\mil\examples\MSDEV6.0\Examples.dsw [empty] | | | | | |..... C:\Program Files\Matrox Imaging\mil\examples\MSDEV6.0\Mwindisp\MWINDISP.dsp [empty] | | | | | |..... C:\Program Files\Matrox Imaging\mil\examples\MSDEV6.0\Mstart\mstart.dsp [empty] | | | | | |..... C:\Program Files\Matrox Imaging\mil\examples\MSDEV6.0\Mdisplay\MDISPLAY.dsp [empty] | | | | | |..... C:\Program Files\Matrox Imaging\mil\examples\MSDEV6.0\Mdispovr\MDISPOVR.dsp [empty] | | | | | |..... C:\Program Files\Matrox Imaging\mil\examples\MSDEV6.0\Mnatfct\MNATFCT.dsp [empty] | | | | | |..... C:\Program Files\Matrox Imaging\mil\examples\Milex.mk [empty] | | | | | |..... C:\Program Files\Matrox Imaging\mil\examples\Exrun.bat [empty] | | | | | |..... C:\Program Files\Matrox Imaging\mil\include\Mwinmil.h [empty] | | | | | |..... C:\Program Files\Matrox Imaging\mil\include\Mildec.h [empty] | | | | | |..... C:\Program Files\Matrox Imaging\mil\include\Milerr.h [empty] | | | | | |..... C:\Program Files\Matrox Imaging\mil\include\Milnat.h [empty] | | | | | |..... C:\Program Files\Matrox Imaging\mil\include\Milproto.h [empty] | | | | | |..... C:\Program Files\Matrox Imaging\mil\include\Milsetup.h [empty] | | | | | |..... C:\Program Files\Matrox Imaging\mil\include\Mil.h [empty] | | | | | |..... C:\Program Files\Matrox Imaging\mil\include\Milos.h [empty] | | | | | |..... C:\Program Files\Matrox Imaging\mil\examples\Mmultdis.c [empty] | | | | | |..... C:\Program Files\Matrox Imaging\mil\examples\Mthread.c [empty] | | | | | |..... C:\Program Files\Matrox Imaging\mil\examples\Mmultdis.exe [empty] | | | | | |..... C:\Program Files\Matrox Imaging\mil\examples\Mthread.exe [empty] | | | | | |..... C:\Program Files\Matrox Imaging\mil\examples\MSDEV6.0\Mmultdis\MMULTDIS.dsp [empty] | | | | | |..... C:\Program Files\Matrox Imaging\mil\examples\MSDEV6.0\Mthread\MTHREAD.dsp [empty] | | | | | |..... C:\Program Files\Matrox Imaging\mil\examples\mcolor.c [empty] | | | | | |..... C:\Program Files\Matrox Imaging\mil\examples\mcolor.exe [empty] | | | | | |..... C:\Program Files\Matrox Imaging\mil\examples\MSDEV6.0\Mcolor\Mcolor.dsp [empty] | | | | | |..... C:\Program Files\Matrox Imaging\mil\examples\Mgrabseq.c [empty] | | | | | |..... C:\Program Files\Matrox Imaging\mil\examples\Mgrab.c [empty] | | | | | |..... C:\Program Files\Matrox Imaging\mil\examples\Mfocus.c [empty] | | | | | |..... C:\Program Files\Matrox Imaging\mil\examples\MGRABSEQ.exe [empty] | | | | | |..... C:\Program Files\Matrox Imaging\mil\examples\MGRAB.exe [empty] | | | | | |..... C:\Program Files\Matrox Imaging\mil\examples\mfocus.exe [empty] | | | | | |..... C:\Program Files\Matrox Imaging\mil\examples\Mgrabhk.c [empty] | | | | | |..... C:\Program Files\Matrox Imaging\mil\examples\MGRABHK.exe [empty] | | | | | |..... C:\Program Files\Matrox Imaging\mil\examples\MSDEV6.0\Mgrabseq\MGRABSEQ.dsp [empty] | | | | | |..... C:\Program Files\Matrox Imaging\mil\examples\MSDEV6.0\Mgrab\MGRAB.dsp [empty] | | | | | |..... C:\Program Files\Matrox Imaging\mil\examples\MSDEV6.0\Mfocus\MFOCUS.dsp [empty] | | | | | |..... C:\Program Files\Matrox Imaging\mil\examples\MSDEV6.0\Mgrabhk\MGRABHK.dsp [empty] | | | | | |..... C:\Program Files\Matrox Imaging\mil\examples\mfc\MdispMFC.clw [empty] | | | | | |..... C:\Program Files\Matrox Imaging\mil\examples\mfc\ChildFrm.h [empty] | | | | | |..... C:\Program Files\Matrox Imaging\mil\examples\mfc\MainFrm.h [empty] | | | | | |..... C:\Program Files\Matrox Imaging\mil\examples\mfc\MdispMFC.h [empty] | | | | | |..... C:\Program Files\Matrox Imaging\mil\examples\mfc\MdispMFCDoc.h [empty] | | | | | |..... C:\Program Files\Matrox Imaging\mil\examples\mfc\MdispMFCView.h [empty] | | | | | |..... C:\Program Files\Matrox Imaging\mil\examples\mfc\Resource.h [empty] | | | | | |..... C:\Program Files\Matrox Imaging\mil\examples\mfc\StdAfx.h [empty] | | | | | |..... C:\Program Files\Matrox Imaging\mil\examples\mfc\ChildFrm.cpp [empty] | | | | | |..... C:\Program Files\Matrox Imaging\mil\examples\mfc\MainFrm.cpp [empty] | | | | | |..... C:\Program Files\Matrox Imaging\mil\examples\mfc\MdispMFC.cpp [empty] | | | | | |..... C:\Program Files\Matrox Imaging\mil\examples\mfc\MdispMFCDoc.cpp [empty] | | | | | |..... C:\Program Files\Matrox Imaging\mil\examples\mfc\MdispMFCView.cpp [empty] | | | | | |..... C:\Program Files\Matrox Imaging\mil\examples\mfc\StdAfx.cpp [empty] | | | | | |..... C:\Program Files\Matrox Imaging\mil\examples\mfc\MDISPMFC.MAK [empty] | | | | | |..... C:\Program Files\Matrox Imaging\mil\examples\mfc\EXCOMP.BAT [empty] | | | | | |..... C:\Program Files\Matrox Imaging\mil\examples\mfc\MdispMFC.opt [empty] | | | | | |..... C:\Program Files\Matrox Imaging\mil\examples\mfc\MdispMFC.dsp [empty] | | | | | |..... C:\Program Files\Matrox Imaging\mil\examples\mfc\MdispMFC.dsw [empty] | | | | | |..... C:\Program Files\Matrox Imaging\mil\examples\mfc\MdispMFC.rc [empty] | | | | | |..... C:\Program Files\Matrox Imaging\mil\examples\mfc\ReadMe.txt [empty] | | | | | |..... C:\Program Files\Matrox Imaging\mil\examples\mfc\res\MdispMFC.ico [empty] | | | | | |..... C:\Program Files\Matrox Imaging\mil\examples\mfc\res\MdispMFC.rc2 [empty] | | | | | |..... C:\Program Files\Matrox Imaging\mil\examples\mfc\res\MdispMFCDoc.ico [empty] | | | | | |..... C:\Program Files\Matrox Imaging\mil\examples\mfc\res\Toolbar.bmp [empty] | | | | | |..... C:\Program Files\Matrox Imaging\mil\examples\mfc\release\mdispmfc.exe [empty] | | | | | |..... C:\Program Files\Matrox Imaging\mil\examples\mclwin.bat [empty] | | | | | |..... C:\Program Files\Matrox Imaging\mil\examples\mcl.bat [empty] | | | | | |..... C:\Program Files\Matrox Imaging\mil\examples\Excomp.bat [empty] | | | | | |..... C:\Program Files\Matrox Imaging\mil\examples\Millib.lst [empty] | | | | | |..... C:\Program Files\Matrox Imaging\mil\examples\Mwinmil.lst [empty] | | | | |..... \SOFTWARE\Matrox\Matrox Imaging Library\7.10.240\Files\System\ | | | | | |..... C:\WINDOWS\System32\mil.dll [empty] | | | | | |..... C:\WINDOWS\System32\MILDCOM.dll [empty] | | | | | |..... C:\WINDOWS\System32\MILVC.dll [empty] | | | |..... \SOFTWARE\Matrox\Matrox Imaging Library\7.10.240\Keys\ | | | | |..... COMPPATH SYSTEM\CurrentControlSet\Control\Session Manager\Environment | | | |..... \SOFTWARE\Matrox\Matrox Imaging Library\7.10.240\Orion\ | | | | |..... Revision 7.10.240 | | | | |..... Digitizer mode [empty] | | | | |..... Digitizer format Rs170.dcf | | | |..... \SOFTWARE\Matrox\Matrox Imaging Library\7.10.240\VGA\ | | | | |..... Revision 7.10.240 | | | | |..... Display format (windowed display is used) | |..... \SOFTWARE\Matrox\MIP\ | | |..... \SOFTWARE\Matrox\MIP\MILRunTime\ | | | |..... Directory C:\Program Files\Matrox Imaging | | | |..... \SOFTWARE\Matrox\MIP\MILRunTime\Settings\ | | | | |..... \SOFTWARE\Matrox\MIP\MILRunTime\Settings\Licensers\ | | | | | |..... 0 0x1E1E0000 | | | | | |..... 1 0x00000000 | | | | | |..... 2 0x00000000 | | | | | |..... 3 0x00000000 | | | | | |..... 4 0x00000000 | | | | | |..... 5 0x00000000 | | | | | |..... 6 0x00000000 | | | | | |..... 7 0x00000000 | | | | | |..... 8 0x00000000 | | | | | |..... 9 0x00000000 | | | | | |..... 10 0x00000000 | | | | | |..... 11 0x00000000 | | | | | |..... 12 0x00000000 | | | | | |..... 13 0x00000000 | | | | | |..... 14 0x00000000 | | | | | |..... 15 0x00000000 | | | | | |..... 16 0x00000000 | | | | | |..... 17 0x00000000 | | | | | |..... 18 0x00000000 | | | | | |..... 19 0x00000000 | | | | | |..... 20 0x00000000 | | | | | |..... 21 0x00000000 | | | | | |..... 22 0x00000000 | | | | | |..... 23 0x00000000 | | | | | |..... 24 0x00000000 | | | | | |..... 25 0x00000000 | | | | | |..... 26 0x00000000 | | | | | |..... 27 0x00000000 | | | | | |..... 28 0x00000000 | | | | | |..... 29 0x00000000 | | | | | |..... 30 0x00000000 | | | | | |..... 31 0x00000000 | | | | |..... \SOFTWARE\Matrox\MIP\MILRunTime\Settings\Licenses\ | | | | | |..... ManagerPath C:\PROGRA~1\MATROX~1\LICENS~1\LicenseManager.exe | |..... \SOFTWARE\Matrox\PowerDesk\ | | |..... \SOFTWARE\Matrox\PowerDesk\Version6\ | | | |..... RegisterWebPath http://www.matrox.com/mga/registration/home.cfm | | | |..... \SOFTWARE\Matrox\PowerDesk\Version6\CurrentSettings\ | | | | |..... PDeskVer 6.80.006 | | | | |..... SelectedLanguage ENG | | | | |..... InstalledLanguages ENG,FRE,GER,SPA,ITA | | | | |..... WebPath http://www.matrox.com/mga/home.htm | | | | |..... ShowSupport 01 00 00 00 | | | |..... \SOFTWARE\Matrox\PowerDesk\Version6\MultiDesktop\ | | | | |..... \SOFTWARE\Matrox\PowerDesk\Version6\MultiDesktop\Exclude\ | | | | | |..... SysFader 01 | | | |..... \SOFTWARE\Matrox\PowerDesk\Version6\WindowControl\ | | | | |..... \SOFTWARE\Matrox\PowerDesk\Version6\WindowControl\AppWindowPosition\ | | | | | |..... \SOFTWARE\Matrox\PowerDesk\Version6\WindowControl\AppWindowPosition\Exclude\ | | | | | | |..... VideoRenderer 0x00000001 ____________________________________________ - HKEY_LOCAL_MACHINE SOFTWARE\Rainbow\ Does not exist ____________________________________________ - HKEY_LOCAL_MACHINE |..... \SOFTWARE\RAINBOW TECHNOLOGIES\ | |..... \SOFTWARE\RAINBOW TECHNOLOGIES\SentinelLM\ | | |..... \SOFTWARE\RAINBOW TECHNOLOGIES\SentinelLM\CurrentVersion\ | | | |..... \SOFTWARE\RAINBOW TECHNOLOGIES\SentinelLM\CurrentVersion\Local\ | | | | |..... FilePath C:\WINDOWS\System32 ____________________________________________ - HKEY_LOCAL_MACHINE |..... \SYSTEM\CurrentControlSet\Services\MtxDma0\ | |..... Type 0x00000001 | |..... Start 0x00000000 | |..... ErrorControl 0x00000001 | |..... ImagePath system32\drivers\MtxDma0.sys | |..... DisplayName Matrox Dma Manager (0) | |..... \SYSTEM\CurrentControlSet\Services\MtxDma0\Parameters\ | | |..... DmaBufferSize 0x04000000 | | |..... DriverNumber 0x00000000 | | |..... DefaultPciAccess 0x00000000 | | |..... OriginalDMAmemory 0x04000000 | | |..... HighMemoryAreaReservedStart 0x0C000000 | | |..... HighMemoryAreaReservedSize 0x04000000 | | |..... Version 0x00000001 | |..... \SYSTEM\CurrentControlSet\Services\MtxDma0\Security\ | | |..... Security 01 00 14 80 90 00 00 00 9C 00 00 00 14 00 00 00 30 00 00 00 02 00 1C 00 01 00 00 00 02 80 14 00 FF 01 0F 00 01 01 00 00 00 00 00 01 00 00 00 00 02 00 60 00 04 00 00 00 00 00 14 00 FD 01 02 00 01 01 00 00 00 00 00 05 12 00 00 00 00 00 18 00 FF 01 0F 00 01 02 00 00 00 00 00 05 20 00 00 00 20 02 00 00 00 00 14 00 8D 01 02 00 01 01 00 00 00 00 00 05 0B 00 00 00 00 00 18 00 FD 01 02 00 01 02 00 00 00 00 00 05 20 00 00 00 23 02 00 00 01 01 00 00 00 00 00 05 12 00 00 00 01 01 00 00 00 00 00 05 12 00 00 00 | |..... \SYSTEM\CurrentControlSet\Services\MtxDma0\Enum\ | | |..... 0 Root\LEGACY_MTXDMA0\0000 | | |..... Count 0x00000001 | | |..... NextInstance 0x00000001 ____________________________________________ - HKEY_LOCAL_MACHINE SYSTEM\CurrentControlSet\Services\Sentinel\ Does not exist ____________________________________________ - HKEY_LOCAL_MACHINE SYSTEM\CurrentControlSet\Services\Genesis\ Does not exist ____________________________________________ - HKEY_LOCAL_MACHINE SYSTEM\CurrentControlSet\Services\Corona\ Does not exist ____________________________________________ - HKEY_LOCAL_MACHINE SYSTEM\CurrentControlSet\Services\Meteor\ Does not exist ____________________________________________ - HKEY_LOCAL_MACHINE SYSTEM\CurrentControlSet\Services\Pulsar\ Does not exist ____________________________________________ - HKEY_LOCAL_MACHINE |..... \SYSTEM\CurrentControlSet\Services\orion\ | |..... Type 0x00000001 | |..... Start 0x00000002 | |..... ErrorControl 0x00000001 | |..... ImagePath \??\C:\WINDOWS\system32\drivers\Orion.sys | |..... DisplayName Matrox Orion | |..... DependOnService mtxdma0 | |..... \SYSTEM\CurrentControlSet\Services\orion\Security\ | | |..... Security 01 00 14 80 90 00 00 00 9C 00 00 00 14 00 00 00 30 00 00 00 02 00 1C 00 01 00 00 00 02 80 14 00 FF 01 0F 00 01 01 00 00 00 00 00 01 00 00 00 00 02 00 60 00 04 00 00 00 00 00 14 00 FD 01 02 00 01 01 00 00 00 00 00 05 12 00 00 00 00 00 18 00 FF 01 0F 00 01 02 00 00 00 00 00 05 20 00 00 00 20 02 00 00 00 00 14 00 8D 01 02 00 01 01 00 00 00 00 00 05 0B 00 00 00 00 00 18 00 FD 01 02 00 01 02 00 00 00 00 00 05 20 00 00 00 23 02 00 00 01 01 00 00 00 00 00 05 12 00 00 00 01 01 00 00 00 00 00 05 12 00 00 00 | |..... \SYSTEM\CurrentControlSet\Services\orion\Enum\ | | |..... Count 0x00000000 | | |..... NextInstance 0x00000000 | | |..... INITSTARTFAILED 0x00000001 ____________________________________________ - HKEY_LOCAL_MACHINE SYSTEM\CurrentControlSet\Services\cronos\ Does not exist ____________________________________________ - ____________________________________________ - [ Back to top of page ] EEPROM OF MATROX 4SIGHT INo 4Sight detected [ Back to top of page ] EEPROM OF MATROX ORIONNo Orion seeprom detected [ Back to top of page ] EEPROM OF MATROX 1394No 1394 detected ____________________________________________ - Version of 1394 chip : No Matrox 1394 boards found [ Back to top of page ] OUTPUT OF CHECKPCI.EXECopyright (c) 2000 Matrox Electronic Systems Ltd.
Checkpci utility V2.1
1) PCI BIOS INFORMATION
====================
PCI BIOS 32 bits detected.
Hardware mechanism: 1
Version : 2.10
Last Pci Bus : 2
2) List of PCI devices in the system
=================================
Bus Dev Fnct Vendor Device Rev Description Cmnd IoBase MemBase
--- ---- ---- ------ ------ --- ---------------- ---- ------ ---------
0 0 0 8086h 1A30h 11h Unknown Chip 6h 0h F8000000h
Host bridge
Intel Corporation
0 1 1 0 8086h 1A31h 11h Unknown Chip 7h 00F0h F5D0F480h
PCI to PCI bridge
Intel Corporation
0 29 0 8086h 24C2h 01h Unknown Chip 5h D800h 0h
Universal Serial Bus Controller
Intel Corporation
0 29 1 8086h 24C4h 01h Unknown Chip 5h D400h 0h
Universal Serial Bus Controller
Intel Corporation
0 29 2 8086h 24C7h 01h Unknown Chip 5h D000h 0h
Universal Serial Bus Controller
Intel Corporation
0 2 30 0 8086h 244Eh 81h Unknown Chip 107h B0B0h F3F0F280h
PCI to PCI bridge
Intel Corporation
0 31 0 8086h 24C0h 01h Unknown Chip 10Fh 0h 0h
ISA bridge
Intel Corporation
0 31 1 8086h 24CBh 01h Unknown Chip 7h 0h FFEFFC00h
IDE controller
Intel Corporation
1 0 0 102Bh 0525h 05h Unknown Chip 7h 0h F6000000h
VGA display controller
Matrox
2 3 0 13F6h 0111h 10h Unknown Chip 85h B800h 0h
Audio device
C-Media Electronics, Inc.
2 12 0 14F1h 1033h 89h Unknown Chip 7h B400h F3800000h
Unknown class code
Unknown Vendor Id
2 13 0 8086h 1229h 10h 82557 17h B000h F3000000h
Ethernet controller
Intel Corporation
Bus Dev Fnct Vendor Device Rev Description Cmnd IoBase MemBase
--- ---- ---- ------ ------ --- ---------------- ---- ------ ---------
0 0 0 8086h 1A30h 11h Unknown Chip 6h 0h F8000000h
Host bridge
Intel Corporation
PCI Configuration space:
00h: 1A308086h
04h: 20900006h
08h: 06000011h
0Ch: 00000000h
10h: F8000008h
14h: 00000000h
18h: 00000000h
1Ch: 00000000h
20h: 00000000h
24h: 00000000h
28h: 00000000h
2Ch: 80881043h
30h: 00000000h
34h: 000000E4h
38h: 00000000h
3Ch: 00000000h
40h: 00000000h
44h: 00000000h
48h: 00000000h
4Ch: 00000000h
50h: 00000200h
54h: 00000000h
58h: 00000000h
5Ch: 00003500h
60h: 08080804h
64h: 08080808h
68h: 00000000h
6Ch: 00000000h
70h: 00000033h
74h: 00000000h
78h: 24000200h
7Ch: 20020171h
80h: 158200D1h
84h: 00000000h
88h: 00019000h
8Ch: 00000000h
90h: 00011110h
94h: 00111100h
98h: 00001941h
9Ch: 00380A00h
A0h: 00200002h
A4h: 1F000217h
A8h: 00000304h
ACh: 00000000h
B0h: 00000080h
B4h: 00000030h
B8h: 00062000h
BCh: 00001020h
C0h: 11504044h
C4h: 08051000h
C8h: 00000008h
CCh: 00000000h
D0h: 0E002802h
D4h: 3300000Bh
D8h: B53101AFh
DCh: 000A0000h
E0h: 00000000h
E4h: A104A009h
E8h: 00000000h
ECh: 00000000h
F0h: 00010000h
F4h: 9820F874h
F8h: 00000F38h
FCh: 00000004h
Bus Dev Fnct Vendor Device Rev Description Cmnd IoBase MemBase
--- ---- ---- ------ ------ --- ---------------- ---- ------ ---------
0 1 1 0 8086h 1A31h 11h Unknown Chip 7h 00F0h F5D0F480h
PCI to PCI bridge
Intel Corporation
PCI Configuration space:
00h: 1A318086h
04h: 00A00007h I/O Space: Enabled, Mem Space: Enabled, Bus Master: Yes
08h: 06040011h
0Ch: 00014000h
10h: 00000000h
14h: 00000000h
18h: 00010100h
1Ch: 22A000F0h I/O Space Range: Not decoded
20h: F5D0F480h Mem Space Range: 0xf4800000 - 0xf5dfffff
24h: F7F0F5F0h Mem Space Range: 0xf5f00000 - 0xf7ffffff (Prefetchable)
28h: 00000000h
2Ch: 00000000h
30h: 00000000h
34h: 00000000h
38h: 00000000h
3Ch: 00080000h VGA forwarding: Enabled
40h: 00000000h
44h: 00000000h
48h: 00000000h
4Ch: 00000000h
50h: 00000000h
54h: 00000000h
58h: 00000000h
5Ch: 00000000h
60h: 00000000h
64h: 00000000h
68h: 00000000h
6Ch: 00000000h
70h: 00000000h
74h: 00000000h
78h: 00000000h
7Ch: 00000000h
80h: 00000000h
84h: 00000000h
88h: 00000000h
8Ch: 00000000h
90h: 00000000h
94h: 00000000h
98h: 00000000h
9Ch: 00000000h
A0h: 00000000h
A4h: 00000000h
A8h: 00000000h
ACh: 00000000h
B0h: 00000000h
B4h: 00000000h
B8h: 00000000h
BCh: 00000000h
C0h: 00000000h
C4h: 00000000h
C8h: 00000000h
CCh: 00000000h
D0h: 00000000h
D4h: 00000000h
D8h: 00000000h
DCh: 00000000h
E0h: 00000000h
E4h: 00000000h
E8h: 00000000h
ECh: 00000000h
F0h: 00000000h
F4h: 00000000h
F8h: 00000000h
FCh: 00000000h
Bus Dev Fnct Vendor Device Rev Description Cmnd IoBase MemBase
--- ---- ---- ------ ------ --- ---------------- ---- ------ ---------
0 29 0 8086h 24C2h 01h Unknown Chip 5h D800h 0h
Universal Serial Bus Controller
Intel Corporation
PCI Configuration space:
00h: 24C28086h
04h: 02800005h I/O Space: Enabled, Mem Space: Disabled, Bus Master: Yes
08h: 0C030001h
0Ch: 00800000h
10h: 00000000h
14h: 00000000h
18h: 00000000h
1Ch: 00000000h
20h: 0000D801h I/O Size: 32 bytes (0xd800 - 0xd81f)
24h: 00000000h
28h: 00000000h
2Ch: 80891043h
30h: 00000000h
34h: 00000000h
38h: 00000000h
3Ch: 00000110h INTA#, IRQ 16
Bus Dev Fnct Vendor Device Rev Description Cmnd IoBase MemBase
--- ---- ---- ------ ------ --- ---------------- ---- ------ ---------
0 29 1 8086h 24C4h 01h Unknown Chip 5h D400h 0h
Universal Serial Bus Controller
Intel Corporation
PCI Configuration space:
00h: 24C48086h
04h: 02800005h I/O Space: Enabled, Mem Space: Disabled, Bus Master: Yes
08h: 0C030001h
0Ch: 00000000h
10h: 00000000h
14h: 00000000h
18h: 00000000h
1Ch: 00000000h
20h: 0000D401h I/O Size: 32 bytes (0xd400 - 0xd41f)
24h: 00000000h
28h: 00000000h
2Ch: 80891043h
30h: 00000000h
34h: 00000000h
38h: 00000000h
3Ch: 00000213h INTB#, IRQ 19
Bus Dev Fnct Vendor Device Rev Description Cmnd IoBase MemBase
--- ---- ---- ------ ------ --- ---------------- ---- ------ ---------
0 29 2 8086h 24C7h 01h Unknown Chip 5h D000h 0h
Universal Serial Bus Controller
Intel Corporation
PCI Configuration space:
00h: 24C78086h
04h: 02800005h I/O Space: Enabled, Mem Space: Disabled, Bus Master: Yes
08h: 0C030001h
0Ch: 00000000h
10h: 00000000h
14h: 00000000h
18h: 00000000h
1Ch: 00000000h
20h: 0000D001h I/O Size: 32 bytes (0xd000 - 0xd01f)
24h: 00000000h
28h: 00000000h
2Ch: 80891043h
30h: 00000000h
34h: 00000000h
38h: 00000000h
3Ch: 00000312h INTC#, IRQ 18
Bus Dev Fnct Vendor Device Rev Description Cmnd IoBase MemBase
--- ---- ---- ------ ------ --- ---------------- ---- ------ ---------
0 2 30 0 8086h 244Eh 81h Unknown Chip 107h B0B0h F3F0F280h
PCI to PCI bridge
Intel Corporation
PCI Configuration space:
00h: 244E8086h
04h: 80800107h I/O Space: Enabled, Mem Space: Enabled, Bus Master: Yes
08h: 06040081h
0Ch: 00010000h
10h: 00000000h
14h: 00000000h
18h: 20020200h
1Ch: 2280B0B0h I/O Space Range: 0xb000 - 0xbfff
20h: F3F0F280h Mem Space Range: 0xf2800000 - 0xf3ffffff
24h: F5E0F5E0h Mem Space Range: 0xf5e00000 - 0xf5efffff (Prefetchable)
28h: 00000000h
2Ch: 00000000h
30h: 00000000h
34h: 00000000h
38h: 00000000h
3Ch: 00060000h VGA forwarding: Disabled
40h: 00202802h
44h: 00000000h
48h: 00000000h
4Ch: 00000000h
50h: 00007402h
54h: 00000000h
58h: 00000000h
5Ch: 00000000h
60h: 00000000h
64h: 00000000h
68h: 00000000h
6Ch: 00000000h
70h: 00000040h
74h: 00000000h
78h: 00000000h
7Ch: 00000000h
80h: 00900000h
84h: 00000000h
88h: 00000000h
8Ch: 00000000h
90h: 00000000h
94h: 00000000h
98h: 00000000h
9Ch: 00000000h
A0h: 00080010h
A4h: 00000000h
A8h: 00000000h
ACh: 00000000h
B0h: 00020001h
B4h: 00C00000h
B8h: 00000000h
BCh: 00000000h
C0h: 00000000h
C4h: 00000000h
C8h: 00000000h
CCh: 00000000h
D0h: 00000000h
D4h: 00000000h
D8h: 00000000h
DCh: 00000000h
E0h: 00000000h
E4h: 00000000h
E8h: 00000000h
ECh: 00000000h
F0h: 00000000h
F4h: 00000000h
F8h: 00000F60h
FCh: 3C3A0000h
Bus Dev Fnct Vendor Device Rev Description Cmnd IoBase MemBase
--- ---- ---- ------ ------ --- ---------------- ---- ------ ---------
0 31 0 8086h 24C0h 01h Unknown Chip 10Fh 0h 0h
ISA bridge
Intel Corporation
PCI Configuration space:
00h: 24C08086h
04h: 0280010Fh
08h: 06010001h
0Ch: 00800000h
10h: 00000000h
14h: 00000000h
18h: 00000000h
1Ch: 00000000h
20h: 00000000h
24h: 00000000h
28h: 00000000h
2Ch: 00000000h
30h: 00000000h
34h: 00000000h
38h: 00000000h
3Ch: 00000000h
40h: 0000E401h
44h: 00000016h
48h: 00000000h
4Ch: 00000000h
50h: 00000000h
54h: 00000000h
58h: 0000EC01h
5Ch: 00000010h
60h: 80808080h
64h: 00000090h
68h: 80808080h
6Ch: 00000000h
70h: 00000000h
74h: 00000000h
78h: 00000000h
7Ch: 00000000h
80h: 00000000h
84h: 00000000h
88h: 00000000h
8Ch: 00000000h
90h: 000054F5h
94h: 00000000h
98h: 00000000h
9Ch: 00000000h
A0h: 00010220h
A4h: 00000002h
A8h: 0000000Dh
ACh: 00000000h
B0h: 00000000h
B4h: 00000000h
B8h: 02000000h
BCh: 00000000h
C0h: 00000000h
C4h: 00000000h
C8h: 00000000h
CCh: 00000000h
D0h: 00002186h
D4h: 00000F02h
D8h: 00000004h
DCh: 00000000h
E0h: 80000000h
E4h: 14080000h
E8h: 00002233h
ECh: 45670000h
F0h: 8069000Fh
F4h: 00000000h
F8h: 00020F60h
FCh: 00810000h
Bus Dev Fnct Vendor Device Rev Description Cmnd IoBase MemBase
--- ---- ---- ------ ------ --- ---------------- ---- ------ ---------
0 31 1 8086h 24CBh 01h Unknown Chip 7h 0h FFEFFC00h
IDE controller
Intel Corporation
PCI Configuration space:
00h: 24CB8086h
04h: 02800007h I/O Space: Enabled, Mem Space: Enabled, Bus Master: Yes
08h: 01018A01h
0Ch: 00000000h
10h: 00000001h I/O Size: 8 bytes (0x0000 - 0x0007)
14h: 00000001h I/O Size: 4 bytes (0x0000 - 0x0003)
18h: 00000001h I/O Size: 8 bytes (0x0000 - 0x0007)
1Ch: 00000001h I/O Size: 4 bytes (0x0000 - 0x0003)
20h: 0000F001h I/O Size: 16 bytes (0xf000 - 0xf00f)
24h: FFEFFC00h Mem Size: 1 kbytes (0xffeffc00 - 0xffefffff)
28h: 00000000h
2Ch: 80891043h
30h: 00000000h
34h: 00000000h
38h: 00000000h
3Ch: 0000010Ah INTA#, IRQ 10
Bus Dev Fnct Vendor Device Rev Description Cmnd IoBase MemBase
--- ---- ---- ------ ------ --- ---------------- ---- ------ ---------
1 0 0 102Bh 0525h 05h Unknown Chip 7h 0h F6000000h
VGA display controller
Matrox
PCI Configuration space:
00h: 0525102Bh
04h: 02900007h I/O Space: Enabled, Mem Space: Enabled, Bus Master: Yes
08h: 03000005h VGA Enabled
0Ch: 00004008h
10h: F6000008h Mem Size: 32768 kbytes (0xf6000000 - 0xf7ffffff) Prefetchable
14h: F5000000h Mem Size: 16 kbytes (0xf5000000 - 0xf5003fff)
18h: F4800000h Mem Size: 8192 kbytes (0xf4800000 - 0xf4ffffff)
1Ch: 00000000h
20h: 00000000h
24h: 00000000h
28h: 00000000h
2Ch: 5A80102Bh
30h: F5FF0000h
34h: 000000DCh
38h: 00000000h
3Ch: 20100110h INTA#, IRQ 16
Bus Dev Fnct Vendor Device Rev Description Cmnd IoBase MemBase
--- ---- ---- ------ ------ --- ---------------- ---- ------ ---------
2 3 0 13F6h 0111h 10h Unknown Chip 85h B800h 0h
Audio device
C-Media Electronics, Inc.
PCI Configuration space:
00h: 011113F6h
04h: 02100085h I/O Space: Enabled, Mem Space: Disabled, Bus Master: Yes
08h: 04010010h
0Ch: 00002000h
10h: 0000B801h I/O Size: 256 bytes (0xb800 - 0xb8ff)
14h: 00000000h
18h: 00000000h
1Ch: 00000000h
20h: 00000000h
24h: 00000000h
28h: 00000000h
2Ch: 80E21043h
30h: 00000000h
34h: 000000C0h
38h: 00000000h
3Ch: 18020115h INTA#, IRQ 21
Bus Dev Fnct Vendor Device Rev Description Cmnd IoBase MemBase
--- ---- ---- ------ ------ --- ---------------- ---- ------ ---------
2 12 0 14F1h 1033h 89h Unknown Chip 7h B400h F3800000h
Unknown class code
Unknown Vendor Id
PCI Configuration space:
00h: 103314F1h
04h: 02900007h I/O Space: Enabled, Mem Space: Enabled, Bus Master: Yes
08h: 07800089h
0Ch: 00002000h
10h: F3800000h Mem Size: 64 kbytes (0xf3800000 - 0xf380ffff)
14h: 0000B401h I/O Size: 8 bytes (0xb400 - 0xb407)
18h: 00000000h
1Ch: 00000000h
20h: 00000000h
24h: 00000000h
28h: 00000000h
2Ch: 0ABF1092h
30h: 00000000h
34h: 00000040h
38h: 00000000h
3Ch: 00000114h INTA#, IRQ 20
Bus Dev Fnct Vendor Device Rev Description Cmnd IoBase MemBase
--- ---- ---- ------ ------ --- ---------------- ---- ------ ---------
2 13 0 8086h 1229h 10h 82557 17h B000h F3000000h
Ethernet controller
Intel Corporation
PCI Configuration space:
00h: 12298086h
04h: 02900017h I/O Space: Enabled, Mem Space: Enabled, Bus Master: Yes
08h: 02000010h
0Ch: 00002008h
10h: F3000000h Mem Size: 4 kbytes (0xf3000000 - 0xf3000fff)
14h: 0000B001h I/O Size: 64 bytes (0xb000 - 0xb03f)
18h: F2800000h Mem Size: 128 kbytes (0xf2800000 - 0xf281ffff)
1Ch: 00000000h
20h: 00000000h
24h: 00000000h
28h: 00000000h
2Ch: 00708086h
30h: 00000000h
34h: 000000DCh
38h: 00000000h
3Ch: 38080115h INTA#, IRQ 21
3) CHECKING RESOURCE ASSIGNMENTS
=============================
A) Scanning for Mapping Errors
---------------------------
==>> MAPPING ERROR(S) OCCURED <==
1) Type of Mapping Error: Between two Devices on bus #0
---------------------
Io Range Error:
--------------
Bus Dev Fnct Device Description Range
---- --- ---- ------------------ --------------------
1> 0 31 1 Unknown Chip Base0: 0x0000-0x0007
2> 0 31 1 Unknown Chip Base1: 0x0000-0x0003
2) Type of Mapping Error: Between two Devices on bus #0
---------------------
Io Range Error:
--------------
Bus Dev Fnct Device Description Range
---- --- ---- ------------------ --------------------
1> 0 31 1 Unknown Chip Base0: 0x0000-0x0007
2> 0 31 1 Unknown Chip Base2: 0x0000-0x0007
3) Type of Mapping Error: Between two Devices on bus #0
---------------------
Io Range Error:
--------------
Bus Dev Fnct Device Description Range
---- --- ---- ------------------ --------------------
1> 0 31 1 Unknown Chip Base0: 0x0000-0x0007
2> 0 31 1 Unknown Chip Base3: 0x0000-0x0003
4) Type of Mapping Error: Between two Devices on bus #0
---------------------
Io Range Error:
--------------
Bus Dev Fnct Device Description Range
---- --- ---- ------------------ --------------------
1> 0 31 1 Unknown Chip Base1: 0x0000-0x0003
2> 0 31 1 Unknown Chip Base2: 0x0000-0x0007
5) Type of Mapping Error: Between two Devices on bus #0
---------------------
Io Range Error:
--------------
Bus Dev Fnct Device Description Range
---- --- ---- ------------------ --------------------
1> 0 31 1 Unknown Chip Base1: 0x0000-0x0003
2> 0 31 1 Unknown Chip Base3: 0x0000-0x0003
6) Type of Mapping Error: Between two Devices on bus #0
---------------------
Io Range Error:
--------------
Bus Dev Fnct Device Description Range
---- --- ---- ------------------ --------------------
1> 0 31 1 Unknown Chip Base2: 0x0000-0x0007
2> 0 31 1 Unknown Chip Base3: 0x0000-0x0003
7) Type of Mapping Error: Between two Devices on bus #0
---------------------
Io Range Error:
--------------
Bus Dev Fnct Device Description Range
---- --- ---- ------------------ --------------------
1> 0 31 1 Unknown Chip Base0: 0x0000-0x0007
2> 0 31 1 Unknown Chip Base1: 0x0000-0x0003
8) Type of Mapping Error: Between two Devices on bus #0
---------------------
Io Range Error:
--------------
Bus Dev Fnct Device Description Range
---- --- ---- ------------------ --------------------
1> 0 31 1 Unknown Chip Base0: 0x0000-0x0007
2> 0 31 1 Unknown Chip Base2: 0x0000-0x0007
9) Type of Mapping Error: Between two Devices on bus #0
---------------------
Io Range Error:
--------------
Bus Dev Fnct Device Description Range
---- --- ---- ------------------ --------------------
1> 0 31 1 Unknown Chip Base0: 0x0000-0x0007
2> 0 31 1 Unknown Chip Base3: 0x0000-0x0003
10) Type of Mapping Error: Between two Devices on bus #0
---------------------
Io Range Error:
--------------
Bus Dev Fnct Device Description Range
---- --- ---- ------------------ --------------------
1> 0 31 1 Unknown Chip Base1: 0x0000-0x0003
2> 0 31 1 Unknown Chip Base2: 0x0000-0x0007
11) Type of Mapping Error: Between two Devices on bus #0
---------------------
Io Range Error:
--------------
Bus Dev Fnct Device Description Range
---- --- ---- ------------------ --------------------
1> 0 31 1 Unknown Chip Base1: 0x0000-0x0003
2> 0 31 1 Unknown Chip Base3: 0x0000-0x0003
12) Type of Mapping Error: Between two Devices on bus #0
---------------------
Io Range Error:
--------------
Bus Dev Fnct Device Description Range
---- --- ---- ------------------ --------------------
1> 0 31 1 Unknown Chip Base2: 0x0000-0x0007
2> 0 31 1 Unknown Chip Base3: 0x0000-0x0003
13) Type of Mapping Error: Between two Devices on bus #0
---------------------
Io Range Error:
--------------
Bus Dev Fnct Device Description Range
---- --- ---- ------------------ --------------------
1> 0 31 1 Unknown Chip Base0: 0x0000-0x0007
2> 0 31 1 Unknown Chip Base1: 0x0000-0x0003
14) Type of Mapping Error: Between two Devices on bus #0
---------------------
Io Range Error:
--------------
Bus Dev Fnct Device Description Range
---- --- ---- ------------------ --------------------
1> 0 31 1 Unknown Chip Base0: 0x0000-0x0007
2> 0 31 1 Unknown Chip Base2: 0x0000-0x0007
15) Type of Mapping Error: Between two Devices on bus #0
---------------------
Io Range Error:
--------------
Bus Dev Fnct Device Description Range
---- --- ---- ------------------ --------------------
1> 0 31 1 Unknown Chip Base0: 0x0000-0x0007
2> 0 31 1 Unknown Chip Base3: 0x0000-0x0003
16) Type of Mapping Error: Between two Devices on bus #0
---------------------
Io Range Error:
--------------
Bus Dev Fnct Device Description Range
---- --- ---- ------------------ --------------------
1> 0 31 1 Unknown Chip Base1: 0x0000-0x0003
2> 0 31 1 Unknown Chip Base2: 0x0000-0x0007
17) Type of Mapping Error: Between two Devices on bus #0
---------------------
Io Range Error:
--------------
Bus Dev Fnct Device Description Range
---- --- ---- ------------------ --------------------
1> 0 31 1 Unknown Chip Base1: 0x0000-0x0003
2> 0 31 1 Unknown Chip Base3: 0x0000-0x0003
18) Type of Mapping Error: Between two Devices on bus #0
---------------------
Io Range Error:
--------------
Bus Dev Fnct Device Description Range
---- --- ---- ------------------ --------------------
1> 0 31 1 Unknown Chip Base2: 0x0000-0x0007
2> 0 31 1 Unknown Chip Base3: 0x0000-0x0003
19) Type of Mapping Error: Between two Devices on bus #0
---------------------
Io Range Error:
--------------
Bus Dev Fnct Device Description Range
---- --- ---- ------------------ --------------------
1> 0 31 1 Unknown Chip Base0: 0x0000-0x0007
2> 0 31 1 Unknown Chip Base1: 0x0000-0x0003
20) Type of Mapping Error: Between two Devices on bus #0
---------------------
Io Range Error:
--------------
Bus Dev Fnct Device Description Range
---- --- ---- ------------------ --------------------
1> 0 31 1 Unknown Chip Base0: 0x0000-0x0007
2> 0 31 1 Unknown Chip Base2: 0x0000-0x0007
21) Type of Mapping Error: Between two Devices on bus #0
---------------------
Io Range Error:
--------------
Bus Dev Fnct Device Description Range
---- --- ---- ------------------ --------------------
1> 0 31 1 Unknown Chip Base0: 0x0000-0x0007
2> 0 31 1 Unknown Chip Base3: 0x0000-0x0003
22) Type of Mapping Error: Between two Devices on bus #0
---------------------
Io Range Error:
--------------
Bus Dev Fnct Device Description Range
---- --- ---- ------------------ --------------------
1> 0 31 1 Unknown Chip Base1: 0x0000-0x0003
2> 0 31 1 Unknown Chip Base2: 0x0000-0x0007
23) Type of Mapping Error: Between two Devices on bus #0
---------------------
Io Range Error:
--------------
Bus Dev Fnct Device Description Range
---- --- ---- ------------------ --------------------
1> 0 31 1 Unknown Chip Base1: 0x0000-0x0003
2> 0 31 1 Unknown Chip Base3: 0x0000-0x0003
24) Type of Mapping Error: Between two Devices on bus #0
---------------------
Io Range Error:
--------------
Bus Dev Fnct Device Description Range
---- --- ---- ------------------ --------------------
1> 0 31 1 Unknown Chip Base2: 0x0000-0x0007
2> 0 31 1 Unknown Chip Base3: 0x0000-0x0003
25) Type of Mapping Error: Between two Devices on bus #0
---------------------
Io Range Error:
--------------
Bus Dev Fnct Device Description Range
---- --- ---- ------------------ --------------------
1> 0 31 1 Unknown Chip Base0: 0x0000-0x0007
2> 0 31 1 Unknown Chip Base1: 0x0000-0x0003
26) Type of Mapping Error: Between two Devices on bus #0
---------------------
Io Range Error:
--------------
Bus Dev Fnct Device Description Range
---- --- ---- ------------------ --------------------
1> 0 31 1 Unknown Chip Base0: 0x0000-0x0007
2> 0 31 1 Unknown Chip Base2: 0x0000-0x0007
27) Type of Mapping Error: Between two Devices on bus #0
---------------------
Io Range Error:
--------------
Bus Dev Fnct Device Description Range
---- --- ---- ------------------ --------------------
1> 0 31 1 Unknown Chip Base0: 0x0000-0x0007
2> 0 31 1 Unknown Chip Base3: 0x0000-0x0003
28) Type of Mapping Error: Between two Devices on bus #0
---------------------
Io Range Error:
--------------
Bus Dev Fnct Device Description Range
---- --- ---- ------------------ --------------------
1> 0 31 1 Unknown Chip Base1: 0x0000-0x0003
2> 0 31 1 Unknown Chip Base2: 0x0000-0x0007
29) Type of Mapping Error: Between two Devices on bus #0
---------------------
Io Range Error:
--------------
Bus Dev Fnct Device Description Range
---- --- ---- ------------------ --------------------
1> 0 31 1 Unknown Chip Base1: 0x0000-0x0003
2> 0 31 1 Unknown Chip Base3: 0x0000-0x0003
30) Type of Mapping Error: Between two Devices on bus #0
---------------------
Io Range Error:
--------------
Bus Dev Fnct Device Description Range
---- --- ---- ------------------ --------------------
1> 0 31 1 Unknown Chip Base2: 0x0000-0x0007
2> 0 31 1 Unknown Chip Base3: 0x0000-0x0003
31) Type of Mapping Error: Between two Devices on bus #0
---------------------
Io Range Error:
--------------
Bus Dev Fnct Device Description Range
---- --- ---- ------------------ --------------------
1> 0 31 1 Unknown Chip Base0: 0x0000-0x0007
2> 0 31 1 Unknown Chip Base1: 0x0000-0x0003
32) Type of Mapping Error: Between two Devices on bus #0
---------------------
Io Range Error:
--------------
Bus Dev Fnct Device Description Range
---- --- ---- ------------------ --------------------
1> 0 31 1 Unknown Chip Base0: 0x0000-0x0007
2> 0 31 1 Unknown Chip Base2: 0x0000-0x0007
33) Type of Mapping Error: Between two Devices on bus #0
---------------------
Io Range Error:
--------------
Bus Dev Fnct Device Description Range
---- --- ---- ------------------ --------------------
1> 0 31 1 Unknown Chip Base0: 0x0000-0x0007
2> 0 31 1 Unknown Chip Base3: 0x0000-0x0003
34) Type of Mapping Error: Between two Devices on bus #0
---------------------
Io Range Error:
--------------
Bus Dev Fnct Device Description Range
---- --- ---- ------------------ --------------------
1> 0 31 1 Unknown Chip Base1: 0x0000-0x0003
2> 0 31 1 Unknown Chip Base2: 0x0000-0x0007
35) Type of Mapping Error: Between two Devices on bus #0
---------------------
Io Range Error:
--------------
Bus Dev Fnct Device Description Range
---- --- ---- ------------------ --------------------
1> 0 31 1 Unknown Chip Base1: 0x0000-0x0003
2> 0 31 1 Unknown Chip Base3: 0x0000-0x0003
36) Type of Mapping Error: Between two Devices on bus #0
---------------------
Io Range Error:
--------------
Bus Dev Fnct Device Description Range
---- --- ---- ------------------ --------------------
1> 0 31 1 Unknown Chip Base2: 0x0000-0x0007
2> 0 31 1 Unknown Chip Base3: 0x0000-0x0003
TOTAL NUMBER OF MAPPING ERRORS: 36
B) List of devices that share same IRQ
-----------------------------------
List of devices that share IRQ 16:
Bus Dev Fnct Device Description
--- --- ---- ------------------
1 0 0 Unknown Chip
0 29 0 Unknown Chip
List of devices that share IRQ 21:
Bus Dev Fnct Device Description
--- --- ---- ------------------
2 13 0 82557
2 3 0 Unknown Chip
4) Interrupt Routing
=================
Nb of PCI Slots: 4
IRQ Exclusive to PCI: None
Slot Number: 0x0001 0x0002 0x0003 0x0004
Bus Number: 0x0002 0x0002 0x0002 0x0002
Device Number: 0x0009 0x000a 0x000b 0x000c
Link Value IntA#: 0x0069 0x006a 0x006b 0x0068
IntB#: 0x006a 0x006b 0x0068 0x0069
IntC#: 0x006b 0x0068 0x0069 0x006a
IntD#: 0x0068 0x0069 0x006a 0x006b
IRQ bit-Map IntA#: 0x1eb8 0x1eb8 0x1eb8 0x1eb8
IntB#: 0x1eb8 0x1eb8 0x1eb8 0x1eb8
IntC#: 0x1eb8 0x1eb8 0x1eb8 0x1eb8
IntD#: 0x1eb8 0x1eb8 0x1eb8 0x1eb8
Route #69 is not connected to any IRQ
Route #6a is not connected to any IRQ
Route #6b is not connected to any IRQ
Route #68 is not connected to any IRQ
<[ Back to top of page ] MATROX DLLs, LIBs, DRVs, VXDs AND SYSs____________________________________________ C:\Documents and Settings\hoa.tran\Desktop\clean\DLLANDSYS\DLLANDSYS - C:\Documents and Settings\hoa.tran\Desktop\clean\DLLANDSYS\DLLANDSYS\orion.sys 7.10.240.27 4/7/2004 2:20:54 PM ____________________________________________ C:\Drivers\Ethernet - C:\Drivers\Ethernet\intelnic.dll 2.05.1 5/20/2004 5:53:52 PM ____________________________________________ C:\Program Files\Matrox Imaging\ActiveMIL\controls - C:\Program Files\Matrox Imaging\ActiveMIL\controls\MILPropertyPages.dll 7.0.184 2/15/2005 11:51:38 AM - C:\Program Files\Matrox Imaging\ActiveMIL\controls\MILUserInterface.dll 7.0.184 2/15/2005 11:51:38 AM - C:\Program Files\Matrox Imaging\ActiveMIL\controls\MIL.ocx 7.0.184 2/15/2005 11:51:39 AM ____________________________________________ C:\Program Files\Matrox Imaging\ActiveMIL\NativeMIL\Library - C:\Program Files\Matrox Imaging\ActiveMIL\NativeMIL\Library\MILDCOM.dll 7.00.097.1 2/15/2005 11:52:19 AM - C:\Program Files\Matrox Imaging\ActiveMIL\NativeMIL\Library\milorion.dll 7.10.218.1 2/15/2005 11:52:36 AM - C:\Program Files\Matrox Imaging\ActiveMIL\NativeMIL\Library\milvga.dll 7.00.097.1 2/15/2005 11:51:37 AM - C:\Program Files\Matrox Imaging\ActiveMIL\NativeMIL\Library\milvhook.dll 7.00.097.1 2/15/2005 11:51:37 AM ____________________________________________ C:\Program Files\Matrox Imaging\drivers\orion\drivernt - C:\Program Files\Matrox Imaging\drivers\orion\drivernt\mtxdma.sys 7.10.218.5 2/15/2005 11:52:35 AM - C:\Program Files\Matrox Imaging\drivers\orion\drivernt\orion.sys 7.10.218.4 2/15/2005 11:52:34 AM ____________________________________________ C:\Program Files\Matrox Imaging\drivers\VGA\drivernt - C:\Program Files\Matrox Imaging\drivers\VGA\drivernt\mtxdma.sys 7.10.218.5 2/15/2005 11:51:36 AM ____________________________________________ C:\Program Files\Matrox Imaging\intellicam - C:\Program Files\Matrox Imaging\intellicam\digctrl.dll 1, 0, 0, 1 2/15/2005 11:51:16 AM - C:\Program Files\Matrox Imaging\intellicam\int1394.dll 1, 0, 0, 1 2/15/2005 11:51:18 AM - C:\Program Files\Matrox Imaging\intellicam\intcor.dll 1, 0, 0, 1 2/15/2005 11:51:17 AM - C:\Program Files\Matrox Imaging\intellicam\intcor2.dll 1, 0, 0, 1 2/15/2005 11:51:20 AM - C:\Program Files\Matrox Imaging\intellicam\intcronos.dll 1, 0, 0, 1 2/15/2005 11:51:21 AM - C:\Program Files\Matrox Imaging\intellicam\intgen.dll 1, 0, 0, 1 2/15/2005 11:51:16 AM - C:\Program Files\Matrox Imaging\intellicam\intmet.dll 1, 0, 0, 1 2/15/2005 11:51:16 AM - C:\Program Files\Matrox Imaging\intellicam\intmet2.dll 1, 0, 0, 1 2/15/2005 11:51:17 AM - C:\Program Files\Matrox Imaging\intellicam\intmet2cl.dll 1, 0, 0, 1 2/15/2005 11:51:21 AM - C:\Program Files\Matrox Imaging\intellicam\intmet2d.dll 1, 0, 0, 1 2/15/2005 11:51:18 AM - C:\Program Files\Matrox Imaging\intellicam\intorion.dll 1, 0, 0, 1 2/15/2005 11:51:18 AM - C:\Program Files\Matrox Imaging\intellicam\intpul.dll 1, 0, 0, 1 2/15/2005 11:51:16 AM ____________________________________________ C:\Program Files\Matrox Imaging\mil\library\winnt\msc\dll - C:\Program Files\Matrox Imaging\mil\library\winnt\msc\dll\mil.dll 7.00.097.5 2/15/2005 11:51:27 AM - C:\Program Files\Matrox Imaging\mil\library\winnt\msc\dll\milorion.dll 7.10.218.1 2/15/2005 11:52:34 AM - C:\Program Files\Matrox Imaging\mil\library\winnt\msc\dll\milvga.dll 7.00.097.1 2/15/2005 11:51:35 AM - C:\Program Files\Matrox Imaging\mil\library\winnt\msc\dll\milvhook.dll 7.00.097.1 2/15/2005 11:51:35 AM ____________________________________________ C:\WINDOWS\LastGood\System32\DRIVERS - C:\WINDOWS\LastGood\System32\DRIVERS\mgabg.sys 1.00.020 2/15/2005 10:38:00 AM ____________________________________________ C:\WINDOWS\LastGood.Tmp\System32\DRIVERS - C:\WINDOWS\LastGood.Tmp\System32\DRIVERS\mgabg.sys 1.00.020 2/15/2005 10:04:28 AM ____________________________________________ C:\WINDOWS\system ____________________________________________ C:\WINDOWS\system32 - C:\WINDOWS\system32\mil.dll 7.00.097.5 2/15/2005 11:51:32 AM - C:\WINDOWS\system32\MILDCOM.dll 7.00.097.1 2/15/2005 11:51:33 AM - C:\WINDOWS\system32\MILVC.dll 1, 0, 0, 1 2/15/2005 11:51:33 AM - C:\WINDOWS\system32\milvga.dll 7.00.097.1 2/15/2005 11:51:35 AM - C:\WINDOWS\system32\milvhook.dll 7.00.097.1 2/15/2005 11:51:35 AM - C:\WINDOWS\system32\digctrl.dll 1, 0, 0, 1 2/15/2005 11:51:48 AM - C:\WINDOWS\system32\digest.dll 6.00.2800.1106 3/31/2003 6:00:00 AM - C:\WINDOWS\system32\IntelNic.dll 2.05.1 5/20/2004 5:52:33 PM ____________________________________________ C:\WINDOWS\system32\drivers - C:\WINDOWS\system32\drivers\mtxdma0.sys 7.10.218.5 2/15/2005 11:52:39 AM - C:\WINDOWS\system32\drivers\mf.sys 5.1.2600.0 8/17/2001 7:58:02 AM - C:\WINDOWS\system32\drivers\mgabg.sys 1.00.020 3/7/2001 10:22:16 PM - C:\WINDOWS\system32\drivers\Orion.sys 7.10.240.27 2/15/2005 11:53:34 AM [ Back to top of page ] End of report |