diff --git a/CheckCom/CheckCom.csproj b/CheckCom/CheckCom.csproj
deleted file mode 100644
index 0973b7c..0000000
--- a/CheckCom/CheckCom.csproj
+++ /dev/null
@@ -1,14 +0,0 @@
-
-
-
- Exe
- net10.0
- enable
- enable
-
-
-
-
-
-
-
diff --git a/CheckCom/Crc16IbmSdlc.cs b/CheckCom/Crc16IbmSdlc.cs
deleted file mode 100644
index f4be334..0000000
--- a/CheckCom/Crc16IbmSdlc.cs
+++ /dev/null
@@ -1,37 +0,0 @@
-using System;
-using System.Text;
-
-public static class Crc16IbmSdlc
-{
- private const ushort PolyReversed = 0x8408; // Reflected 0x1021
- private const ushort Init = 0xFFFF;
- private const ushort XorOut = 0xFFFF;
-
- private static readonly ushort[] Table = new ushort[256];
-
- static Crc16IbmSdlc()
- {
- for (ushort i = 0; i < 256; i++)
- {
- ushort value = i;
- for (byte j = 0; j < 8; j++)
- {
- if ((value & 1) != 0)
- value = (ushort)((value >> 1) ^ PolyReversed);
- else
- value >>= 1;
- }
- Table[i] = value;
- }
- }
-
- public static ushort ComputeChecksum(ReadOnlySpan data)
- {
- ushort crc = Init;
- foreach (byte b in data)
- {
- crc = (ushort)((crc >> 8) ^ Table[(crc ^ b) & 0xFF]);
- }
- return (ushort)(crc ^ XorOut);
- }
-}
\ No newline at end of file
diff --git a/CheckCom/Program.cs b/CheckCom/Program.cs
deleted file mode 100644
index f3079e3..0000000
--- a/CheckCom/Program.cs
+++ /dev/null
@@ -1,189 +0,0 @@
-using System.Buffers;
-using System.Buffers.Binary;
-using System.ComponentModel.DataAnnotations;
-using System.IO.Ports;
-
-
-//string bx = "4F000000780000004F00000078000000000000000000";
-
-//ReadOnlySpan rs = Convert.FromHexString(bx);
-//int x = rs.Length;
-//ushort checksum = Crc16IbmSdlc.ComputeChecksum(rs);
-
-string bufp = "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff";
-string buf = "ffffffffc0ffffff003f00c1";
-
-Span discoverID = [ 0xff, 0xff, 0xff];
-Span curID = [ 0xff, 0xf9, 0x07 ];
-Span curIDrest = [ 0x00, 0x00, 0xc2, 0x01, 0x00 ];
-
-byte[] bufferp = Convert.FromHexString(bufp);
-byte[] buffer = Convert.FromHexString(buf);
-byte[] buffer2 = new byte[256];
-
-ReadOnlySpan bConnect = MakeConnect(4, curID, curIDrest);
-ReadOnlySpan bDiscover = MakeDiscover(discoverID);
-string hexString;
-
-SerialPort sp = new SerialPort("COM3", 9600);
-sp.Open();
-sp.BaudRate = 9600; sp.Parity = Parity.None; sp.DataBits = 8; sp.StopBits = StopBits.One;
-sp.DtrEnable = true;
-sp.RtsEnable = true;
-
-sp.ReadTimeout = 1000;
-sp.Handshake = Handshake.RequestToSend;
-for (int ix = 0; ix < 2; ix++)
-{
- hexString = Convert.ToHexString(bDiscover);
- Console.WriteLine($"-> Discover {hexString}");
- sp.BaseStream.Write(bDiscover);
-
- int b = sp.Read(buffer2, 0, 255);
- hexString = Convert.ToHexString(buffer2,0,b);
- Console.WriteLine($"<- ok {b} bytes: {hexString}");
- Thread.Sleep(500);
-}
-
-sp.ReadTimeout = 1000;
-sp.DiscardInBuffer();
-sp.DiscardOutBuffer();
-for (int ix = 0; ix < 2; ix++)
-{
- hexString = Convert.ToHexString(bConnect);
- Console.WriteLine($"-> Connect {hexString}");
- sp.BaseStream.Write(bConnect);
- int b = sp.Read(buffer2, 0, 255);
- hexString = Convert.ToHexString(buffer2, 0, b);
- Console.WriteLine($"<- ok {b} bytes: {hexString}");
- Thread.Sleep(500);
-} //-> "C0FFF907879994C1"
-
-//for (int ix = 0; ix < 32; ix++)
-//{
-// //hexString = Convert.ToHexString(makeBuf, 0, makeBuf.Length);
-// //Console.WriteLine($"-> {hexString}");
-// //sp.Write(makeBuf, 0, makeBuf.Length);
-// int b = 0;
-// try
-// {
-// b = sp.Read(buffer2, 0, 255);
-// }
-// catch (TimeoutException)
-// {
-// Console.WriteLine("Read timeout");
-// }
-// if (b > 0)
-// {
-// hexString = Convert.ToHexString(buffer2, 0, b);
-// Console.WriteLine($"ok {b} bytes: {hexString}");
-
-// }
-//} //-> "C0FFF907879994C1"
-
-
-sp.Close();
-
-Console.ReadLine();
-
-
-
-ReadOnlySpan MakeDiscover(Span discoverID)
-{
- return BuildPacket(64, discoverID , new byte[] { 0x00 });
-}
-
-ReadOnlySpan MakeConnect(int syncbytes, ReadOnlySpan ID, ReadOnlySpan IDrest)
-{
- byte[] packet = new byte[1 + ID.Length + IDrest.Length];
-
- packet[0] = 0x07; //connectcommnand
- ID.CopyTo(packet.AsSpan(1));
- IDrest.CopyTo(packet.AsSpan(1 + ID.Length));
-
- return BuildPacket(syncbytes, ID, packet);
-}
-
-ReadOnlySpan BuildPacket(int syncbytes, ReadOnlySpan ID, byte[] payload)
-{
-
- ArrayBufferWriter writer = new ArrayBufferWriter();
- if (syncbytes > 0)
- {
- Span span = writer.GetSpan(syncbytes);
- span.Fill(0xFF);
- writer.Advance(syncbytes);
- }
-
- writer.Write(new byte[] { 0xC0 }); // STX
- int startCS = writer.WrittenCount;
- if (ID!=ReadOnlySpan.Empty) writer.Write(ID);
-
- // 3. Schrijf de dynamische payload
- writer.Write(payload);
-
- // 4. Pak alle geschreven data, maar sla de eerste byte (index 0) over via Slice(1)
- ReadOnlySpan dataToChecksum = writer.WrittenSpan.Slice(startCS);
-
- // Bereken de 16-bit checksum
- ushort checksum = Crc16IbmSdlc.ComputeChecksum(dataToChecksum);
-
- // 5. Reserveer ruimte voor de staart: 2 bytes checksum + 1 finale byte = 3 bytes
- Span tailSpan = writer.GetSpan(3);
-
- // Checksum wegschrijven in Little Endian (LSB eerst, dan MSB)
- tailSpan[0] = (byte)(checksum & 0xFF); // Least Significant Byte
- tailSpan[1] = (byte)((checksum >> 8) & 0xFF); // Most Significant Byte
-
- // Finale byte toevoegen
- tailSpan[2] = 0xc1; // ETX (End of Text)
-
- // Geef door aan de writer dat we exact 3 bytes hebben toegevoegd
- writer.Advance(3);
-
- // 6. Return het resultaat (of stuur writer.WrittenSpan direct naar je Socket)
- return writer.WrittenSpan;
-}
-
-byte[] MakeBuf(int synccount, string prefix, string id, string playloadrest, string suffix)
-{
- // Calculate lengths
- int prefixLen = prefix.Length / 2;
- int idLen = id.Length / 2;
- int payloadLen = playloadrest.Length / 2;
- int suffixLen = suffix.Length / 2;
- int chkLen = 2; // 2 bytes for the CRC16
-
- int blen = synccount + chkLen + prefixLen + idLen + payloadLen + suffixLen;
- byte[] buf = new byte[blen];
-
- // 1. Fill sync count bytes with 0xFF
- buf.AsSpan(0, synccount).Fill(0xFF);
-
- int currentOffset = synccount;
-
- Convert.FromHexString(prefix, buf.AsSpan(currentOffset), out _, out int written);
- currentOffset += written;
- int chkstart = currentOffset;
-
- Convert.FromHexString(id, buf.AsSpan(currentOffset), out _, out int idWritten);
- currentOffset += idWritten;
-
- Convert.FromHexString(playloadrest, buf.AsSpan(currentOffset), out _, out int payloadWritten);
- currentOffset += payloadWritten;
-
- int chkOffset = currentOffset;
- int chkend = chkOffset - chkstart;
- currentOffset += 2;
-
- Convert.FromHexString(suffix, buf.AsSpan(currentOffset), out _, out int suffixWritten);
- currentOffset += suffixWritten;
-
-
- UInt16 chk = (UInt16)Crc16IbmSdlc.ComputeChecksum(buf.AsSpan(chkstart, chkend));
-
- BinaryPrimitives.WriteUInt16LittleEndian(buf.AsSpan(chkOffset, 2), chk);
-
- return buf;
-}
-
diff --git a/LSWDevices/AssemblyInfo.cpp b/LSWDevices/AssemblyInfo.cpp
deleted file mode 100644
index 8be6116..0000000
--- a/LSWDevices/AssemblyInfo.cpp
+++ /dev/null
@@ -1,20 +0,0 @@
-#include "pch.h"
-
-using namespace System;
-using namespace System::Reflection;
-using namespace System::Runtime::CompilerServices;
-using namespace System::Runtime::InteropServices;
-using namespace System::Security::Permissions;
-
-[assembly:AssemblyTitleAttribute(L"LSWDevices")];
-[assembly:AssemblyDescriptionAttribute(L"")];
-[assembly:AssemblyConfigurationAttribute(L"")];
-[assembly:AssemblyCompanyAttribute(L"")];
-[assembly:AssemblyProductAttribute(L"LSWDevices")];
-[assembly:AssemblyCopyrightAttribute(L"Copyright (c) 2024")];
-[assembly:AssemblyTrademarkAttribute(L"")];
-[assembly:AssemblyCultureAttribute(L"")];
-
-[assembly:AssemblyVersionAttribute(L"1.0.*")];
-
-[assembly:ComVisible(false)];
diff --git a/LSWDevices/Device.cpp b/LSWDevices/Device.cpp
deleted file mode 100644
index 3f5aea4..0000000
--- a/LSWDevices/Device.cpp
+++ /dev/null
@@ -1,169 +0,0 @@
-#pragma unmanaged
-#include "pch.h"
-#include "Device.h"
-
-HDEVINFO hi;
-HDEVINFO DeviceInfoSet;
-int DeviceIndex;
-SP_DEVINFO_DATA DeviceInfoData;
-
-TCHAR szDeviceInstanceID[MAX_DEVICE_ID_LEN];
-TCHAR szDesc[1024], szHardwareIDs[4096];
-
-WCHAR BusReportedDeviceDesc[255];
-DWORD cbBusReportedDeviceDesc;
-WCHAR Device_Manufacturer[255];
-DWORD cbDevice_Manufacturer;
-WCHAR Device_FriendlyName[255];
-DWORD cbDevice_FriendlyName;
-WCHAR DeviceDisplay_Category[255];
-DWORD cbDeviceDisplay_Category;
-WCHAR Hardware_ID[255];
-DWORD cbHARDWAREID;
-WCHAR PortName[255];
-DWORD cbPortName;
-CHAR Device_Exclusive;
-DWORD cbDevice_Exclusive;
-
-std::vector filters;
-
-
-CONFIGRET eject(DEVINST dnDevInst)
-{
- TCHAR szVetoName[512];
- PNP_VETO_TYPE vt;
- CONFIGRET status =
- CM_Request_Device_EjectW(
- dnDevInst,
- &vt, szVetoName, 512, 0);
- return 0;
-}
-
-static BOOL Reset(HDEVINFO hDevInfo, SP_DEVINFO_DATA* pDeviceInfoData)
-{
- DWORD err = 0;
- bool rv = true;
- //https://forums.codeguru.com/showthread.php?418183-Reset-USB-connection
- SP_CLASSINSTALL_HEADER classInstallParams;
- SP_PROPCHANGE_PARAMS propChangeParams;
-
- classInstallParams.cbSize = sizeof(SP_CLASSINSTALL_HEADER);
- classInstallParams.InstallFunction = DIF_PROPERTYCHANGE;
- propChangeParams.ClassInstallHeader = classInstallParams;
- propChangeParams.StateChange = DICS_DISABLE; //DICS_PROPCHANGE
- propChangeParams.Scope = DICS_FLAG_GLOBAL;
- propChangeParams.HwProfile = 0;
-
- if (SetupDiSetClassInstallParams(hDevInfo, pDeviceInfoData, (PSP_CLASSINSTALL_HEADER)&propChangeParams, sizeof(SP_PROPCHANGE_PARAMS)))
- {
- rv = SetupDiCallClassInstaller(DIF_PROPERTYCHANGE, hDevInfo, pDeviceInfoData);
- if (!rv) err = GetLastError();
- }
- return rv;
-}
-
-BOOL DeviceScanStart(int type)
-{
- const GUID* gClass;
- filters.clear();
- switch (type)
- {
- case 1: gClass = &GUID_DEVCLASS_SMARTCARDREADER; break; //smartcard
- default: gClass = &GUID_DEVCLASS_PORTS; break;
- }
- DeviceInfoSet = SetupDiGetClassDevsExA( gClass, 0, nullptr, DIGCF_PRESENT, NULL, NULL, NULL);
- ZeroMemory(&DeviceInfoData, sizeof(SP_DEVINFO_DATA));
- DeviceInfoData.cbSize = sizeof(SP_DEVINFO_DATA);
- DeviceIndex = 0;
- return true;
-}
-
-BOOL DeviceScanEnd()
-{
- SetupDiDestroyDeviceInfoList(DeviceInfoSet);
-
-
- return true;
-}
-
-BOOL DeviceScan()
-{
- int rv = true; //1=found 2=end
- CONFIGRET status;
- DWORD dwSize, dwPropertyRegDataType;
- DEVPROPTYPE ulPropertyType;
- DWORD err;
-
- //class __declspec(uuid(portGuid)) cRoot;
- //const GUID root = __uuidof(cRoot);
- //const static LPCTSTR arPrefix[3] = { TEXT("VID_"), TEXT("PID_"), TEXT("MI_") };
- //WCHAR szBuffer[4096];
- //GUID_DEVCLASS_PORTS
-
- if (SetupDiEnumDeviceInfo(
- DeviceInfoSet,
- DeviceIndex,
- &DeviceInfoData))
- {
- szDesc[0] = 0;
- status = CM_Get_Device_ID(DeviceInfoData.DevInst, szDeviceInstanceID, MAX_DEVICE_ID_LEN, 0);
- if (status != CR_SUCCESS)
- return false;
-
- if (SetupDiGetDeviceRegistryProperty(DeviceInfoSet, &DeviceInfoData, SPDRP_HARDWAREID, &ulPropertyType, (BYTE*)Hardware_ID, sizeof(Hardware_ID), &cbHARDWAREID)) {};
- if (filters.size() > 0) {
- rv = 0;
- int filterIdx = 1; //vanaf 1
- for (LPCTSTR f : filters) {
- if (!_tcsncmp(Hardware_ID, f, _tcslen(f))) {
- rv = filterIdx;
- break;
- }
- filterIdx++;
- }
- }
- else
- rv = 0;
-
-
- if (SetupDiGetDeviceRegistryProperty(DeviceInfoSet, &DeviceInfoData, SPDRP_DEVICEDESC, &dwPropertyRegDataType, (BYTE*)szDesc, sizeof(szDesc), &dwSize)) {}
-
- if (SetupDiGetDevicePropertyW(DeviceInfoSet, &DeviceInfoData, &DEVPKEY_Device_BusReportedDeviceDesc, &ulPropertyType, (BYTE*)BusReportedDeviceDesc, sizeof(BusReportedDeviceDesc), &cbBusReportedDeviceDesc, 0)) {};
- if (SetupDiGetDevicePropertyW(DeviceInfoSet, &DeviceInfoData, &DEVPKEY_Device_Manufacturer, &ulPropertyType, (BYTE*)Device_Manufacturer, sizeof(Device_Manufacturer), &cbDevice_Manufacturer, 0)) {};
- if (SetupDiGetDevicePropertyW(DeviceInfoSet, &DeviceInfoData, &DEVPKEY_Device_FriendlyName, &ulPropertyType, (BYTE*)Device_FriendlyName, sizeof(Device_FriendlyName), &cbDevice_FriendlyName, 0)) {
- int s = 0;
- };
- //if (SetupDiGetDevicePropertyW(DeviceInfoSet, &DeviceInfoData, &DEVPKEY_Device_LocationInfo,&ulPropertyType, (BYTE*)szBuffer, sizeof(szBuffer), &dwSize, 0)) {};
- //if (SetupDiGetDevicePropertyW(DeviceInfoSet, &DeviceInfoData, &DEVPKEY_Device_SecuritySDS,&ulPropertyType, (BYTE*)szBuffer, sizeof(szBuffer), &dwSize, 0)) {};
- // // (http://msdn.microsoft.com/en-us/library/windows/desktop/aa379567(v=vs.85).aspx)
- //if (SetupDiGetDevicePropertyW(DeviceInfoSet, &DeviceInfoData, &DEVPKEY_Device_ContainerId,&ulPropertyType, (BYTE*)szDesc, sizeof(szDesc), &dwSize, 0)) {
- // StringFromGUID2((REFGUID)szDesc, szBuffer, ARRAY_SIZE(szBuffer));
- //}
- if (SetupDiGetDevicePropertyW(DeviceInfoSet, &DeviceInfoData, &DEVPKEY_DeviceDisplay_Category, &ulPropertyType, (BYTE*)DeviceDisplay_Category, sizeof(DeviceDisplay_Category), &cbDeviceDisplay_Category, 0))
- {
- err = 0;
- }
- else {
- err = GetLastError();
- DeviceDisplay_Category[0] = 0;
- }
-
- if (SetupDiGetDevicePropertyW(DeviceInfoSet, &DeviceInfoData, &DEVPKEY_Device_Exclusive, &ulPropertyType, (BYTE*)&Device_Exclusive, sizeof(Device_Exclusive), &cbDevice_Exclusive, 0))
- {
- LSTATUS s = 0;
- };
-
-
- HKEY hkey = SetupDiOpenDevRegKey(DeviceInfoSet, &DeviceInfoData, DICS_FLAG_GLOBAL, 0, DIREG_DEV, KEY_QUERY_VALUE | KEY_READ | KEY_ENUMERATE_SUB_KEYS);
- if (hkey != INVALID_HANDLE_VALUE) {
- LSTATUS s = 0;
- cbPortName = sizeof(PortName);
- s = RegGetValueW(hkey, 0, L"PortName", RRF_RT_REG_SZ, nullptr, (PVOID)PortName, &cbPortName);
- RegCloseKey(hkey);
- }
-
-
- }
- else rv = -1; //error
- return rv;
-}
diff --git a/LSWDevices/Device.h b/LSWDevices/Device.h
deleted file mode 100644
index 6f289c9..0000000
--- a/LSWDevices/Device.h
+++ /dev/null
@@ -1,76 +0,0 @@
-#pragma once
-#pragma unmanaged
-#define INITGUID
-
-#include
-#include // for GUID_DEVCLASS_CDROM etc
-#include
-#include // for MAX_DEVICE_ID_LEN, CM_Get_Parent and CM_Get_Device_ID
-#include
-#include
-#pragma comment (lib, "Setupapi.lib")
-#pragma comment (lib, "Advapi32.lib")
-//#include
-#include
-
-#define ARRAY_SIZE(arr) (sizeof(arr)/sizeof(arr[0]))
-#define CLS "USB\\VID_0EBB&PID_0340&MI_00"
-#define CLS2 0
-#define devstr "USB\\VID_0EBB&PID_0340&MI_00\\7&8520AE7&5&0000"
-#define portGuid "4d36e978-e325-11ce-bfc1-08002be10318"
-#define USBGuid "88BAE032-5A81-49f0-BC3D-A4FF138216D"
-
-//// include DEVPKEY_Device_BusReportedDeviceDesc from WinDDK\7600.16385.1\inc\api\devpropdef.h
-//#ifdef DEFINE_DEVPROPKEY
-//#undef DEFINE_DEVPROPKEY
-//#endif
-//#ifdef INITGUID
-//#define DEFINE_DEVPROPKEY(name, l, w1, w2, b1, b2, b3, b4, b5, b6, b7, b8, pid) EXTERN_C const DEVPROPKEY DECLSPEC_SELECTANY name = { { l, w1, w2, { b1, b2, b3, b4, b5, b6, b7, b8 } }, pid }
-//#else
-//#define DEFINE_DEVPROPKEY(name, l, w1, w2, b1, b2, b3, b4, b5, b6, b7, b8, pid) EXTERN_C const DEVPROPKEY name
-//#endif // INITGUID
-//
-//// include DEVPKEY_Device_BusReportedDeviceDesc from WinDDK\7600.16385.1\inc\api\devpkey.h
-//DEFINE_DEVPROPKEY(DEVPKEY_Device_BusReportedDeviceDesc, 0x540b947e, 0x8b40, 0x45bc, 0xa8, 0xa2, 0x6a, 0x0b, 0x89, 0x4c, 0xbd, 0xa2, 4); // DEVPROP_TYPE_STRING
-//DEFINE_DEVPROPKEY(DEVPKEY_Device_ContainerId, 0x8c7ed206, 0x3f8a, 0x4827, 0xb3, 0xab, 0xae, 0x9e, 0x1f, 0xae, 0xfc, 0x6c, 2); // DEVPROP_TYPE_GUID
-//DEFINE_DEVPROPKEY(DEVPKEY_Device_FriendlyName, 0xa45c254e, 0xdf1c, 0x4efd, 0x80, 0x20, 0x67, 0xd1, 0x46, 0xa8, 0x50, 0xe0, 14); // DEVPROP_TYPE_STRING
-//DEFINE_DEVPROPKEY(DEVPKEY_DeviceDisplay_Category, 0x78c34fc8, 0x104a, 0x4aca, 0x9e, 0xa4, 0x52, 0x4d, 0x52, 0x99, 0x6e, 0x57, 0x5a); // DEVPROP_TYPE_STRING_LIST
-//DEFINE_DEVPROPKEY(DEVPKEY_Device_LocationInfo, 0xa45c254e, 0xdf1c, 0x4efd, 0x80, 0x20, 0x67, 0xd1, 0x46, 0xa8, 0x50, 0xe0, 15); // DEVPROP_TYPE_STRING
-//DEFINE_DEVPROPKEY(DEVPKEY_Device_Manufacturer, 0xa45c254e, 0xdf1c, 0x4efd, 0x80, 0x20, 0x67, 0xd1, 0x46, 0xa8, 0x50, 0xe0, 13); // DEVPROP_TYPE_STRING
-//DEFINE_DEVPROPKEY(DEVPKEY_Device_SecuritySDS, 0xa45c254e, 0xdf1c, 0x4efd, 0x80, 0x20, 0x67, 0xd1, 0x46, 0xa8, 0x50, 0xe0, 26); // DEVPROP_TYPE_SECURITY_DESCRIPTOR_STRING
-//DEFINE_DEVPROPKEY(DEVPKEY_Device_UINumberDescFormat, 0xa45c254e, 0xdf1c, 0x4efd, 0x80, 0x20, 0x67, 0xd1, 0x46, 0xa8, 0x50, 0xe0, 31); // DEVPROP_TYPE_STRING
-
-typedef BOOL(WINAPI* fn_SetupDiGetDevicePropertyW)(
- __in HDEVINFO DeviceInfoSet,
- __in PSP_DEVINFO_DATA DeviceInfoData,
- __in const DEVPROPKEY* PropertyKey,
- __out DEVPROPTYPE* PropertyType,
- __out_opt PBYTE PropertyBuffer,
- __in DWORD PropertyBufferSize,
- __out_opt PDWORD RequiredSize,
- __in DWORD Flags
- );
-
-
-
-extern TCHAR szDeviceInstanceID[MAX_DEVICE_ID_LEN];
-extern WCHAR BusReportedDeviceDesc[255];
-extern WCHAR Device_Manufacturer[255];
-extern WCHAR Device_FriendlyName[255];
-extern WCHAR DeviceDisplay_Category[255];
-extern WCHAR Hardware_ID[255];
-extern WCHAR PortName[255];
-extern CHAR Device_Exclusive;
-
-extern int DeviceIndex;
-extern std::vector filters;
-
-inline static void cAddFilter(const wchar_t* filter)
-{
- const wchar_t* x = _wcsdup(filter);
- filters.push_back(x);
-}
-static BOOL Reset(HDEVINFO hDevInfo, SP_DEVINFO_DATA* pDeviceInfoData);
-BOOL DeviceScanEnd();
-BOOL DeviceScanStart(int type);
-BOOL DeviceScan();
\ No newline at end of file
diff --git a/LSWDevices/LSWDevices.cpp b/LSWDevices/LSWDevices.cpp
deleted file mode 100644
index 2c9738d..0000000
--- a/LSWDevices/LSWDevices.cpp
+++ /dev/null
@@ -1,129 +0,0 @@
-#include "pch.h"
-
-#include "Device.h"
-#include "LSWDevices.h"
-#include
-
-
-
-LSWDevices::cLSWDevice::cLSWDevice()
-{
-}
-
-LSWDevices::cLSWDevice::~cLSWDevice()
-{
-
-}
-
-LSWDevices::cLSWDevices::cLSWDevices()
-{
- DeviceList = gcnew System::Collections::Generic::List();
-}
-
-LSWDevices::cLSWDevices::~cLSWDevices()
-{
- //DeviceList->Clear();
-}
-
-void LSWDevices::cLSWDevices::AddFilter(System::Collections::Generic::List^ Filter)
-{
- for each (String^ var in Filter)
- {
- pin_ptr wch = PtrToStringChars(var);
- cAddFilter( const_cast(wch) );
- }
-}
-
-void LSWDevices::cLSWDevices::Scan(int type, System::Collections::Generic::List^ Filter)
-{
- int maxFilter = 0;
- DevicesFound = nullptr;
- DeviceScanStart(type);
- if (Filter != nullptr) {
- maxFilter = Filter->Count;
- AddFilter(Filter);
- DevicesFound = gcnew System::Collections::Generic::Dictionary(maxFilter) ;
- }
- int i = DeviceIndex;
- int rv = DeviceScan();
- int minrv = 0; if (Filter != nullptr && Filter->Count > 0) minrv = 1;
- while (rv >=0) {
- if (rv >= minrv) {
- cLSWDevice^ d = gcnew cLSWDevice();
- d->DeviceInstanceID = gcnew System::String(szDeviceInstanceID);
- d->Device_FriendlyName = gcnew System::String(Device_FriendlyName);
- d->BusReportedDeviceDesc = gcnew System::String(BusReportedDeviceDesc);
- d->Device_Manufacturer = gcnew System::String(Device_Manufacturer);
- d->DeviceDisplay_Category = gcnew System::String(DeviceDisplay_Category);
- d->Hardware_ID = gcnew System::String(Hardware_ID);
- d->PortName = gcnew System::String(PortName);
- d->Firmware = GetFirmware();
- DeviceList->Add(d);
- if (rv > 0 && rv<= maxFilter && DevicesFound->CountContainsKey(rv-1)) DevicesFound->Add(rv-1, d);
- }
- ++DeviceIndex;
- rv = DeviceScan();
- }
- DeviceScanEnd();
-}
-
-String^ LSWDevices::cLSWDevices::GetFirmware()
-{
- String^ result = nullptr;
- wchar_t* firmware = nullptr;
- if (!_tcsncmp(BusReportedDeviceDesc, TEXT("TWN"), 3)) {
- wchar_t* e = BusReportedDeviceDesc + _tcslen(BusReportedDeviceDesc);
- wchar_t* x = wcsrchr(BusReportedDeviceDesc, (wchar_t)'/');
- if (x != nullptr) {
- firmware = _tcsdup(x + 1);
- result= gcnew System::String(firmware);
- }
- }
- return result;
-}
-
- int LSWDevices::cLSWDevices::GetComPortElatec(String^% ElatecPort, String^% ElatecFirmware)
-{
- //LSWDevices.LSWDevices a;
- String^ comport = nullptr;
- System::Collections::Generic::List^ f = gcnew System::Collections::Generic::List();
- f->Add(fElatec);
- cLSWDevices^ cDev = gcnew cLSWDevices();
- cDev->Scan(0, f);
- if (cDev->DevicesFound->Count == 1)
- {
- ElatecPort = cDev->DevicesFound[0]->PortName;
- ElatecFirmware = cDev->DevicesFound[0]->Firmware;
- }
- cDev->~cLSWDevices();
-
- return cDev->DevicesFound->Count;
-}
-
- int LSWDevices::cLSWDevices::GetComPortEdosElatec(String^ %eDosPort, String^ %ElatecPort, String^% ElatecFirmware)
- {
- int r = 0;
- String^ comport = nullptr;
- System::Collections::Generic::List^ f = gcnew System::Collections::Generic::List();
- f->Add(fEdos);
- f->Add(fElatec);
- cLSWDevices^ cDev = gcnew cLSWDevices();
- cDev->Scan(0, f);
-
- r = cDev->DevicesFound->Count;
- if (cDev->DevicesFound->Count == 2)
- {
- eDosPort = cDev->DevicesFound[0]->PortName;
- ElatecPort = cDev->DevicesFound[1]->PortName;
- ElatecFirmware = cDev->DevicesFound[1]->Firmware;
-
- }
- else {
- eDosPort = nullptr;
- ElatecPort = nullptr;
- }
-
- cDev->~cLSWDevices();
-
- return r;
- }
\ No newline at end of file
diff --git a/LSWDevices/LSWDevices.h b/LSWDevices/LSWDevices.h
deleted file mode 100644
index 4306293..0000000
--- a/LSWDevices/LSWDevices.h
+++ /dev/null
@@ -1,56 +0,0 @@
-#pragma once
-
-#pragma managed
-using namespace System;
-using namespace System::Runtime::InteropServices;
-
-namespace LSWDevices {
-
-
-
- public ref class cLSWDevice
- {
- public:
- String^ DeviceInstanceID;
- String^ BusReportedDeviceDesc;
- String^ Device_Manufacturer;
- String^ Device_FriendlyName;
- String^ DeviceDisplay_Category;
- String^ Hardware_ID;
- String^ PortName;
- String^ Firmware;
-
- cLSWDevice();
- ~cLSWDevice();
-
- private:
-
- };
-
-
-
- public ref class cLSWDevices
- {
- public:
- literal String^ fElatec = "USB\\VID_09D8&PID_0420";
- literal String^ fEdos = "USB\\VID_0EBB&PID_0340";
-
- System::Collections::Generic::List^ DeviceList;
- System::Collections::Generic::Dictionary^ DevicesFound;
- cLSWDevices();
- ~cLSWDevices();
- void AddFilter(System::Collections::Generic::List^ Filter);
- void Scan(int type, System::Collections::Generic::List^ Filter);
- static int GetComPortElatec([Out] String^% ElatecPort, [Out] String^% ElatecFirmware);
- static int GetComPortEdosElatec( [Out] String^% eDosPort, [Out] String^% ElatecPort, [Out] String^% ElatecFirmware );
-
- private:
- String^ GetFirmware();
-
- };
-
-
-
-
-
-}
diff --git a/LSWDevices/LSWDevices.vcxproj b/LSWDevices/LSWDevices.vcxproj
deleted file mode 100644
index 7e22604..0000000
--- a/LSWDevices/LSWDevices.vcxproj
+++ /dev/null
@@ -1,153 +0,0 @@
-
-
-
-
- Debug
- Win32
-
-
- Release
- Win32
-
-
- Debug
- x64
-
-
- Release
- x64
-
-
-
- 17.0
- {DD7E3ADD-D2DF-4755-80F3-853C49809CE6}
- v4.8
- ManagedCProj
- LSWDevices
- 10.0
-
-
-
- DynamicLibrary
- true
- v143
- true
- Unicode
-
-
- DynamicLibrary
- false
- v143
- true
- Unicode
-
-
- DynamicLibrary
- true
- v143
- true
- Unicode
-
-
- DynamicLibrary
- false
- v143
- true
- Unicode
- x64
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Use
- pch.h
- Level3
- _DEBUG;%(PreprocessorDefinitions)
-
-
-
-
-
-
-
- Use
- pch.h
- Level3
- WIN32;_DEBUG;%(PreprocessorDefinitions)
-
-
-
-
-
-
-
- Use
- pch.h
- Level3
- WIN32;NDEBUG;%(PreprocessorDefinitions)
-
-
-
-
-
-
-
- Use
- pch.h
- Level3
- NDEBUG;%(PreprocessorDefinitions)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Create
- Create
- Create
- Create
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/LSWDevices/LSWDevices.vcxproj.filters b/LSWDevices/LSWDevices.vcxproj.filters
deleted file mode 100644
index d5e17b5..0000000
--- a/LSWDevices/LSWDevices.vcxproj.filters
+++ /dev/null
@@ -1,55 +0,0 @@
-
-
-
-
- {4FC737F1-C7A5-4376-A066-2A32D752A2FF}
- cpp;c;cc;cxx;c++;cppm;ixx;def;odl;idl;hpj;bat;asm;asmx
-
-
- {93995380-89BD-4b04-88EB-625FBE52EBFB}
- h;hh;hpp;hxx;h++;hm;inl;inc;ipp;xsd
-
-
- {67DA6AB6-F800-4c08-8B7A-83BB121AAD01}
- rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms
-
-
-
-
- Header Files
-
-
- Header Files
-
-
- Header Files
-
-
- Header Files
-
-
-
-
- Source Files
-
-
- Source Files
-
-
- Source Files
-
-
- Source Files
-
-
-
-
- Resource Files
-
-
-
-
- Resource Files
-
-
-
\ No newline at end of file
diff --git a/LSWDevices/Resource.h b/LSWDevices/Resource.h
deleted file mode 100644
index 1f2251c..0000000
--- a/LSWDevices/Resource.h
+++ /dev/null
@@ -1,3 +0,0 @@
-//{{NO_DEPENDENCIES}}
-// Microsoft Visual C++ generated include file.
-// Used by app.rc
diff --git a/LSWDevices/app.ico b/LSWDevices/app.ico
deleted file mode 100644
index 789d7cc..0000000
Binary files a/LSWDevices/app.ico and /dev/null differ
diff --git a/LSWDevices/app.rc b/LSWDevices/app.rc
deleted file mode 100644
index eab4306..0000000
Binary files a/LSWDevices/app.rc and /dev/null differ
diff --git a/LSWDevices/pch.cpp b/LSWDevices/pch.cpp
deleted file mode 100644
index 91c22df..0000000
--- a/LSWDevices/pch.cpp
+++ /dev/null
@@ -1,5 +0,0 @@
-// pch.cpp: source file corresponding to the pre-compiled header
-
-#include "pch.h"
-
-// When you are using pre-compiled headers, this source file is necessary for compilation to succeed.
diff --git a/LSWDevices/pch.h b/LSWDevices/pch.h
deleted file mode 100644
index a98b1bd..0000000
--- a/LSWDevices/pch.h
+++ /dev/null
@@ -1,12 +0,0 @@
-// pch.h: This is a precompiled header file.
-// Files listed below are compiled only once, improving build performance for future builds.
-// This also affects IntelliSense performance, including code completion and many code browsing features.
-// However, files listed here are ALL re-compiled if any one of them is updated between builds.
-// Do not add files here that you will be updating frequently as this negates the performance advantage.
-
-#ifndef PCH_H
-#define PCH_H
-
-// add headers that you want to pre-compile here
-
-#endif //PCH_H
diff --git a/SetupProjectTestSched/Product.wxs b/SetupProjectTestSched/Product.wxs
deleted file mode 100644
index df6e562..0000000
--- a/SetupProjectTestSched/Product.wxs
+++ /dev/null
@@ -1,41 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/SetupProjectTestSched/SetupProjectTestSched.wixproj b/SetupProjectTestSched/SetupProjectTestSched.wixproj
deleted file mode 100644
index 8f3de0e..0000000
--- a/SetupProjectTestSched/SetupProjectTestSched.wixproj
+++ /dev/null
@@ -1,37 +0,0 @@
-
-
-
- Debug
- x86
- 3.10
- bcf97910-cf22-486a-8d27-0a685fe83e4e
- 2.0
- SetupProjectTestSched
- Package
-
-
- bin\$(Configuration)\
- obj\$(Configuration)\
- Debug
-
-
- bin\$(Configuration)\
- obj\$(Configuration)\
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/TestLSWDevice/App.config b/TestLSWDevice/App.config
deleted file mode 100644
index 3916e0e..0000000
--- a/TestLSWDevice/App.config
+++ /dev/null
@@ -1,6 +0,0 @@
-
-
-
-
-
-
\ No newline at end of file
diff --git a/TestLSWDevice/Program.cs b/TestLSWDevice/Program.cs
deleted file mode 100644
index 185e858..0000000
--- a/TestLSWDevice/Program.cs
+++ /dev/null
@@ -1,51 +0,0 @@
-using System;
-using System.Collections.Generic;
-using System.Linq;
-using System.Runtime.Remoting.Messaging;
-using System.Security.Cryptography;
-using System.Text;
-using System.Threading.Tasks;
-using System.Xml;
-
-namespace TestLSWDevice
-{
- internal class Program
- {
- static void Main(string[] args)
- {
-
- // : (Standard port types) : ACPI\VEN_PNP&DEV_0501
- // STM32 Virtual COM Port : Microsoft : USB\VID_0483&PID_5740&REV_0400
- // TWN4/B1.08/NCF4.80/BMKR3.72 : Elatec : USB\VID_09D8&PID_0420&REV_0200
- // Desktop Reader : Thermo Fisher Scientific : USB\VID_0EBB&PID_0340&REV_0101&MI_00
- // Desktop Reader : Lantronix : *cprdevice
-
- // YubiKey OTP+FIDO+CCID : Microsoft : USB\VID_1050&PID_0407&REV_0512&MI_02
- // ACR39U ICC Reader : Advanced Card Systems Ltd. : USB\VID_072F&PID_B100&REV_3009
- // Smart Card Reader USB : HID Global : USB\VID_076B&PID_5340&REV_0531
-
- LSWDevices.cLSWDevices x = new LSWDevices.cLSWDevices();
- System.Collections.Generic.List filters = new List() { LSWDevices.cLSWDevices.fEdos, LSWDevices.cLSWDevices.fElatec };
- //System.Collections.Generic.List filters = null;
-
- x.Scan(0,filters);
- foreach (var d in x.DeviceList)
- {
- System.Diagnostics.Debug.WriteLine($"// {d.BusReportedDeviceDesc} : {d.Device_Manufacturer} : {d.Hardware_ID} ");
- }
- System.Diagnostics.Debug.WriteLine($"cnt={x.DeviceList.Count}");
-
- for (int ix = 0; ix < filters.Count; ++ix)
- {
- System.Diagnostics.Debug.WriteLine($"{ix}: filter={filters[ix]} {x.DevicesFound[ix].Device_Manufacturer} {x.DevicesFound[ix].PortName}");
- }
- System.Diagnostics.Debug.WriteLine($"cnt={x.DevicesFound.Count}");
-
- string edos , elatec, elatecfirmware;
- int r = LSWDevices.cLSWDevices.GetComPortEdosElatec( out edos, out elatec, out elatecfirmware);
-
-
- x.Dispose();
- }
- }
-}
diff --git a/TestLSWDevice/Properties/AssemblyInfo.cs b/TestLSWDevice/Properties/AssemblyInfo.cs
deleted file mode 100644
index 824b489..0000000
--- a/TestLSWDevice/Properties/AssemblyInfo.cs
+++ /dev/null
@@ -1,33 +0,0 @@
-using System.Reflection;
-using System.Runtime.CompilerServices;
-using System.Runtime.InteropServices;
-
-// General Information about an assembly is controlled through the following
-// set of attributes. Change these attribute values to modify the information
-// associated with an assembly.
-[assembly: AssemblyTitle("TestLSWDevice")]
-[assembly: AssemblyDescription("")]
-[assembly: AssemblyConfiguration("")]
-[assembly: AssemblyCompany("")]
-[assembly: AssemblyProduct("TestLSWDevice")]
-[assembly: AssemblyCopyright("Copyright © 2024")]
-[assembly: AssemblyTrademark("")]
-[assembly: AssemblyCulture("")]
-
-// Setting ComVisible to false makes the types in this assembly not visible
-// to COM components. If you need to access a type in this assembly from
-// COM, set the ComVisible attribute to true on that type.
-[assembly: ComVisible(false)]
-
-// The following GUID is for the ID of the typelib if this project is exposed to COM
-[assembly: Guid("d8543650-6a65-4dbf-a389-c55b7745d0e8")]
-
-// Version information for an assembly consists of the following four values:
-//
-// Major Version
-// Minor Version
-// Build Number
-// Revision
-//
-[assembly: AssemblyVersion("1.0.0.0")]
-[assembly: AssemblyFileVersion("1.0.0.0")]
diff --git a/TestLSWDevice/TestLSWDevice.csproj b/TestLSWDevice/TestLSWDevice.csproj
deleted file mode 100644
index 561efe3..0000000
--- a/TestLSWDevice/TestLSWDevice.csproj
+++ /dev/null
@@ -1,82 +0,0 @@
-
-
-
-
- true
- Debug
- AnyCPU
- {D8543650-6A65-4DBF-A389-C55B7745D0E8}
- Exe
- TestLSWDevice
- TestLSWDevice
- v4.8
- 512
- true
- true
- publish\
- true
- Disk
- false
- Foreground
- 7
- Days
- false
- false
- true
- 0
- 1.0.0.%2a
- false
- false
- true
-
-
- x64
- true
- full
- false
- bin\Debug\
- DEBUG;TRACE
- prompt
- 4
- true
-
-
- AnyCPU
- pdbonly
- true
- bin\Release\
- TRACE
- prompt
- 4
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- False
- Microsoft .NET Framework 4.8 %28x86 and x64%29
- true
-
-
- False
- .NET Framework 3.5 SP1
- false
-
-
-
-
\ No newline at end of file
diff --git a/TestMK3/CommonEpdTypes.h b/TestMK3/CommonEpdTypes.h
deleted file mode 100644
index 114ce48..0000000
--- a/TestMK3/CommonEpdTypes.h
+++ /dev/null
@@ -1,45 +0,0 @@
-#ifndef common_epd_types_h
-#define common_epd_types_h
-enum class EpdGeneration
-{
- None,
- Mk2,
- Mk3
-};
-enum class EpdTypes : uint8_t
-{
- Mk2BetaGamma = 0,
- Mk2Neutron = 3,
- Mk3BetaGamma = 4,
- Mk3Neutron = 7,
- Mk2Gamma = 16,
- Mk3Gamma = 20
-};
-#pragma pack (push)
-#pragma pack (1)
-struct DiscoveryId
-{
- uint32_t Id;
- EpdGeneration Gen;
- uint32_t MaxBaud;
- bool operator==(const DiscoveryId &other) const
- {
- return (Id == other.Id) && (Gen == other.Gen);
- }
- bool operator !=(const DiscoveryId &other) const
- {
- return !(*this == other);
- }
-} ;
-typedef struct
-{
- uint16_t Address;
- uint8_t Length;
-} MemoryBlockDetails;
-typedef struct
-{
- MemoryBlockDetails BlockDetail;
- uint8_t Data[UINT8_MAX];
-} MemoryData;
-#pragma pack (pop)
-#endif
\ No newline at end of file
diff --git a/TestMK3/Epd2.h b/TestMK3/Epd2.h
deleted file mode 100644
index bc9a06a..0000000
--- a/TestMK3/Epd2.h
+++ /dev/null
@@ -1,73 +0,0 @@
-#ifndef epd2_h
-#define epd2_h
-/******************************************************************************
-*
-* Module Name : Reader3.DLL
-*
-* File Name : Epd3.h
-*
-* File Description : Public API For EPD MK3 Communication
-*
-* Authors: : T Banahan
-*
-******************************************************************************
-*
-* This is an unpublished work, the copyright of which vests in Thermo
-* Fisher Scientific. All rights reserved.
-*
-* The information contained herein is the property of Thermo Fisher
-* Scientific and is supplied without liability for errors or ommissions
-* and no part may be reproduced, used or disclosed except as authorised
-* by contract or other written permission. The copyright and the foregoing
-* restriction on reproduction, use and disclosure extends to all the media
-* in which this information may be embodied.
-*
-******************************************************************************/
-#ifndef WINAPI
-#define WINAPI __stdcall
-#endif
-#ifdef READER3_EXPORTS
-#define EPDDLL_API __declspec(dllexport) WINAPI
-#else
-#define EPDDLL_API __declspec(dllimport) WINAPI
-#endif
-#include
-extern "C"
-{
- /********************************************************************************************************************************************
- *
- * Telemetry
- *
- ********************************************************************************************************************************************/
- CompletionToken EPDDLL_API BeginReadTelemetryMode_R2(CommsHandle hComms, CompletionCallback callback);
- int32_t EPDDLL_API EndReadTelemetryMode_R2(CommsHandle hComms, CompletionToken token, uint8_t *mode);
- CompletionToken EPDDLL_API BeginWriteTelemetryMode_R2(CommsHandle hComms, uint8_t mode, CompletionCallback callback);
- int32_t EPDDLL_API EndWriteTelemetryMode_R2(CommsHandle hComms, CompletionToken token);
- /********************************************************************************************************************************************
- *
- * Calibration data
- *
- ********************************************************************************************************************************************/
- CompletionToken EPDDLL_API BeginReadCalibrationData_R2(CommsHandle hComms, CompletionCallback callback);
- int32_t EPDDLL_API EndReadCalibrationData_R2(CommsHandle hComms, CompletionToken token,
- uint16_t * HGSens10, uint16_t * SGSens10, uint16_t * HGSens07, uint16_t * SGSens07,
- uint16_t * FBSens07, uint16_t * BCSens07,
- uint16_t * SGthresh, uint16_t * BCthresh,
- uint16_t * FBthresh, uint16_t * HGthresh);
- CompletionToken EPDDLL_API BeginWriteDetectorThresholds_R2(CommsHandle hComms, CompletionCallback callback,
- uint16_t SGthresh, uint16_t BCthresh,
- uint16_t FBthresh, uint16_t HGthresh);
- int32_t EPDDLL_API EndWriteDetectorThresholds_R2(CommsHandle hComms, CompletionToken token);
- CompletionToken EPDDLL_API BeginWriteSensitivities_R2(CommsHandle hComms, CompletionCallback callback,
- uint16_t HGSens10, uint16_t SGSens10, uint16_t HGSens07, uint16_t SGSens07,
- uint16_t FBSens07, uint16_t BCSens07);
- int32_t EPDDLL_API EndWriteSensitivities_R2(CommsHandle hComms, CompletionToken token);
- /********************************************************************************************************************************************
- *
- * Manufacturer Login
- *
- ********************************************************************************************************************************************/
- CompletionToken EPDDLL_API BeginMfrLogin_R2(CommsHandle hComms, uint32_t password, CompletionCallback callback);
- int32_t EPDDLL_API EndMfrLogin_R2(CommsHandle hComms, CompletionToken token);
-}
-#endif
\ No newline at end of file
diff --git a/TestMK3/Epd3.h b/TestMK3/Epd3.h
deleted file mode 100644
index 52a861c..0000000
--- a/TestMK3/Epd3.h
+++ /dev/null
@@ -1,433 +0,0 @@
-#ifndef epd3_h
-#define epd3_h
-/******************************************************************************
-*
-* Module Name : Reader3.DLL
-*
-* File Name : Epd3.h
-*
-* File Description : Public API For EPD MK3 Communication
-*
-* Authors: : P Beeson
-*
-******************************************************************************
-*
-* This is an unpublished work, the copyright of which vests in Thermo
-* Fisher Scientific. All rights reserved.
-*
-* The information contained herein is the property of Thermo Fisher
-* Scientific and is supplied without liability for errors or ommissions
-* and no part may be reproduced, used or disclosed except as authorised
-* by contract or other written permission. The copyright and the foregoing
-* restriction on reproduction, use and disclosure extends to all the media
-* in which this information may be embodied.
-*
-******************************************************************************/
-#ifndef WINAPI
-#define WINAPI __stdcall
-#endif
-#ifdef READER3_EXPORTS
-#define EPDDLL_API __declspec(dllexport) WINAPI
-#else
-#define EPDDLL_API __declspec(dllimport) WINAPI
-#endif
-#include
-#include "Mk3Types.h"
-extern "C"
-{
- /********************************************************************************************************************************************
- *
- * MK3 Specific Event Log
- *
- ********************************************************************************************************************************************/
- CompletionToken EPDDLL_API BeginWriteEventLogLevel_R3(CommsHandle hComms, uint8_t level, CompletionCallback callback = nullptr);
- int32_t EPDDLL_API EndWriteEventLogLevel_R3(CommsHandle hComms, CompletionToken token);
- CompletionToken EPDDLL_API BeginReadEventLogLevel_R3(CommsHandle hComms, CompletionCallback callback = nullptr);
- int32_t EPDDLL_API EndReadEventLogLevel_R3(CommsHandle hComms, CompletionToken token, uint8_t* level);
- /********************************************************************************************************************************************
- * MK3 Specific Counts Acquisition
- ********************************************************************************************************************************************/
- CompletionToken EPDDLL_API BeginReadFlashTestCounts_R3(CommsHandle hComms, uint8_t counterIds[], uint8_t length, CompletionCallback callback);
- int32_t EPDDLL_API EndReadFlashTestCounts_R3(CommsHandle hComms, CompletionToken token, Counter_t counts[], uint8_t length, uint8_t * numCounts, uint32_t * utc);
- /********************************************************************************************************************************************
- *
- * Triggered Dose
- *
- ********************************************************************************************************************************************/
- CompletionToken EPDDLL_API BeginReadTriggeredDoses_R3(CommsHandle hComms, uint8_t ids[], uint8_t length, CompletionCallback callback);
- int32_t EPDDLL_API EndReadTriggeredDoses_R3(CommsHandle hComms, CompletionToken token, MeasValue_t doses[], uint8_t length, uint8_t * numDoses, uint32_t * utc);
- CompletionToken EPDDLL_API BeginWriteTriggeredDoses_R3(CommsHandle hComms, MeasValue_t doses[], uint8_t length, CompletionCallback callback);
- int32_t EPDDLL_API EndWriteTriggeredDoses_R3(CommsHandle hComms, CompletionToken token);
- /********************************************************************************************************************************************
- *
- * Real Time Clock
- *
- ********************************************************************************************************************************************/
- CompletionToken EPDDLL_API BeginWriteRTC_R3(CommsHandle hComms, uint32_t rtc, CompletionCallback callback = nullptr);
- int32_t EPDDLL_API EndWriteRTC_R3(CommsHandle hComms, CompletionToken token);
- /********************************************************************************************************************************************
- *
- * MK3 Specific Calibration
- *
- ********************************************************************************************************************************************/
- CompletionToken EPDDLL_API BeginReadDetectorThresholds_R3(CommsHandle hComms, uint8_t counterIds[], uint8_t length, CompletionCallback callback);
- int32_t EPDDLL_API EndReadDetectorThresholds_R3(CommsHandle hComms, CompletionToken token, DetectorThreshold_t thresholds[], uint8_t length, uint8_t * numThresholds);
- CompletionToken EPDDLL_API BeginWriteDetectorThresholds_R3(CommsHandle hComms, DetectorThreshold_t thresholds[], uint8_t length, CompletionCallback callback);
- int32_t EPDDLL_API EndWriteDetectorThresholds_R3(CommsHandle hComms, CompletionToken token);
- CompletionToken EPDDLL_API BeginReadSensitivities_R3(CommsHandle hComms, uint8_t sensIds[], uint8_t length, CompletionCallback callback);
- int32_t EPDDLL_API EndReadSensitivities_R3(CommsHandle hComms, CompletionToken token, CalSensitivity_t sensitivities[], uint8_t length, uint8_t * numSensitivities);
- CompletionToken EPDDLL_API BeginWriteSensitivities_R3(CommsHandle hComms, CalSensitivity_t sensitivities[], uint8_t length, CompletionCallback callback);
- int32_t EPDDLL_API EndWriteSensitivities_R3(CommsHandle hComms, CompletionToken token);
- CompletionToken EPDDLL_API BeginReadGains_R3(CommsHandle hComms, uint8_t sensIds[], uint8_t length, CompletionCallback callback);
- int32_t EPDDLL_API EndReadGains_R3(CommsHandle hComms, CompletionToken token, CalGain_t gains[], uint8_t length, uint8_t * numGains);
- CompletionToken EPDDLL_API BeginWriteGains_R3(CommsHandle hComms, CalGain_t gains[], uint8_t length, CompletionCallback callback);
- int32_t EPDDLL_API EndWriteGains_R3(CommsHandle hComms, CompletionToken token);
- CompletionToken EPDDLL_API BeginWriteNotCalibratedFlag_R3(CommsHandle hComms, uint8_t notCalibrated, CompletionCallback callback);
- int32_t EPDDLL_API EndWriteNotCalibratedFlag_R3(CommsHandle hComms, CompletionToken token);
- CompletionToken EPDDLL_API BeginWriteGainableFlag_R3(CommsHandle hComms, uint8_t gainable, CompletionCallback callback);
- int32_t EPDDLL_API EndWriteGainableFlag_R3(CommsHandle hComms, CompletionToken token);
- CompletionToken EPDDLL_API BeginWriteLastCalibrationProcess_R3(CommsHandle hComms, CalProcess_t process, CompletionCallback callback);
- int32_t EPDDLL_API EndWriteLastCalibrationProcess_R3(CommsHandle hComms, CompletionToken token);
- CompletionToken EPDDLL_API BeginReadLastCalibrationProcess_R3(CommsHandle hComms, CompletionCallback callback);
- int32_t EPDDLL_API EndReadLastCalibrationProcess_R3(CommsHandle hComms, CompletionToken token, CalProcess_t * process);
- CompletionToken EPDDLL_API BeginWriteCalibrationFacility_R3(CommsHandle hComms, CalFacility_t facility, CompletionCallback callback);
- int32_t EPDDLL_API EndWriteCalibrationFacility_R3(CommsHandle hComms, CompletionToken token);
- CompletionToken EPDDLL_API BeginReadCalibrationFacility_R3(CommsHandle hComms, CompletionCallback callback);
- int32_t EPDDLL_API EndReadCalibrationFacility_R3(CommsHandle hComms, CompletionToken token, CalFacility_t * facility);
- CompletionToken EPDDLL_API BeginWriteCalReference_R3(CommsHandle hComms, uint32_t calRef, CompletionCallback callback);
- int32_t EPDDLL_API EndWriteCalReference_R3(CommsHandle hComms, CompletionToken token);
- CompletionToken EPDDLL_API BeginReadCalReference_R3(CommsHandle hComms, CompletionCallback callback);
- int32_t EPDDLL_API EndReadCalReference_R3(CommsHandle hComms, CompletionToken token, uint32_t * calRef);
- CompletionToken EPDDLL_API BeginWriteCalDueDate_R3(CommsHandle hComms, uint32_t utc, CompletionCallback callback);
- int32_t EPDDLL_API EndWriteCalDueDate_R3(CommsHandle hComms, CompletionToken token);
- CompletionToken EPDDLL_API BeginReadCalDueDate_R3(CommsHandle hComms, CompletionCallback callback);
- int32_t EPDDLL_API EndReadCalDueDate_R3(CommsHandle hComms, CompletionToken token, uint32_t* utc);
- CompletionToken EPDDLL_API BeginWriteGoldenFlag_R3(CommsHandle hComms, uint8_t onState, CompletionCallback callback);
- int32_t EPDDLL_API EndWriteGoldenFlag_R3(CommsHandle hComms, CompletionToken token);
- // ***** MK3 Specific Detector Threshold Limits
- CompletionToken EPDDLL_API BeginReadDetectorThresholdLimits_R3(CommsHandle hComms, uint8_t counterIds[], uint8_t length, CompletionCallback callback);
- int32_t EPDDLL_API EndReadDetectorThresholdLimits_R3(CommsHandle hComms, CompletionToken token, DetectorThresholdLimit_t limits[], uint8_t length, uint8_t * numLimits);
- // * MK3 Specific Dead Time Factors
- CompletionToken EPDDLL_API BeginReadDeadTimeFactors_R3(CommsHandle hComms, uint8_t counterIds[], uint8_t length, CompletionCallback callback);
- int32_t EPDDLL_API EndReadDeadTimeFactors_R3(CommsHandle hComms, CompletionToken token, DeadTimeCoefficient_t thresholds[], uint8_t length, uint8_t * numFactors);
- CompletionToken EPDDLL_API BeginWriteDeadTimeFactors_R3(CommsHandle hComms, DeadTimeCoefficient_t factors[], uint8_t length, CompletionCallback callback);
- int32_t EPDDLL_API EndWriteDeadTimeFactors_R3(CommsHandle hComms, CompletionToken token);
- /********************************************************************************************************************************************
- * End of Calibration methods
- ********************************************************************************************************************************************/
- CompletionToken EPDDLL_API BeginWriteDoseSaveInterval_R3(CommsHandle hComms, uint8_t intervalMins, CompletionCallback callback);
- int32_t EPDDLL_API EndWriteDoseSaveInterval_R3(CommsHandle hComms, CompletionToken token);
- CompletionToken EPDDLL_API BeginReadDoseSaveInterval_R3(CommsHandle hComms, CompletionCallback callback);
- int32_t EPDDLL_API EndReadDoseSaveInterval_R3(CommsHandle hComms, CompletionToken token, uint8_t *intervalMins);
- CompletionToken EPDDLL_API BeginClearEEPROM_R3(CommsHandle hComms, CompletionCallback callback);
- int32_t EPDDLL_API EndClearEEPROM_R3(CommsHandle hComms, CompletionToken token);
- /********************************************************************************************************************************************
- * MK3 Specific Identities
- ********************************************************************************************************************************************/
- CompletionToken EPDDLL_API BeginReadPcbSerialNum_R3(CommsHandle hComms, CompletionCallback callback);
- int32_t EPDDLL_API EndReadPcbSerialNum_R3(CommsHandle hComms, CompletionToken token, uint32_t* pcbSerialNum);
- CompletionToken EPDDLL_API BeginWritePcbSerialNumber_R3(CommsHandle hComms, uint32_t serNum, CompletionCallback callback);
- int32_t EPDDLL_API EndWritePcbSerialNumber_R3(CommsHandle hComms, CompletionToken token);
- CompletionToken EPDDLL_API BeginReadFemSerialNum_R3(CommsHandle hComms, CompletionCallback callback);
- int32_t EPDDLL_API EndReadFemSerialNum_R3(CommsHandle hComms, CompletionToken token, uint32_t* serialNum);
- CompletionToken EPDDLL_API BeginWriteFemSerialNumber_R3(CommsHandle hComms, uint32_t serNum, CompletionCallback callback);
- int32_t EPDDLL_API EndWriteFemSerialNumber_R3(CommsHandle hComms, CompletionToken token);
- CompletionToken EPDDLL_API BeginReadEpdPartNumber_R3(CommsHandle hComms, CompletionCallback callback);
- int32_t EPDDLL_API EndReadEpdPartNumber_R3(CommsHandle hComms, CompletionToken token, PartNumber_t partNum);
- CompletionToken EPDDLL_API BeginWriteEpdPartNumber_R3(CommsHandle hComms, PartNumber_t partNum, CompletionCallback callback);
- int32_t EPDDLL_API EndWriteEpdPartNumber_R3(CommsHandle hComms, CompletionToken token);
- CompletionToken EPDDLL_API BeginReadModelName_R3(CommsHandle hComms, CompletionCallback callback);
- int32_t EPDDLL_API EndReadModelName_R3(CommsHandle hComms, CompletionToken token, ModelName_t * name);
- CompletionToken EPDDLL_API BeginWriteModelName_R3(CommsHandle hComms, ModelName_t name, CompletionCallback callback);
- int32_t EPDDLL_API EndWriteModelName_R3(CommsHandle hComms, CompletionToken token);
- CompletionToken EPDDLL_API BeginWriteCapabilities_R3(CommsHandle hComms, uint32_t capabilities, CompletionCallback callback);
- int32_t EPDDLL_API EndWriteCapabilities_R3(CommsHandle hComms, CompletionToken token);
- CompletionToken EPDDLL_API BeginWriteMarkNumber_R3(CommsHandle hComms, MarkNumber_t markNumber, CompletionCallback callback);
- int32_t EPDDLL_API EndWriteMarkNumber_R3(CommsHandle hComms, CompletionToken token);
- CompletionToken EPDDLL_API BeginReadFirmwarePartNumber_R3(CommsHandle hComms, CompletionCallback callback);
- int32_t EPDDLL_API EndReadFirmwarePartNumber_R3(CommsHandle hComms, CompletionToken token, FirmwarePartNumber_t partNum);
- CompletionToken EPDDLL_API BeginReadFpgaVersion_R3(CommsHandle hComms, CompletionCallback callback);
- int32_t EPDDLL_API EndReadFpgaVersion_R3(CommsHandle hComms, CompletionToken token, uint8_t *major, uint8_t *minor);
- CompletionToken EPDDLL_API BeginWritePcbRevision_R3(CommsHandle hComms, uint16_t rev, CompletionCallback callback);
- int32_t EPDDLL_API EndWritePcbRevision_R3(CommsHandle hComms, CompletionToken token);
- CompletionToken EPDDLL_API BeginReadPcbRevision_R3(CommsHandle hComms, CompletionCallback callback);
- int32_t EPDDLL_API EndReadPcbRevision_R3(CommsHandle hComms, CompletionToken token, uint16_t* rev);
- CompletionToken EPDDLL_API BeginReadPcbPartNumber_R3(CommsHandle hComms, CompletionCallback callback);
- int32_t EPDDLL_API EndReadPcbPartNumber_R3(CommsHandle hComms, CompletionToken token, PcbPartNumber_t partNum);
- CompletionToken EPDDLL_API BeginWritePcbPartNumber_R3(CommsHandle hComms, PcbPartNumber_t partNum, CompletionCallback callback);
- int32_t EPDDLL_API EndWritePcbPartNumber_R3(CommsHandle hComms, CompletionToken token);
- CompletionToken EPDDLL_API BeginWriteEpdRevision_R3(CommsHandle hComms, uint16_t rev, CompletionCallback callback);
- int32_t EPDDLL_API EndWriteEpdRevision_R3(CommsHandle hComms, CompletionToken token);
- CompletionToken EPDDLL_API BeginReadEpdRevision_R3(CommsHandle hComms, CompletionCallback callback);
- int32_t EPDDLL_API EndReadEpdRevision_R3(CommsHandle hComms, CompletionToken token, uint16_t* rev);
- CompletionToken EPDDLL_API BeginReadRadioFirmwareVersion_R3(CommsHandle hComms, CompletionCallback callback);
- int32_t EPDDLL_API EndReadRadioFirmwareVersion_R3(CommsHandle hComms, CompletionToken token, VersionNumber_t * version);
- /********************************************************************************************************************************************
- * MK3 Detector Test Limits
- ********************************************************************************************************************************************/
- CompletionToken EPDDLL_API BeginReadDetectorTestLimits_R3(CommsHandle hComms, uint8_t counterIds[], uint8_t length, CompletionCallback callback);
- int32_t EPDDLL_API EndReadDetectorTestLimits_R3(CommsHandle hComms, CompletionToken token, DetectorTestLimit_t limits[], uint8_t length, uint8_t * numLimits);
- CompletionToken EPDDLL_API BeginWriteDetectorTestLimits_R3(CommsHandle hComms, DetectorTestLimit_t limits[], uint8_t length, CompletionCallback callback);
- int32_t EPDDLL_API EndWriteDetectorTestLimits_R3(CommsHandle hComms, CompletionToken token);
- /********************************************************************************************************************************************
- * Pulse Mode
- ********************************************************************************************************************************************/
- CompletionToken EPDDLL_API BeginWritePulseModeEnable_R3(CommsHandle hComms, uint8_t enable, CompletionCallback callback);
- int32_t EPDDLL_API EndWritePulseModeEnable_R3(CommsHandle hComms, CompletionToken token);
- CompletionToken EPDDLL_API BeginReadPulseModeEnable_R3(CommsHandle hComms, CompletionCallback callback);
- int32_t EPDDLL_API EndReadPulseModeEnable_R3(CommsHandle hComms, CompletionToken token, uint8_t * enabled);
- CompletionToken EPDDLL_API BeginWritePulseModeIndustrial_R3(CommsHandle hComms, uint8_t industrial, CompletionCallback callback);
- int32_t EPDDLL_API EndWritePulseModeIndustrial_R3(CommsHandle hComms, CompletionToken token);
- CompletionToken EPDDLL_API BeginReadPulseModeIndustrial_R3(CommsHandle hComms, CompletionCallback callback);
- int32_t EPDDLL_API EndReadPulseModeIndustrial_R3(CommsHandle hComms, CompletionToken token, uint8_t * enabled);
- CompletionToken EPDDLL_API BeginWritePulseModeThreshold_R3(CommsHandle hComms, uint8_t counts, CompletionCallback callback);
- int32_t EPDDLL_API EndWritePulseModeThreshold_R3(CommsHandle hComms, CompletionToken token);
- CompletionToken EPDDLL_API BeginReadPulseModeThreshold_R3(CommsHandle hComms, CompletionCallback callback);
- int32_t EPDDLL_API EndReadPulseModeThreshold_R3(CommsHandle hComms, CompletionToken token, uint8_t * counts);
- CompletionToken EPDDLL_API BeginReadPulsedModeOverrangeThreshold_R3(CommsHandle hComms, CompletionCallback callback);
- int32_t EPDDLL_API EndReadPulsedModeOverrangeThreshold_R3(CommsHandle hComms, CompletionToken token, float* threshold);
- CompletionToken EPDDLL_API BeginWritePulsedModeOverrangeThreshold_R3(CommsHandle hComms, float threshold, CompletionCallback callback);
- int32_t EPDDLL_API EndWritePulsedModeOverrangeThreshold_R3(CommsHandle hComms, CompletionToken token);
- CompletionToken EPDDLL_API BeginReadChirpEnable_R3(CommsHandle hComms, CompletionCallback callback);
- int32_t EPDDLL_API EndReadChirpEnable_R3(CommsHandle hComms, CompletionToken token, uint8_t * enabled);
- CompletionToken EPDDLL_API BeginWriteChirpEnable_R3(CommsHandle hComms, uint8_t enable, CompletionCallback callback);
- int32_t EPDDLL_API EndWriteChirpEnable_R3(CommsHandle hComms, CompletionToken token);
- /********************************************************************************************************************************************
- * MK3 Specific Wearer Identity
- ********************************************************************************************************************************************/
- CompletionToken EPDDLL_API BeginReadWearerDatabaseId_R3(CommsHandle hComms, CompletionCallback callback);
- int32_t EPDDLL_API EndReadWearerDatabaseId_R3(CommsHandle hComms, CompletionToken token, DatabaseId_t * dbid);
- CompletionToken EPDDLL_API BeginWriteWearerDatabaseId_R3(CommsHandle hComms, DatabaseId_t dbid, CompletionCallback callback);
- int32_t EPDDLL_API EndWriteWearerDatabaseId_R3(CommsHandle hComms, CompletionToken token);
- CompletionToken EPDDLL_API BeginReadTaskId_R3(CommsHandle hComms, uint16_t type, CompletionCallback callback);
- int32_t EPDDLL_API EndReadTaskId_R3(CommsHandle hComms, CompletionToken token, IdString_t * taskId);
- CompletionToken EPDDLL_API BeginWriteTaskId_R3(CommsHandle hComms, IdString_t taskId, CompletionCallback callback);
- int32_t EPDDLL_API EndWriteTaskId_R3(CommsHandle hComms, CompletionToken token);
- CompletionToken EPDDLL_API BeginReadTaskDatabaseId_R3(CommsHandle hComms, CompletionCallback callback);
- int32_t EPDDLL_API EndReadTaskDatabaseId_R3(CommsHandle hComms, CompletionToken token, DatabaseId_t * dbid);
- CompletionToken EPDDLL_API BeginWriteTaskDatabaseId_R3(CommsHandle hComms, DatabaseId_t dbid, CompletionCallback callback);
- int32_t EPDDLL_API EndWriteTaskDatabaseId_R3(CommsHandle hComms, CompletionToken token);
- CompletionToken EPDDLL_API BeginClearWearerOrTaskId_R3(CommsHandle hComms, WearerAndTaskIdType_t ids[], uint8_t length, CompletionCallback callback);
- int32_t EPDDLL_API EndClearWearerOrTaskId_R3(CommsHandle hComms, CompletionToken token);
- /********************************************************************************************************************************************
- * MK3 Graphics
- ********************************************************************************************************************************************/
- CompletionToken EPDDLL_API BeginReadGraphicSize_R3(CommsHandle hComms, uint16_t graphicId, CompletionCallback callback);
- int32_t EPDDLL_API EndReadGraphicSize_R3(CommsHandle hComms, CompletionToken token, GraphicSize_t * size);
- CompletionToken EPDDLL_API BeginClearGraphic_R3(CommsHandle hComms, uint16_t graphicId, CompletionCallback callback);
- int32_t EPDDLL_API EndClearGraphic_R3(CommsHandle hComms, CompletionToken token);
- CompletionToken EPDDLL_API BeginReadGraphicData_R3(CommsHandle hComms, uint16_t graphicId, CompletionCallback callback);
- int32_t EPDDLL_API EndReadGraphicData_R3(CommsHandle hComms, CompletionToken token, GraphicBitmap_t * data);
- CompletionToken EPDDLL_API BeginWriteGraphicBitmap_R3(CommsHandle hComms, GraphicBitmap_t data, CompletionCallback callback);
- int32_t EPDDLL_API EndWriteGraphicBitmap_R3(CommsHandle hComms, CompletionToken token);
- /********************************************************************************************************************************************
- * MK3 Snapshot Summary
- ********************************************************************************************************************************************/
- CompletionToken EPDDLL_API BeginReadSnapshotSummary_R3(CommsHandle hComms, uint8_t snapshotNum, CompletionCallback callback);
- int32_t EPDDLL_API EndReadSnapshotSummary_R3(CommsHandle hComms, CompletionToken token, Mk3SnapshotSummary_t * data);
- CompletionToken EPDDLL_API BeginReadSnapshotMeasurements_R3(CommsHandle hComms, uint8_t snapshotNum, CompletionCallback callback);
- int32_t EPDDLL_API EndReadSnapshotMeasurements_R3(CommsHandle hComms, CompletionToken token, Mk3SnapshotMeasurements_t * data);
- CompletionToken EPDDLL_API BeginReadSnapshotCounters_R3(CommsHandle hComms, uint8_t snapshotNum, CompletionCallback callback);
- int32_t EPDDLL_API EndReadSnapshotCounters_R3(CommsHandle hComms, CompletionToken token, Mk3SnapshotCounters_t * data);
- CompletionToken EPDDLL_API BeginReadSnapshotAlarmThresholds_R3(CommsHandle hComms, uint8_t snapshotNum, CompletionCallback callback);
- int32_t EPDDLL_API EndReadSnapshotAlarmThresholds_R3(CommsHandle hComms, CompletionToken token, Mk3SnapshotAlarmThresholds_t * data);
- /********************************************************************************************************************************************
- * MK3 Specific Dose Profile
- ********************************************************************************************************************************************/
- CompletionToken EPDDLL_API BeginWriteDoseProfileDoseIncrement_R3(CommsHandle hComms, float doseIncrement, CompletionCallback callback);
- int32_t EPDDLL_API EndWriteDoseProfileDoseIncrement_R3(CommsHandle hComms, CompletionToken token);
- CompletionToken EPDDLL_API BeginWriteDoseProfileMeasurands_R3(CommsHandle hComms, uint8_t ids[], uint8_t length, CompletionCallback callback);
- int32_t EPDDLL_API EndWriteDoseProfileMeasurands_R3(CommsHandle hComms, CompletionToken token);
- CompletionToken EPDDLL_API BeginReadDoseProfileByIndex_R3(CommsHandle hComms, uint16_t start, uint16_t numRequested, CompletionCallback callback);
- int32_t EPDDLL_API EndReadDoseProfileByIndex_R3(CommsHandle hComms, CompletionToken token, uint16_t * startIndex, DoseProfileRecord_t profile[], uint16_t length, uint16_t *count);
- CompletionToken EPDDLL_API BeginReadDoseProfileConfiguration_R3(CommsHandle hComms, CompletionCallback callback);
- int32_t EPDDLL_API EndReadDoseProfileConfiguration_R3(CommsHandle hComms, CompletionToken token, DoseProfileConfig_t * config);
- CompletionToken EPDDLL_API BeginClearDoseProfile_R3(CommsHandle hComms, CompletionCallback callback);
- int32_t EPDDLL_API EndClearDoseProfile_R3(CommsHandle hComms, CompletionToken token);
- /********************************************************************************************************************************************
- * Other MK3 Specific Functions
- ********************************************************************************************************************************************/
- CompletionToken EPDDLL_API BeginEnableDeepSleep_R3(CommsHandle hComms, uint8_t onState, CompletionCallback callback);
- int32_t EPDDLL_API EndEnableDeepSleep_R3(CommsHandle hComms, CompletionToken token);
- CompletionToken EPDDLL_API BeginEnableCovertMode_R3(CommsHandle hComms, uint8_t onState, CompletionCallback callback);
- int32_t EPDDLL_API EndEnableCovertMode_R3(CommsHandle hComms, CompletionToken token);
- CompletionToken EPDDLL_API BeginEnableManufacturerLockout_R3(CommsHandle hComms, uint8_t onState, CompletionCallback callback);
- int32_t EPDDLL_API EndEnableManufacturerLockout_R3(CommsHandle hComms, CompletionToken token);
- CompletionToken EPDDLL_API BeginEnableProtectedSession_R3(CommsHandle hComms, uint8_t onState, CompletionCallback callback);
- int32_t EPDDLL_API EndEnableProtectedSession_R3(CommsHandle hComms, CompletionToken token);
- CompletionToken EPDDLL_API BeginEnableResponderMode_R3(CommsHandle hComms, uint8_t onState, CompletionCallback callback);
- int32_t EPDDLL_API EndEnableResponderMode_R3(CommsHandle hComms, CompletionToken token);
- CompletionToken EPDDLL_API BeginTriggerResponderMode_R3(CommsHandle hComms, CompletionCallback callback);
- int32_t EPDDLL_API EndTriggerResponderMode_R3(CommsHandle hComms, CompletionToken token);
- CompletionToken EPDDLL_API BeginReadResponderTriggerUtc_R3(CommsHandle hComms, CompletionCallback callback);
- int32_t EPDDLL_API EndReadResponderTriggerUtc_R3(CommsHandle hComms, CompletionToken token, uint32_t *utc);
- CompletionToken EPDDLL_API BeginReadRunTime_R3(CommsHandle hComms, CompletionCallback callback);
- int32_t EPDDLL_API EndReadRunTime_R3(CommsHandle hComms, CompletionToken token, uint32_t *seconds);
- CompletionToken EPDDLL_API BeginWriteStayTime_R3(CommsHandle hComms, uint16_t minutes, CompletionCallback callback);
- int32_t EPDDLL_API EndWriteStayTime_R3(CommsHandle hComms, CompletionToken token);
- CompletionToken EPDDLL_API BeginReadStayTime_R3(CommsHandle hComms, CompletionCallback callback);
- int32_t EPDDLL_API EndReadStayTime_R3(CommsHandle hComms, CompletionToken token, uint16_t* minutes);
- CompletionToken EPDDLL_API BeginWriteOffModeBatteryTestInterval_R3(CommsHandle hComms, uint16_t minutes, CompletionCallback callback);
- int32_t EPDDLL_API EndWriteOffModeBatteryTestInterval_R3(CommsHandle hComms, CompletionToken token);
- CompletionToken EPDDLL_API BeginReadOffModeBatteryTestInterval_R3(CommsHandle hComms, CompletionCallback callback);
- int32_t EPDDLL_API EndReadOffModeBatteryTestInterval_R3(CommsHandle hComms, CompletionToken token, uint16_t* minutes);
- CompletionToken EPDDLL_API BeginWriteBatteryCriticalTiming_R3(CommsHandle hComms, uint16_t minutesToCritical, uint16_t minutesToShutdown, CompletionCallback callback);
- int32_t EPDDLL_API EndWriteBatteryCriticalTiming_R3(CommsHandle hComms, CompletionToken token);
- CompletionToken EPDDLL_API BeginReadBatteryCriticalTiming_R3(CommsHandle hComms, CompletionCallback callback);
- int32_t EPDDLL_API EndReadBatteryCriticalTiming_R3(CommsHandle hComms, CompletionToken token, uint16_t *minutesToCritical, uint16_t *minutesToShutdown);
- CompletionToken EPDDLL_API BeginWriteBatteryTypeOverride_R3(CommsHandle hComms, int8_t batteryType, CompletionCallback callback);
- int32_t EPDDLL_API EndWriteBatteryTypeOverride_R3(CommsHandle hComms, CompletionToken token);
- CompletionToken EPDDLL_API BeginReadBatteryTypeOverride_R3(CommsHandle hComms, CompletionCallback callback);
- int32_t EPDDLL_API EndReadBatteryTypeOverride_R3(CommsHandle hComms, CompletionToken token, int8_t *batteryType);
- CompletionToken EPDDLL_API BeginReadBatteryTypeFitted_R3(CommsHandle hComms, CompletionCallback callback);
- int32_t EPDDLL_API EndReadBatteryTypeFitted_R3(CommsHandle hComms, CompletionToken token, int8_t *batteryType);
- /********************************************************************************************************************************************
- * MK3 Specific Access Level Functions
- ********************************************************************************************************************************************/
- CompletionToken EPDDLL_API BeginReadAccessPermissionsForLevel_R3(CommsHandle hComms, AccessLevel_t level, CompletionCallback callback);
- int32_t EPDDLL_API EndReadAccessPermissionsForLevel_R3(CommsHandle hComms, uint16_t commandIds[], uint16_t length, uint16_t *numIds, CompletionToken token);
- CompletionToken EPDDLL_API BeginWriteAccessPermissionsForLevel_R3(CommsHandle hComms, AccessLevel_t level, uint16_t commandIds[], uint16_t length, CompletionCallback callback);
- int32_t EPDDLL_API EndWriteAccessPermissionsForLevel_R3(CommsHandle hComms, CompletionToken token);
- /********************************************************************************************************************************************
- *
- * Displays
- *
- ********************************************************************************************************************************************/
- /********************************************************************************************************************************************
- *
- * Display Quick Access List
- *
- ********************************************************************************************************************************************/
- CompletionToken EPDDLL_API BeginReadQuickAccessDisplays_R3(CommsHandle hComms, uint8_t locationIndexes[], uint8_t length, CompletionCallback callback);
- int32_t EPDDLL_API EndReadQuickAccessDisplays_R3(CommsHandle hComms, CompletionToken token, QuickAccessDisplay_t displayIds[], uint8_t length, uint8_t * numDisplays);
- CompletionToken EPDDLL_API BeginWriteQuickAccessDisplays_R3(CommsHandle hComms, QuickAccessDisplay_t displayIds[], uint8_t length, CompletionCallback callback);
- int32_t EPDDLL_API EndWriteQuickAccessDisplays_R3(CommsHandle hComms, CompletionToken token);
- /********************************************************************************************************************************************
- *
- * Display Enables
- *
- ********************************************************************************************************************************************/
- CompletionToken EPDDLL_API BeginReadDisplayEnables_R3(CommsHandle hComms, uint8_t menuIds[], uint8_t length, CompletionCallback callback);
- int32_t EPDDLL_API EndReadDisplayEnables_R3(CommsHandle hComms, CompletionToken token, DisplayAttributeMap_t enables[], uint8_t length, uint8_t * numItems);
- CompletionToken EPDDLL_API BeginWriteDisplayEnables_R3(CommsHandle hComms, DisplayAttributeMap_t enables[], uint8_t length, CompletionCallback callback);
- int32_t EPDDLL_API EndWriteDisplayEnables_R3(CommsHandle hComms, CompletionToken token);
- CompletionToken EPDDLL_API BeginReadDisplayEnablePermissions_R3(CommsHandle hComms, AccessLevel_t level, CompletionCallback callback);
- int32_t EPDDLL_API EndReadDisplayEnablePermissions_R3(CommsHandle hComms, CompletionToken token, AccessLevel_t * level, uint16_t permissions[], uint8_t length, uint8_t * numMenus);
- CompletionToken EPDDLL_API BeginWriteDisplayEnablePermissions_R3(CommsHandle hComms, AccessLevel_t level, uint16_t enables[], uint8_t length, CompletionCallback callback);
- int32_t EPDDLL_API EndWriteDisplayEnablePermissions_R3(CommsHandle hComms, CompletionToken token);
- /********************************************************************************************************************************************
- *
- * Display Capabilities
- *
- ********************************************************************************************************************************************/
- CompletionToken EPDDLL_API BeginReadDisplayCapability_R3(CommsHandle hComms, DisplayCapability_t capability, CompletionCallback callback);
- int32_t EPDDLL_API EndReadDisplayCapability_R3(CommsHandle hComms, CompletionToken token, DisplayCapability_t* capabilityRequested, DisplayAttributeMap_t displayMaps[], uint8_t length, uint8_t * numItems);
- /********************************************************************************************************************************************
- *
- * Off Mode Display
- *
- ********************************************************************************************************************************************/
- CompletionToken EPDDLL_API BeginWriteOffModeDisplay_R3(CommsHandle hComms, OffModeDutyCycle dutyCycle, OffModeDisplayId_t offModeDispId, CompletionCallback callback);
- int32_t EPDDLL_API EndWriteOffModeDisplay_R3(CommsHandle hComms, CompletionToken token);
- CompletionToken EPDDLL_API BeginReadOffModeDisplay_R3(CommsHandle hComms, CompletionCallback callback);
- int32_t EPDDLL_API EndReadOffModeDisplay_R3(CommsHandle hComms, CompletionToken token, OffModeDutyCycle * dutyCycle, OffModeDisplayId_t * offModeDispId);
- /********************************************************************************************************************************************
- *
- * Backlight
- *
- ********************************************************************************************************************************************/
- CompletionToken EPDDLL_API BeginWriteBacklightEnable_R3(CommsHandle hComms, uint8_t enable, CompletionCallback callback);
- int32_t EPDDLL_API EndWriteBacklightEnable_R3(CommsHandle hComms, CompletionToken token);
- CompletionToken EPDDLL_API BeginReadBacklightEnable_R3(CommsHandle hComms, CompletionCallback callback);
- int32_t EPDDLL_API EndReadBacklightEnable_R3(CommsHandle hComms, CompletionToken token, uint8_t * enabled);
- CompletionToken EPDDLL_API BeginTriggerBacklight_R3(CommsHandle hComms, CompletionCallback callback);
- int32_t EPDDLL_API EndTriggerBacklight_R3(CommsHandle hComms, CompletionToken token);
- CompletionToken EPDDLL_API BeginWriteSwitchOnFromButton_R3(CommsHandle hComms, uint8_t enable, CompletionCallback callback);
- int32_t EPDDLL_API EndWriteSwitchOnFromButton_R3(CommsHandle hComms, CompletionToken token);
- CompletionToken EPDDLL_API BeginReadSwitchOnFromButton_R3(CommsHandle hComms, CompletionCallback callback);
- int32_t EPDDLL_API EndReadSwitchOnFromButton_R3(CommsHandle hComms, CompletionToken token, uint8_t * enabled);
- CompletionToken EPDDLL_API BeginWriteBacklightPeriod_R3(CommsHandle hComms, uint8_t seconds, CompletionCallback callback);
- int32_t EPDDLL_API EndWriteBacklightPeriod_R3(CommsHandle hComms, CompletionToken token);
- CompletionToken EPDDLL_API BeginReadBacklightPeriod_R3(CommsHandle hComms, CompletionCallback callback);
- int32_t EPDDLL_API EndReadBacklightPeriod_R3(CommsHandle hComms, CompletionToken token, uint8_t * seconds);
- CompletionToken EPDDLL_API BeginWriteBacklightBrightness_R3(CommsHandle hComms, uint8_t level, CompletionCallback callback);
- int32_t EPDDLL_API EndWriteBacklightBrightness_R3(CommsHandle hComms, CompletionToken token);
- CompletionToken EPDDLL_API BeginReadBacklightBrightness_R3(CommsHandle hComms, CompletionCallback callback);
- int32_t EPDDLL_API EndReadBacklightBrightness_R3(CommsHandle hComms, CompletionToken token, uint8_t* level);
- /********************************************************************************************************************************************
- *
- * Display Options
- *
- ********************************************************************************************************************************************/
- CompletionToken EPDDLL_API BeginWriteDisplayOptionsLock_R3(CommsHandle hComms, uint8_t value, uint8_t mask, CompletionCallback callback);
- int32_t EPDDLL_API EndWriteDisplayOptionsLock_R3(CommsHandle hComms, CompletionToken token);
- CompletionToken EPDDLL_API BeginReadDisplayOptionsLock_R3(CommsHandle hComms, CompletionCallback callback);
- int32_t EPDDLL_API EndReadDisplayOptionsLock_R3(CommsHandle hComms, CompletionToken token, uint8_t * value);
- // end of display group
- /********************************************************************************************************************************************
- *
- * Alarm Configuration
- *
- ********************************************************************************************************************************************/
- CompletionToken EPDDLL_API BeginWriteAlarmConfiguration_R3(CommsHandle hComms, AlarmConfig_t alarmConfigs[], uint16_t length, CompletionCallback callback);
- int32_t EPDDLL_API EndWriteAlarmConfiguration_R3(CommsHandle hComms, CompletionToken token);
- __declspec(deprecated("BeginReadAlarmConfiguration_R3 is now deprecated. Use BeginReadAlarmConfiguration instead"))
- CompletionToken EPDDLL_API BeginReadAlarmConfiguration_R3(CommsHandle hComms, AlarmConfigId alarmConfigIds[], uint16_t length, CompletionCallback callback);
- __declspec(deprecated("EndReadAlarmConfiguration_R3 is now deprecated. Use EndReadAlarmConfiguration instead"))
- int32_t EPDDLL_API EndReadAlarmConfiguration_R3(CommsHandle hComms, CompletionToken token, AlarmConfig_t alarmConfigs[], uint16_t length, uint16_t * numConfigs);
- CompletionToken EPDDLL_API BeginWriteAlarmConfigurationLock_R3(CommsHandle hComms, AlarmConfig_t alarmConfigLocks[], uint16_t length, CompletionCallback callback);
- int32_t EPDDLL_API EndWriteAlarmConfigurationLock_R3(CommsHandle hComms, CompletionToken token);
- CompletionToken EPDDLL_API BeginReadAlarmConfigurationLock_R3(CommsHandle hComms, CompletionCallback callback);
- int32_t EPDDLL_API EndReadAlarmConfigurationLock_R3(CommsHandle hComms, CompletionToken token, AlarmConfig_t alarmConfigLocks[], uint16_t length, uint16_t * numConfigs);
- CompletionToken EPDDLL_API BeginReadMeasurandIds_R3(CommsHandle hComms, CompletionCallback callback);
- int32_t EPDDLL_API EndReadMeasurandIds_R3(CommsHandle hComms, CompletionToken token, MeasurementId ids[], uint8_t length, uint8_t * numIds);
- /********************************************************************************************************************************************
- *
- * Telemetry
- *
- ********************************************************************************************************************************************/
- CompletionToken EPDDLL_API BeginReadTelemetryEnable_R3(CommsHandle hComms, uint8_t mode, CompletionCallback callback);
- int32_t EPDDLL_API EndReadTelemetryEnable_R3(CommsHandle hComms, uint8_t *mode, uint8_t *enabled, CompletionToken token);
- CompletionToken EPDDLL_API BeginWriteTelemetryEnable_R3(CommsHandle hComms, uint8_t mode, uint8_t enabled, CompletionCallback callback);
- int32_t EPDDLL_API EndWriteTelemetryEnable_R3(CommsHandle hComms, CompletionToken token);
- CompletionToken EPDDLL_API BeginReadTelemetryTxPower_R3(CommsHandle hComms, uint8_t mode, CompletionCallback callback);
- int32_t EPDDLL_API EndReadTelemetryTxPower_R3(CommsHandle hComms, uint8_t *mode, int8_t *dBm, CompletionToken token);
- CompletionToken EPDDLL_API BeginWriteTelemetryTxPower_R3(CommsHandle hComms, uint8_t mode, int8_t dBm, CompletionCallback callback);
- int32_t EPDDLL_API EndWriteTelemetryTxPower_R3(CommsHandle hComms, CompletionToken token);
- CompletionToken EPDDLL_API BeginReadTelemetryAdvContent_R3(CommsHandle hComms, uint8_t mode, CompletionCallback callback);
- int32_t EPDDLL_API EndReadTelemetryAdvContent_R3(CommsHandle hComms, uint8_t *mode, uint8_t *advFlags, CompletionToken token);
- CompletionToken EPDDLL_API BeginWriteTelemetryAdvContent_R3(CommsHandle hComms, uint8_t mode, uint8_t advFlags, CompletionCallback callback);
- int32_t EPDDLL_API EndWriteTelemetryAdvContent_R3(CommsHandle hComms, CompletionToken token);
- CompletionToken EPDDLL_API BeginReadTelemetryAdvConfig_R3(CommsHandle hComms, uint8_t mode, CompletionCallback callback);
- int32_t EPDDLL_API EndReadTelemetryAdvConfig_R3(CommsHandle hComms, TeleAdvConfig_t *config, CompletionToken token);
- CompletionToken EPDDLL_API BeginWriteTelemetryAdvConfig_R3(CommsHandle hComms, TeleAdvConfig_t *config, CompletionCallback callback);
- int32_t EPDDLL_API EndWriteTelemetryAdvConfig_R3(CommsHandle hComms, CompletionToken token);
- CompletionToken EPDDLL_API BeginReadTelemetryCxnConfig_R3(CommsHandle hComms, CompletionCallback callback);
- int32_t EPDDLL_API EndReadTelemetryCxnConfig_R3(CommsHandle hComms, TeleCxnConfig_t *config, CompletionToken token);
- CompletionToken EPDDLL_API BeginWriteTelemetryCxnConfig_R3(CommsHandle hComms, TeleCxnConfig_t *config, CompletionCallback callback);
- int32_t EPDDLL_API EndWriteTelemetryCxnConfig_R3(CommsHandle hComms, CompletionToken token);
- CompletionToken EPDDLL_API BeginReadTelemetryReportInterval_R3(CommsHandle hComms, CompletionCallback callback);
- int32_t EPDDLL_API EndReadTelemetryReportInterval_R3(CommsHandle hComms, uint8_t *interval, CompletionToken token);
- CompletionToken EPDDLL_API BeginWriteTelemetryReportInterval_R3(CommsHandle hComms, uint8_t interval, CompletionCallback callback);
- int32_t EPDDLL_API EndWriteTelemetryReportInterval_R3(CommsHandle hComms, CompletionToken token);
- /*Debug Registers*/
- CompletionToken EPDDLL_API BeginReadDebugRegister_R3(CommsHandle hComms, uint8_t registerId, CompletionCallback callback);
- int32_t EPDDLL_API EndReadDebugRegister_R3(CommsHandle hComms, uint8_t *registerId, uint32_t *value, CompletionToken token);
- CompletionToken EPDDLL_API BeginWriteDebugRegister_R3(CommsHandle hComms, uint8_t registerId, uint32_t value, CompletionCallback callback);
- int32_t EPDDLL_API EndWriteDebugRegister_R3(CommsHandle hComms, CompletionToken token);
- /********************************************************************************************************************************************
- *
- * MK3 Specific Zone Control
- *
- ********************************************************************************************************************************************/
- CompletionToken EPDDLL_API BeginValidateEpdOwnerKey_R3(CommsHandle hComms, uint8_t encData[], CompletionCallback callback);
- int32_t EPDDLL_API EndValidateEpdOwnerKey_R3(CommsHandle hComms, uint8_t *decData, CompletionToken token);
- /********************************************************************************************************************************************
- *
- * MK3 Firmware Update
- *
- ********************************************************************************************************************************************/
- CompletionToken EPDDLL_API BeginInitiateFirmwareUpdate_R3(CommsHandle hComms, CompletionCallback callback);
- int32_t EPDDLL_API EndInitiateFirmwareUpdate_R3(CommsHandle hComms, CompletionToken token);
-}
-#endif
\ No newline at end of file
diff --git a/TestMK3/EpdCommon.h b/TestMK3/EpdCommon.h
deleted file mode 100644
index 33f214c..0000000
--- a/TestMK3/EpdCommon.h
+++ /dev/null
@@ -1,319 +0,0 @@
-#ifndef epd_common_h
-#define epd_common_h
-#ifndef WINAPI
-#define WINAPI __stdcall
-#endif
-#ifdef READER3_EXPORTS
-#define EPDDLL_API __declspec(dllexport) WINAPI
-#else
-#define EPDDLL_API __declspec(dllimport) WINAPI
-#endif
-#include
-#include "Mk3Types.h"
-// Grouping for Doxygen comments and function descriptions
-// Documentation for method return codes
-extern "C"
-{
- const int r_OK = 0;
- const int r_UnknownError = -1;
- const int r_InvalidCommsHandle = -2;
- const int r_InvalidPortName = -3;
- const int r_PortAlreadyOpen = -4;
- const int r_PortClosed = -5;
- const int r_OperationFailed = -6;
- const int r_InvalidState = -7;
- const int r_InvalidCompletionToken = -8;
- const int r_OperationTimeout = -9;
- const int r_UnknownCmd = -100;
- const int r_InvalidParam = -101;
- const int r_InsufficientPriv = -102;
- const int r_UnsupportedOp = -103;
- const int r_FunctionFail = -104;
- const int r_InvalidOp = -105;
- const int r_IncompleteCommand = -106;
- const int r_ResponseTooBig = -107; //response exceeded single frame length
- const int r_ErrorBadStoredData = -108;
- const int r_InvalidResponseDataLength = -109;
- const int r_PayloadTooBig = -110;
- const int r_ParseFailure = -111;
- const int r_EEPROMWriteFailure = -112;
- const int r_Busy = -113;
- //These are Mk2 errors
- const int r_EEPROMReadFailure = -121;
- const int r_WearerNameMismatch = -122;
- const int r_DataTooLongForBuffer = -123;
- // Error codes generated within DLL
- const int r_ErrorUnexpectedResponse = -200;
- const int r_ErrorNotProcessed = -201; //command not processed due to previous failure
- const int r_ErrorNotConnected = -202;
- const int r_ErrorUserCancelled = -203;
- typedef void* CommsHandle;
- typedef void* CompletionToken;
- typedef void(WINAPI *DiscoveryCallback)(CommsHandle hComms, DiscoveryId const discovered[], int32_t count);
- typedef void(WINAPI *CompletionCallback)(CommsHandle hComms, CompletionToken token);
- typedef void(WINAPI *ConnectCallback)(CommsHandle hComms, DiscoveryId id);
- typedef void(WINAPI *DisconnectCallback)(CommsHandle hComms, DiscoveryId id);
- typedef void(WINAPI *RemovedCallback)(CommsHandle hComms, DiscoveryId id);
- /********************************************************************************************************************************************
- *
- * Interface Setup & Tear down
- *
- ********************************************************************************************************************************************/
- CommsHandle EPDDLL_API CreateReaderInterface();
- int32_t EPDDLL_API DestroyReaderInterface(CommsHandle hComms);
- int32_t EPDDLL_API OpenReader(CommsHandle hComms, char* portName);
- int32_t EPDDLL_API CloseReader(CommsHandle hComms);
- /********************************************************************************************************************************************
- *
- * Interface configuration
- *
- ********************************************************************************************************************************************/
- int32_t EPDDLL_API SetDllLogLevel(CommsHandle hComms, uint32_t level);
- int32_t EPDDLL_API GetDllLogLevel(CommsHandle hComms, uint32_t* level);
- int32_t EPDDLL_API SetResponseTimeout(CommsHandle hComms, uint32_t ms);
- int32_t EPDDLL_API GetResponseTimeout(CommsHandle hComms, uint32_t* ms);
- int32_t EPDDLL_API SetRetryCount(CommsHandle hComms, uint32_t retries);
- int32_t EPDDLL_API GetRetryCount(CommsHandle hComms, uint32_t* retries);
- int32_t EPDDLL_API SetMultipleDiscoveryMode(CommsHandle hComms, bool state);
- int32_t EPDDLL_API GetMultipleDiscoveryMode(CommsHandle hComms, bool *state);
- int32_t EPDDLL_API SetDiscoveryTimeslots(CommsHandle hComms, uint32_t slots);
- int32_t EPDDLL_API GetDiscoveryTimeslots(CommsHandle hComms, uint32_t *slots);
- int32_t EPDDLL_API SetDiscoveryCacheTimeout(CommsHandle hComms, uint32_t ms);
- int32_t EPDDLL_API GetDiscoveryTimeout(CommsHandle hComms, uint32_t *ms);
- /********************************************************************************************************************************************
- *
- * General Stack Operation, Discovery, Connection Management etc
- *
- ********************************************************************************************************************************************/
- int32_t EPDDLL_API Commit(CommsHandle hComms);
- int32_t EPDDLL_API CommitAndWait(CommsHandle hComms);
- int32_t EPDDLL_API Cancel(CommsHandle hComms);
- int32_t EPDDLL_API StartDiscovery(CommsHandle hComms, DiscoveryCallback callback);
- int32_t EPDDLL_API StopDiscovery(CommsHandle hComms);
- int32_t EPDDLL_API GetDiscoveredEpds(CommsHandle hComms, DiscoveryId discovered[], uint32_t size, uint32_t* count);
- int32_t EPDDLL_API Connect(CommsHandle hComms, DiscoveryId epd, bool wait = false);
- int32_t EPDDLL_API Disconnect(CommsHandle hComms);
- int32_t EPDDLL_API DisconnectAndNotify(CommsHandle hComms, uint16_t alarmConfig, uint16_t duration);
- int32_t EPDDLL_API SetConnectCallback(CommsHandle hComms, ConnectCallback callback);
- int32_t EPDDLL_API SetDisconnectCallback(CommsHandle hComms, DisconnectCallback callback);
- int32_t EPDDLL_API AwaitRemoval(CommsHandle hComms, DiscoveryId epd, bool wait=false);
- int32_t EPDDLL_API SetRemovedCallback(CommsHandle hComms, RemovedCallback callback);
- int32_t EPDDLL_API GetErrorCode();
- /********************************************************************************************************************************************
- * Real Time Clock
- ********************************************************************************************************************************************/
- CompletionToken EPDDLL_API BeginReadRTC(CommsHandle hComms, CompletionCallback callback);
- int32_t EPDDLL_API EndReadRTC(CommsHandle hComms, CompletionToken token, uint32_t* rtc);
- /********************************************************************************************************************************************
- * Common Counts Acquisition
- ********************************************************************************************************************************************/
- CompletionToken EPDDLL_API BeginReadCounts(CommsHandle hComms, uint8_t counterIds[], uint8_t length, CompletionCallback callback);
- int32_t EPDDLL_API EndReadCounts(CommsHandle hComms, CompletionToken token, Counter_t counts[], uint8_t length, uint8_t * numCounts, uint32_t * utc, uint32_t * secondsSinceBaseline);
- CompletionToken EPDDLL_API BeginReadBaselineCounts(CommsHandle hComms, CompletionCallback callback);
- int32_t EPDDLL_API EndReadBaselineCounts(CommsHandle hComms, CompletionToken token, Counter_t counts[], uint8_t length, uint32_t * timestamp, uint8_t * numCounts);
- CompletionToken EPDDLL_API BeginSetBaselineCounters(CommsHandle hComms, CompletionCallback callback);
- int32_t EPDDLL_API EndSetBaselineCounters(CommsHandle hComms, CompletionToken token);
- CompletionToken EPDDLL_API BeginStartDetectorTest(CommsHandle hComms, CompletionCallback callback);
- int32_t EPDDLL_API EndStartDetectorTest(CommsHandle hComms, CompletionToken token);
- CompletionToken EPDDLL_API BeginReadSelfTestInterval(CommsHandle hComms, CompletionCallback callback);
- int32_t EPDDLL_API EndReadSelfTestInterval(CommsHandle hComms, CompletionToken token, uint16_t * minutes);
- CompletionToken EPDDLL_API BeginWriteSelfTestInterval(CommsHandle hComms, uint16_t minutes, CompletionCallback callback);
- int32_t EPDDLL_API EndWriteSelfTestInterval(CommsHandle hComms, CompletionToken token);
- CompletionToken EPDDLL_API BeginWriteChirpSensitivity(CommsHandle hComms, float sensitivity, CompletionCallback callback);
- int32_t EPDDLL_API EndWriteChirpSensitivity(CommsHandle hComms, CompletionToken token);
- CompletionToken EPDDLL_API BeginReadChirpSensitivity(CommsHandle hComms, CompletionCallback callback);
- int32_t EPDDLL_API EndReadChirpSensitivity(CommsHandle hComms, CompletionToken token, float * sensitivity);
- /********************************************************************************************************************************************
- *
- * Common Calibration
- *
- ********************************************************************************************************************************************/
- CompletionToken EPDDLL_API BeginWriteFactoryCalDate(CommsHandle hComms, uint32_t utc, CompletionCallback callback);
- int32_t EPDDLL_API EndWriteFactoryCalDate(CommsHandle hComms, CompletionToken token);
- CompletionToken EPDDLL_API BeginReadFactoryCalDate(CommsHandle hComms, CompletionCallback callback);
- int32_t EPDDLL_API EndReadFactoryCalDate(CommsHandle hComms, CompletionToken token, uint32_t* utc);
- CompletionToken EPDDLL_API BeginWriteCalDueDate(CommsHandle hComms, uint32_t utc, CompletionCallback callback);
- int32_t EPDDLL_API EndWriteCalDueDate(CommsHandle hComms, CompletionToken token);
- CompletionToken EPDDLL_API BeginReadCalDueDate(CommsHandle hComms, CompletionCallback callback);
- int32_t EPDDLL_API EndReadCalDueDate(CommsHandle hComms, CompletionToken token, uint32_t* utc);
- CompletionToken EPDDLL_API BeginReadSensitivities(CommsHandle hComms, uint8_t sensIds[], uint8_t length, CompletionCallback callback);
- int32_t EPDDLL_API EndReadSensitivities(CommsHandle hComms, CompletionToken token, CalSensitivity_t sensitivities[], uint8_t length, uint8_t * numSensitivities);
- CompletionToken EPDDLL_API BeginReadDetectorThresholds(CommsHandle hComms, uint8_t counterIds[], uint8_t length, CompletionCallback callback);
- int32_t EPDDLL_API EndReadDetectorThresholds(CommsHandle hComms, CompletionToken token, DetectorThreshold_t thresholds[], uint8_t length, uint8_t * numThresholds);
- CompletionToken EPDDLL_API BeginReadGains(CommsHandle hComms, uint8_t sensIds[], uint8_t length, CompletionCallback callback);
- int32_t EPDDLL_API EndReadGains(CommsHandle hComms, CompletionToken token, CalGain_t gains[], uint8_t length, uint8_t * numGains);
- /********************************************************************************************************************************************
- *
- * Common Dose Measurements
- *
- ********************************************************************************************************************************************/
- CompletionToken EPDDLL_API BeginReadDoses(CommsHandle hComms, uint8_t ids[], uint8_t length, CompletionCallback callback);
- int32_t EPDDLL_API EndReadDoses(CommsHandle hComms, CompletionToken token, MeasValue_t doses[], uint8_t length, uint8_t * numDoses, uint32_t * utc);
- CompletionToken EPDDLL_API BeginReadTotalDoses(CommsHandle hComms, uint8_t ids[], uint8_t length, CompletionCallback callback);
- int32_t EPDDLL_API EndReadTotalDoses(CommsHandle hComms, CompletionToken token, MeasValue_t doses[], uint8_t length, uint8_t * numDoses, uint32_t * utc);
- CompletionToken EPDDLL_API BeginClearDose(CommsHandle hComms, CompletionCallback callback);
- int32_t EPDDLL_API EndClearDose(CommsHandle hComms, CompletionToken token);
- CompletionToken EPDDLL_API BeginClearTotalDose(CommsHandle hComms, CompletionCallback callback);
- int32_t EPDDLL_API EndClearTotalDose(CommsHandle hComms, CompletionToken token);
- CompletionToken EPDDLL_API BeginClearPeakRates(CommsHandle hComms, CompletionCallback callback);
- int32_t EPDDLL_API EndClearPeakRates(CommsHandle hComms, CompletionToken token);
- CompletionToken EPDDLL_API BeginWriteDoses(CommsHandle hComms, MeasValue_t doses[], uint8_t length, CompletionCallback callback);
- int32_t EPDDLL_API EndWriteDoses(CommsHandle hComms, CompletionToken token);
- CompletionToken EPDDLL_API BeginWriteTotalDoses(CommsHandle hComms, MeasValue_t doses[], uint8_t length, CompletionCallback callback);
- int32_t EPDDLL_API EndWriteTotalDoses(CommsHandle hComms, CompletionToken token);
- CompletionToken EPDDLL_API BeginReadRates(CommsHandle hComms, uint8_t ids[], uint8_t length, CompletionCallback callback);
- int32_t EPDDLL_API EndReadRates(CommsHandle hComms, CompletionToken token, MeasValue_t rates[], uint8_t length, uint8_t * numRates, uint32_t * utc);
- CompletionToken EPDDLL_API BeginReadPeakRates(CommsHandle hComms, uint8_t ids[], uint8_t length, CompletionCallback callback);
- int32_t EPDDLL_API EndReadPeakRates(CommsHandle hComms, CompletionToken token, PeakRate_t rates[], uint8_t length, uint8_t * numRates);
- CompletionToken EPDDLL_API BeginReadQualityData(CommsHandle hComms, CompletionCallback callback);
- int32_t EPDDLL_API EndReadQualityData(CommsHandle hComms, CompletionToken token, Mk3QualityData_t * quality);
- /********************************************************************************************************************************************
- * Common Alarm Thresholds
- ********************************************************************************************************************************************/
- CompletionToken EPDDLL_API BeginReadAlarmThresholds(CommsHandle hComms, uint8_t measurandId, uint8_t thresholdIds[], uint8_t numThresholds, CompletionCallback callback);
- int32_t EPDDLL_API EndReadAlarmThresholds(CommsHandle hComms, CompletionToken token, Mk3AlarmThresholds_t * thresholds);
- CompletionToken EPDDLL_API BeginWriteAlarmThresholds(CommsHandle hComms, uint8_t measurandId, uint8_t numThresholds, Mk3AlarmThreshold_t thresholds[], CompletionCallback callback);
- int32_t EPDDLL_API EndWriteAlarmThresholds(CommsHandle hComms, CompletionToken token);
- CompletionToken EPDDLL_API BeginReadRateOffPercentage(CommsHandle hComms, uint8_t measurandIds[], uint8_t numThresholds, CompletionCallback callback);
- int32_t EPDDLL_API EndReadRateOffPercentage(CommsHandle hComms, CompletionToken token, Mk3RatePercentage_t offThresholds[], uint8_t length, uint8_t * numThresholds);
- CompletionToken EPDDLL_API BeginWriteRateOffPercentage(CommsHandle hComms, Mk3RatePercentage_t thresholds[], uint8_t length, CompletionCallback callback);
- int32_t EPDDLL_API EndWriteRateOffPercentage(CommsHandle hComms, CompletionToken token);
- /********************************************************************************************************************************************
- * Common General Management
- ********************************************************************************************************************************************/
- CompletionToken EPDDLL_API BeginEpdOnOff(CommsHandle hComms, uint8_t onState, CompletionCallback callback);
- int32_t EPDDLL_API EndEpdOnOff(CommsHandle hComms, CompletionToken token);
- /********************************************************************************************************************************************
- * Common EPD Status
- ********************************************************************************************************************************************/
- CompletionToken EPDDLL_API BeginReadStatus(CommsHandle hComms, CompletionCallback callback);
- int32_t EPDDLL_API EndReadStatus(CommsHandle hComms, CompletionToken token, StatusData_t * status);
- CompletionToken EPDDLL_API BeginClearFaultStatus(CommsHandle hComms, CompletionCallback callback);
- int32_t EPDDLL_API EndClearFaultStatus(CommsHandle hComms, CompletionToken token);
- CompletionToken EPDDLL_API BeginClearLatchedAlarms(CommsHandle hComms, CompletionCallback callback);
- int32_t EPDDLL_API EndClearLatchedAlarms(CommsHandle hComms, CompletionToken token);
- CompletionToken EPDDLL_API BeginClearAllStatus(CommsHandle hComms, CompletionCallback callback);
- int32_t EPDDLL_API EndClearAllStatus(CommsHandle hComms, CompletionToken token);
- /********************************************************************************************************************************************
- * Common Wearer Identity
- ********************************************************************************************************************************************/
- CompletionToken EPDDLL_API BeginReadWearerId(CommsHandle hComms, uint16_t type, CompletionCallback callback);
- int32_t EPDDLL_API EndReadWearerId(CommsHandle hComms, CompletionToken token, IdString_t * wearerId);
- CompletionToken EPDDLL_API BeginWriteWearerId(CommsHandle hComms, IdString_t wearerId, CompletionCallback callback);
- int32_t EPDDLL_API EndWriteWearerId(CommsHandle hComms, CompletionToken token);
- /********************************************************************************************************************************************
- * Common Issue & Return
- ********************************************************************************************************************************************/
- CompletionToken EPDDLL_API BeginIssueEPD(CommsHandle hComms, CompletionCallback callback);
- int32_t EPDDLL_API EndIssueEPD(CommsHandle hComms, CompletionToken token);
- CompletionToken EPDDLL_API BeginDeissueEPD(CommsHandle hComms, CompletionCallback callback);
- int32_t EPDDLL_API EndDeissueEPD(CommsHandle hComms, CompletionToken token);
- /********************************************************************************************************************************************
- * Common Identities
- ********************************************************************************************************************************************/
- CompletionToken EPDDLL_API BeginReadEpdIdentities(CommsHandle hComms, CompletionCallback callback);
- int32_t EPDDLL_API EndReadEpdIdentities(CommsHandle hComms, CompletionToken token, uint32_t * epdId, EpdTypes * epdType, uint32_t * capabilities,
- MarkNumber_t * markNumber, VersionNumber_t * firmwareVersion, char* vcsRevBuf, uint32_t buflen);
- CompletionToken EPDDLL_API BeginWriteEpdSerialNumber(CommsHandle hComms, uint32_t epdId, CompletionCallback callback);
- int32_t EPDDLL_API EndWriteEpdSerialNumber(CommsHandle hComms, CompletionToken token);
- CompletionToken EPDDLL_API BeginReadEpdSerialNum(CommsHandle hComms, CompletionCallback callback);
- int32_t EPDDLL_API EndReadEpdSerialNum(CommsHandle hComms, CompletionToken token, uint32_t* epdSerialNum);
- CompletionToken EPDDLL_API BeginReadCapabilities(CommsHandle hComms, CompletionCallback callback);
- int32_t EPDDLL_API EndReadCapabilities(CommsHandle hComms, CompletionToken token, uint32_t* capabilities);
- CompletionToken EPDDLL_API BeginReadMarkNumber(CommsHandle hComms, CompletionCallback callback);
- int32_t EPDDLL_API EndReadMarkNumber(CommsHandle hComms, CompletionToken token, MarkNumber_t * markNumber);
- CompletionToken EPDDLL_API BeginReadEpdType(CommsHandle hComms, CompletionCallback callback);
- int32_t EPDDLL_API EndReadEpdType(CommsHandle hComms, CompletionToken token, EpdTypes * epdType);
- CompletionToken EPDDLL_API BeginReadFirmwareVersion(CommsHandle hComms, CompletionCallback callback);
- int32_t EPDDLL_API EndReadFirmwareVersion(CommsHandle hComms, CompletionToken token, VersionNumber_t * version);
- /********************************************************************************************************************************************
- * Common General Configuration
- ********************************************************************************************************************************************/
- CompletionToken EPDDLL_API BeginWriteDoseWritableFlag(CommsHandle hComms, uint8_t enabled, CompletionCallback callback);
- int32_t EPDDLL_API EndWriteDoseWritableFlag(CommsHandle hComms, CompletionToken token);
- CompletionToken EPDDLL_API BeginWriteClearDoseOnSwitchOn(CommsHandle hComms, uint8_t enable, CompletionCallback callback);
- int32_t EPDDLL_API EndWriteClearDoseOnSwitchOn(CommsHandle hComms, CompletionToken token);
- CompletionToken EPDDLL_API BeginWriteReturnForReadTime(CommsHandle hComms, uint32_t utc, CompletionCallback callback);
- int32_t EPDDLL_API EndWriteReturnForReadTime(CommsHandle hComms, CompletionToken token);
- CompletionToken EPDDLL_API BeginReadReturnForReadTime(CommsHandle hComms, CompletionCallback callback);
- int32_t EPDDLL_API EndReadReturnForReadTime(CommsHandle hComms, CompletionToken token, uint32_t* utc);
- CompletionToken EPDDLL_API BeginReadAlarmConfiguration(CommsHandle hComms, AlarmConfigId alarmConfigIds[], uint16_t length, CompletionCallback callback);
- int32_t EPDDLL_API EndReadAlarmConfiguration(CommsHandle hComms, CompletionToken token, AlarmConfig_t alarmConfigs[], uint16_t length, uint16_t * numConfigs);
- /********************************************************************************************************************************************
- * Common Dose Profile
- ********************************************************************************************************************************************/
- CompletionToken EPDDLL_API BeginWriteDoseProfileInterval(CommsHandle hComms, uint16_t interval, CompletionCallback callback);
- int32_t EPDDLL_API EndWriteDoseProfileInterval(CommsHandle hComms, CompletionToken token);
- CompletionToken EPDDLL_API BeginReadDoseProfileInterval(CommsHandle hComms, CompletionCallback callback);
- int32_t EPDDLL_API EndReadDoseProfileInterval(CommsHandle hComms, CompletionToken token, uint16_t * interval);
- CompletionToken EPDDLL_API BeginReadDoseProfileByTime(CommsHandle hComms, uint32_t startTime, uint32_t endTime, CompletionCallback callback);
- int32_t EPDDLL_API EndReadDoseProfileByTime(CommsHandle hComms, CompletionToken token, DoseProfileRecord_t * profile[], uint16_t *count);
- void EPDDLL_API CleanUpReadDoseProfile(DoseProfileRecord_t * profile);
- /********************************************************************************************************************************************
- * Common Event Log
- ********************************************************************************************************************************************/
- CompletionToken EPDDLL_API BeginReadEventsByIndex(CommsHandle hComms, uint8_t start, uint8_t requested, CompletionCallback callback = nullptr);
- int32_t EPDDLL_API EndReadEventsByIndex(CommsHandle hComms, CompletionToken token, EventLog * logs[], uint8_t *count);
- void EPDDLL_API CleanUpReadEventLog(EventLog * logs);
- /********************************************************************************************************************************************
- * Common Scratchpad
- ********************************************************************************************************************************************/
- CompletionToken EPDDLL_API BeginReadScratchPad(CommsHandle hComms, uint16_t startAddress, uint16_t length, CompletionCallback callback);
- int32_t EPDDLL_API EndReadScratchpad(CommsHandle hComms, CompletionToken token, uint16_t *address, uint8_t buffer[], uint16_t length, uint16_t* read);
- CompletionToken EPDDLL_API BeginWriteScratchPad(CommsHandle hComms, uint16_t startAddress, uint8_t buffer[], uint16_t length, CompletionCallback callback);
- int32_t EPDDLL_API EndWriteScratchpad(CommsHandle hComms, CompletionToken token);
- CompletionToken EPDDLL_API BeginReadScratchpadSize(CommsHandle hComms, CompletionCallback callback);
- int32_t EPDDLL_API EndReadScratchpadSize(CommsHandle hComms, CompletionToken token, uint16_t* size);
- CompletionToken EPDDLL_API BeginClearScratchPad(CommsHandle hComms, uint8_t fillChar, CompletionCallback callback);
- int32_t EPDDLL_API EndClearScratchpad(CommsHandle hComms, CompletionToken token);
- /********************************************************************************************************************************************
- * Common EEProm
- ********************************************************************************************************************************************/
- CompletionToken EPDDLL_API BeginReadEEProm(CommsHandle hComms, uint16_t startAddress, uint8_t length, CompletionCallback callback);
- int32_t EPDDLL_API EndReadEEProm(CommsHandle hComms, CompletionToken token, uint16_t *address, uint8_t buffer[], uint8_t length, uint8_t* read);
- CompletionToken EPDDLL_API BeginWriteEEProm(CommsHandle hComms, uint16_t startAddress, uint8_t buffer[], uint8_t length, CompletionCallback callback);
- int32_t EPDDLL_API EndWriteEEProm(CommsHandle hComms, CompletionToken token);
- /********************************************************************************************************************************************
- * Common Access level
- ********************************************************************************************************************************************/
- CompletionToken EPDDLL_API BeginWriteAccessLevel(CommsHandle hComms, AccessLevel_t level, EncryptionKey key, uint8_t length, CompletionCallback callback);
- int32_t EPDDLL_API EndWriteAccessLevel(CommsHandle hComms, CompletionToken token);
- CompletionToken EPDDLL_API BeginReadCurrentAccessLevel(CommsHandle hComms, CompletionCallback callback);
- int32_t EPDDLL_API EndReadCurrentAccessLevel(CommsHandle hComms, CompletionToken token, AccessLevel_t * level);
- CompletionToken EPDDLL_API BeginWriteAccessKey(CommsHandle hComms, AccessLevel_t level, EncryptionKey key, int8_t length, CompletionCallback callback);
- int32_t EPDDLL_API EndWriteAccessKey(CommsHandle hComms, CompletionToken token);
- /********************************************************************************************************************************************
- * Common Battery Management
- ********************************************************************************************************************************************/
- CompletionToken EPDDLL_API BeginWriteBatteryTestInterval(CommsHandle hComms, uint16_t minutes, CompletionCallback callback);
- int32_t EPDDLL_API EndWriteBatteryTestInterval(CommsHandle hComms, CompletionToken token);
- CompletionToken EPDDLL_API BeginReadBatteryTestInterval(CommsHandle hComms, CompletionCallback callback);
- int32_t EPDDLL_API EndReadBatteryTestInterval(CommsHandle hComms, CompletionToken token, uint16_t* minutes);
- CompletionToken EPDDLL_API BeginWriteBatteryLowThreshold(CommsHandle hComms, int8_t batteryType, uint16_t mV, CompletionCallback callback);
- int32_t EPDDLL_API EndWriteBatteryLowThreshold(CommsHandle hComms, CompletionToken token);
- CompletionToken EPDDLL_API BeginReadBatteryLowThreshold(CommsHandle hComms, int8_t batteryType, CompletionCallback callback);
- int32_t EPDDLL_API EndReadBatteryLowThreshold(CommsHandle hComms, CompletionToken token, int8_t* batteryType, uint16_t* mV );
- CompletionToken EPDDLL_API BeginReadVoltages(CommsHandle hComms, CompletionCallback callback);
- int32_t EPDDLL_API EndReadVoltages(CommsHandle hComms, CompletionToken token, uint16_t* vbat0, uint16_t* vbat1, uint16_t* vcpu);
- /********************************************************************************************************************************************
- * Common User Inteface
- ********************************************************************************************************************************************/
- CompletionToken EPDDLL_API BeginWriteDisplayOptions(CommsHandle hComms, uint8_t value, uint8_t mask, CompletionCallback callback);
- int32_t EPDDLL_API EndWriteDisplayOptions(CommsHandle hComms, CompletionToken token);
- CompletionToken EPDDLL_API BeginReadDisplayOptions(CommsHandle hComms, CompletionCallback callback);
- int32_t EPDDLL_API EndReadDisplayOptions(CommsHandle hComms, CompletionToken token, uint8_t * value);
- CompletionToken EPDDLL_API BeginWriteDisplayTimeout(CommsHandle hComms, uint8_t seconds, CompletionCallback callback);
- int32_t EPDDLL_API EndWriteDisplayTimeout(CommsHandle hComms, CompletionToken token);
- CompletionToken EPDDLL_API BeginReadDisplayTimeout(CommsHandle hComms, CompletionCallback callback);
- int32_t EPDDLL_API EndReadDisplayTimeout(CommsHandle hComms, CompletionToken token, uint8_t* seconds);
- /********************************************************************************************************************************************
- * Common Zone Control
- ********************************************************************************************************************************************/
- CompletionToken EPDDLL_API BeginWriteZoneControlMap(CommsHandle hComms, uint8_t map[], uint8_t mask[], CompletionCallback callback);
- int32_t EPDDLL_API EndWriteZoneControlMap(CommsHandle hComms, CompletionToken token);
- CompletionToken EPDDLL_API BeginReadZoneControlMap(CommsHandle hComms, CompletionCallback callback);
- int32_t EPDDLL_API EndReadZoneControlMap(CommsHandle hComms, CompletionToken token, uint8_t map[]);
- CompletionToken EPDDLL_API BeginReadZoneAccessPermitted(CommsHandle hComms, uint8_t zone, CompletionCallback callback);
- int32_t EPDDLL_API EndReadZoneAccessPermitted(CommsHandle hComms, CompletionToken token, bool *permitted);
-}
-#endif
\ No newline at end of file
diff --git a/TestMK3/Mk3Types.h b/TestMK3/Mk3Types.h
deleted file mode 100644
index b673d9d..0000000
--- a/TestMK3/Mk3Types.h
+++ /dev/null
@@ -1,582 +0,0 @@
-#ifndef Mk3Types_h
-#define Mk3Types_h
-#include
-#include "CommonEpdTypes.h"
-#include
-#define MAX_COUNTERS 6
-// Mk3 Measurands
-#define MK3_MEAS_HP10 0
-#define MK3_MEAS_HP07 1
-#define MK3_MEAS_HP10G 2
-#define MK3_MEAS_HP10N 3
-enum class CounterType : uint16_t
-{
- Counter_Hg1 = 0, // MK2 HG
- Counter_Hg2 = 1,
- Counter_Sg1 = 2, // Mk2 SG
- Counter_Sg2 = 3, // Mk2 BC
- Counter_Sg3 = 4,
- Counter_Fb1 = 5, // Mk2 FB
- Counter_Fb2 = 6,
- Counter_An1 = 7,
- Counter_Fn2 = 8
-};
-#define MAX_DET_THRESHOLDS MAX_COUNTERS
-#pragma pack (push)
-#pragma pack (1)
-typedef struct
-{
- uint16_t eventId;
- uint16_t info;
- uint32_t timestamp;
-}EventLog;
-typedef struct
-{
- uint16_t type;
- uint32_t value;
-}Counter_t;
-typedef struct
-{
- uint16_t type;
- uint16_t value;
-}DetectorThreshold_t;
-typedef struct
-{
- CounterType id;
- uint16_t scaledDeadTime;
- uint16_t scaledCoefficient;
-}DeadTimeCoefficient_t;
-typedef struct
-{
- CounterType id;
- uint8_t value;
-}DetectorTestLimit_t;
-typedef struct
-{
- uint16_t type;
- uint16_t va;
- uint16_t vb;
-}DetectorThresholdLimit_t;
-enum class OffModeDutyCycle :uint8_t
-{
- Off = 0,
- On = 1,
- Pct50 = 2,
- Pct33 = 3,
- Pct25 = 4,
- Pct10 = 5,
- NoChange = 255
-};
-enum class SensitivityId
-{
- //Hp10 Gamma contributors
- Hg1Sens10G = 0, // Mk2 HGSens10 (K1)
- Hg2Sens10G = 1,
- Sg1Sens10G = 2, // Mk2 SGSens10 (K2)
- Sg2Sens10G = 3,
- Sg3Sens10G = 4,
- //Hp10 Neutron contributors
- //Hp07 Gamma contributors
- Hg1Sens07G = 5, // Mk2 HGSens07 (K3)
- Hg2Sens07G = 6,
- Sg1Sens07G = 7, // Mk2 SGSens07 (K4)
- Sg2Sens07G = 8,
- Sg3Sens07G = 9,
- //Hp07 Beta contributors
- Fb1Sens07B = 10, // Mk2 FBSens07 (K5)
- Fb2Sens07B = 11,
- Sg2Sens07B = 12, // Mk2 BCSens07 (K6)
- Sg3Sens07B = 13,
- MaxSensitivity
-};
-#define MAX_SENSITIVITIES ((uint16_t)SensitivityId::MaxSensitivity)
-#define LAST_SENSITIVITY (((uint16_t)SensitivityId::MaxSensitivity) - 1)
-enum class MeasurementId : uint16_t
-{
- Meas_Hp10,
- Meas_Hp07,
- Meas_Hp10G,
- Meas_Hp10N
-};
-#define MAX_MEASUREMENTS 4
-enum class ThresholdId
-{
- Thres_DoseAlarm = 0,
- Thres_DoseWarning = 1,
- Thres_RateAlarm = 2,
- Thres_RateWarning = 3
-};
-#define MAX_ALM_THRESHOLDS 4
-enum class WearerIdType
-{
- WearerId_Name,
- WearerId_Primary,
- WearerId_Id2,
- WearerId_Id3
-};
-#define MAX_WEARER_ID_TYPES 4
-enum class TaskIdType
-{
- Task_Name,
- Task_Primary
-};
-#define MAX_TASK_ID_TYPES 2
-enum class WearerAndTaskIdType_t : uint16_t
-{
- WearerId_Name,
- WearerId_Primary,
- WearerId_Id2,
- WearerId_Id3,
- TaskName,
- TaskID,
- WearerDBID,
- TaskDBID
-};
-#define MAX_WEARER_TASK_ID_TYPES 8
-typedef struct
-{
- uint8_t RecordType;
- uint8_t Measurand;
- int32_t TimeStamp;
- uint32_t Value;
-}DoseProfileRecord_t;
-typedef struct
-{
- float DoseIncrement;
- uint16_t Interval;
- uint16_t NumberOfMeasurands;
- MeasurementId Enables[MAX_MEASUREMENTS];
-}DoseProfileConfig_t;
-typedef struct
-{
- uint16_t id;
- float value;
-}CalSensitivity_t;
-typedef struct
-{
- uint16_t id;
- float value;
-}CalGain_t;
-typedef struct
-{
- uint16_t id;
- float value;
-}MeasValue_t;
-typedef struct
-{
- uint16_t id;
- float value;
- uint32_t timestamp;
-}PeakRate_t;
-typedef struct
-{
- uint32_t Utc;
- uint16_t NumberOfMeasurands;
- MeasValue_t Measurements[MAX_MEASUREMENTS];
-}MeasurandDoseOrRate_t;
-typedef struct
-{
- uint8_t Major;
- uint8_t Minor;
- uint8_t Patch;
- uint16_t Build;
-}VersionNumber_t;
-typedef struct MarkNumberTag
-{
- uint8_t Major;
- uint8_t Minor;
- uint8_t Revision;
- uint8_t Build;
-} MarkNumber_t;
-#define PART_NUM_LENGTH 10
-typedef uint8_t PartNumber_t[PART_NUM_LENGTH];
-#define PCB_PART_NUM_LENGTH 14
-typedef uint8_t PcbPartNumber_t[PCB_PART_NUM_LENGTH];
-#define FIRMWARE_PART_NUM_LENGTH 16
-typedef uint8_t FirmwarePartNumber_t[FIRMWARE_PART_NUM_LENGTH];
-#define MODEL_NAME_LENGTH 32
-typedef struct ModelNameTag
-{
- uint8_t Name[MODEL_NAME_LENGTH];
-} ModelName_t;
-#define CAL_PROCESS_LENGTH 12
-typedef struct CalProcessTag
-{
- uint8_t Process[CAL_PROCESS_LENGTH];
-} CalProcess_t;
-#define CAL_FACILITY_LENGTH 8
-typedef struct CalFacilityTag
-{
- uint8_t Name[CAL_FACILITY_LENGTH];
-} CalFacility_t;
-#define MAX_ID_STRING_LENGTH 64
-typedef struct IdStringTag
-{
- uint16_t IdType;
- uint16_t Length;
- uint8_t Utf8String[MAX_ID_STRING_LENGTH];
-} IdString_t;
-#define DB_ID_LENGTH 16
-typedef struct DbIdTag
-{
- uint8_t Id[DB_ID_LENGTH];
-} DatabaseId_t;
-#define MAX_GRAPHIC_WIDTH 112
-#define MAX_GRAPHIC_HEIGHT 24
-#define MAX_GRAPHIC_PIXELS (MAX_GRAPHIC_WIDTH * MAX_GRAPHIC_HEIGHT)
-#define MAX_GRAPHIC_ID 1
-#define MAX_GRAPHIC_BYTES ((MAX_GRAPHIC_PIXELS)/8)
-typedef struct GraphicSizeTag
-{
- uint16_t Id;
- uint16_t Height;
- uint16_t Width;
-} GraphicSize_t;
-typedef struct
-{
- GraphicSize_t Meta;
- uint16_t DataLength;
- uint8_t Data[MAX_GRAPHIC_BYTES];
-} GraphicBitmap_t;
-
-enum class OpStatusFlags : uint32_t {
- EpdOn = 0x0001,
- EpdIssued = 0x0002,
- DetectorTestRequested = 0x0004,
- DetectorTestPassed = 0x0008,
- TelemetryOn = 0x0010,
- TelemetryConnected = 0x0020,
- CalibrationDue = 0x0040,
- CalibrationInProgress = 0x0080,
- GainAdjustable = 0x0100,
- GainAdjusted = 0x0200,
- ReducedRateOverrange = 0x0400,
- DoseWriteEnabled = 0x0800,
- ClearOnOnEnabled = 0x1000,
- Golden = 0x2000,
- ProtectedSession = 0x4000,
- //NotYetDefined = 0x8000,
- ResponderEnabled = 0x00010000,
- ResponderTriggered = 0x00020000,
- AlkalineFitted = 0x00040000,
- DeepSleep = 0x00080000,
- CovertMode = 0x00100000,
- PulsedModeEnabled = 0x00200000,
- PulsedModeActive = 0x00400000,
- PulsedModeIndustrial=0x00800000,
-};
-enum class FaultStatusFlags : uint32_t {
- NotInitialized = 0x0001,
- BadThreshold = 0x0002,
- BadSensitivities = 0x0004,
- DetectorTestFail = 0x0008,
- NotCalibrated = 0x0010,
- EepromFailure = 0x0020,
- ErrorLogged = 0x0040,
- EpdFaulty = 0x0080,
- TimeInvalid = 0x0100,
- EarlyCommsTermination = 0x0200,
- SounderFailure = 0x0400,
- ResetWhileIssued = 0x0800,
-};
-enum class AlarmStatusFlags : uint32_t {
- DoseWarning = 0x00000001,
- DoseAlarm = 0x00000002,
- DoseOverrange = 0x00000004,
- TotalDoseOverrange = 0x00000008,
- RateWarning = 0x00000010,
- RateAlarm = 0x00000020,
- RateOverrange = 0x00000040,
- PulseOverrange = 0x00000080,
- LatchedRateWarning = 0x00000100,
- LatchedRateAlarm = 0x00000200,
- LatchedRateOverrange = 0x00000400,
- LatchedPulseOverrange = 0x00000800,
- StayTimeExceeded = 0x00010000,
- ReturnForRead = 0x00020000,
- AbuseAlarm = 0x00040000,
- LowBattery = 0x00080000,
- TelemetryAlert = 0x00100000
-};
-enum class DoseAlarmFlags : uint32_t {
- DoseWarning = 0x0001,
- DoseAlarm = 0x0002,
- DoseOverrange = 0x0004,
- TotalDoseOverrange = 0x0008,
- RateWarning = 0x0010,
- RateAlarm = 0x0020,
- RateOverrange = 0x0040,
- LatchedRateWarning = 0x0100,
- LatchedRateAlarm = 0x0200,
- LatchedRateOverrange = 0x0400
-};
-enum class Mk2StatusFlags : uint32_t {
- ADSIssued = 0x0001,
- OneSecCountsProcessing = 0x0002,
- RadioBatteryLow = 0x0004
-};
-typedef struct
-{
- uint16_t Id;
- DoseAlarmFlags Status;
-}Mk3DoseStatus_t;
-typedef struct
-{
- OpStatusFlags OperatingStatus;
- FaultStatusFlags FaultStatus;
- AlarmStatusFlags AlarmStatus;
- uint16_t IssueCount;
- uint16_t FaultCode;
- uint32_t OtherBits;
- uint16_t NumberDoseAlarmWords;
- Mk3DoseStatus_t DoseAlarms[MAX_MEASUREMENTS];
-}StatusData_t;
-enum class QualityFlags
-{
- DoseOverrange = 0x0001,
- RateOverrange = 0x0002,
- AbuseWarning = 0x0004,
- CrcFailure = 0x0008,
- CounterOverrange = 0x0010,
- DetectorFail = 0x0040
-};
-typedef struct
-{
- uint16_t PowerCycles;
- uint16_t Knocks;
- QualityFlags Flags;
-}Mk3QualityData_t;
-typedef struct
-{
- uint16_t Id;
- float Value;
-}Mk3AlarmThreshold_t;
-typedef struct
-{
- uint16_t MeasId;
- uint16_t NumberThresholds;
- Mk3AlarmThreshold_t Thresholds[MAX_ALM_THRESHOLDS];
-}Mk3AlarmThresholds_t;
-typedef struct
-{
- uint16_t MeasId;
- std::vector Thresholds;
-}Mk3AlarmThresholdsRequest_t;
-typedef struct
-{
- uint16_t MeasId;
- uint16_t Value;
-}Mk3RatePercentage_t;
-typedef struct
-{
- uint16_t MeasId;
- uint16_t AlarmFlags;
- float Dose;
-}Mk3SnapshotDoseAndFlags_t;
-typedef struct
-{
- uint16_t SnapshotNumber;
- uint16_t IssueCount;
- uint32_t StartTime;
- uint32_t EndTime;
- DatabaseId_t WearerDbId;
- DatabaseId_t TaskDbId;
- uint32_t OperatingStatus;
- uint32_t FaultStatus;
- uint32_t AlarmStatus;
- uint16_t NumberOfMeasurands;
- Mk3SnapshotDoseAndFlags_t DoseAndFlags[MAX_MEASUREMENTS];
-}Mk3SnapshotSummary_t;
-typedef struct
-{
- uint16_t MeasId;
- uint16_t AlarmFlags;
- float Dose;
- float TriggeredDose;
- float TotalDose;
- float PeakRate;
- uint32_t PeakRateTime;
-}Mk3SnapshotMeasurement_t;
-typedef struct
-{
- uint16_t SnapshotNumber;
- uint16_t NumberOfMeasurands;
- Mk3SnapshotMeasurement_t DoseAndFlags[MAX_MEASUREMENTS];
-}Mk3SnapshotMeasurements_t;
-typedef struct
-{
- uint16_t CounterId;
- uint32_t StartCount;
- uint32_t EndCount;
-}Mk3SnapshotCount_t;
-typedef struct
-{
- uint16_t SnapshotNumber;
- uint16_t NumberOfCounters;
- uint32_t StartTime;
- uint32_t EndTime;
- Mk3SnapshotCount_t Counters[MAX_COUNTERS];
-}Mk3SnapshotCounters_t;
-typedef struct
-{
- float DoseWarning;
- float DoseAlarm;
- float RateWarning;
- float RateAlarm;
- uint16_t MeasId;
-}Mk3SnapshotAlarmThreshold_t;
-typedef struct
-{
- uint16_t SnapshotNumber;
- uint16_t NumberOfMeasurands;
- Mk3SnapshotAlarmThreshold_t Thresholds[MAX_MEASUREMENTS];
-}Mk3SnapshotAlarmThresholds_t;
-// ****************
-// Access Level
-//
-#define COMMAND_ID_MAP_SIZE 64
-#define ENCRYPT_IV_SIZE 16
-#define ENCRYPT_KEY_SIZE 32
-#define ENCRYPT_CIPHER_SIZE 16
-typedef uint8_t EncryptionKey[ENCRYPT_KEY_SIZE];
-typedef uint8_t EncryptionText[ENCRYPT_CIPHER_SIZE];
-typedef uint8_t PlainText[ENCRYPT_CIPHER_SIZE];
-enum class AccessLevel_t : uint8_t
-{
- Open = 0,
- Admin = 1,
- Regulator = 2,
- Manufacturer = 3
-};
-typedef struct SetAccessLevelRqTag
-{
- bool Granted;
- EncryptionText Code;
- EncryptionKey Key;
- AccessLevel_t Level;
-} SetAccessLevelRq_t;
-typedef struct SetAccessPasswordRqTag
-{
- EncryptionKey Key;
- AccessLevel_t Level;
-} SetAccessPasswordRq_t;
-typedef struct CommandIdPermissionsTag
-{
- AccessLevel_t Level;
- uint8_t CommandIdPermissions[COMMAND_ID_MAP_SIZE];
-}CommandIdPermissions_t;
-// ****************
-// UI Config
-//
-#define MAX_QUICK_ACCESS_DISPLAYS 6 /*5 + default display*/
-typedef struct QuickAccessDisplayTag
-{
- uint8_t Position;
- uint8_t DisplayId;
-}QuickAccessDisplay_t;
-typedef struct DisplayEnablesTag
-{
- uint8_t MenuId;
- uint16_t EnableMask;
- uint16_t Enables;
-}DisplayAttributeMap_t;
-#define MAX_MENUS 15
-typedef struct DisplayEnablePrivilegesTag
-{
- AccessLevel_t Level;
- uint8_t NumMenus;
- uint16_t Privileges[MAX_MENUS];
-} DisplayEnablePrivileges_t;
-enum class DisplayCapability_t :uint8_t
-{
- DefaultDisplay = 1,
- QuickDisplay = 2,
-};
-enum class OffModeDisplayId_t : uint8_t
-{
- Undefined = 0,
- OffText = 1,
- CalDueDate = 2,
- UserBitmap = 3,
- Manufacturer_PartnerLogo = 4,
- CustomerLogo = 5,
- ModelVersion=6
-};
-enum class AlarmIds : uint16_t
-{
- DoseAlarm = 0,
- DoseWarning = 1,
- RateWarning = 2,
- RateAlarm = 3,
- DoseOrRateOverRange = 4,
- FailureAlarm = 5,
- AbuseAlarm = 6,
- BatteryLow = 7,
- ReturnForRead = 8
-};
-#define MAX_OTHER_ALARMS 5
-typedef struct AlarmConfigTag
-{
- AlarmIds AlarmId;
- uint16_t MeasurandId;
- uint16_t AlarmConfigMask;
- uint16_t AlarmConfigBits;
- uint16_t Duration;
-}AlarmConfig_t;
-typedef struct AlarmConfigIdTag
-{
- AlarmIds AlarmId;
- uint16_t MeasurandId;
-}AlarmConfigId;
-// ****************
-// Telemetry
-//
-typedef struct TeleAdvConfigTag
-{
- uint8_t operatingMode;
- uint16_t undirectedInterval;
- uint16_t directedInterval;
- uint16_t directedTimeout;
-}TeleAdvConfig_t;
-typedef struct TeleCxnConfigTag
-{
- uint16_t minInterval;
- uint16_t maxInterval;
- uint16_t slaveLatency;
- uint16_t supervisoryTimeout;
-}TeleCxnConfig_t;
-// ****************
-// Debug Registers
-//
-typedef struct DebugRegisterValueTag
-{
- uint8_t registerId;
- uint32_t value;
-}DebugRegisterValue_t;
-// ****************
-// Battery Low Thesholds
-//
-typedef struct BatteryLowThresholdTag
-{
- uint8_t batteryType;
- uint16_t mv;
-}BatteryLowThreshold_t;
-// ****************
-// Battery Critical Timing
-//
-typedef struct BatteryCriticalTimingTag
-{
- uint16_t timeToCritical;
- uint16_t timeToShutdown;
-}BatteryCriticalTiming_t;
-// ****************
-// Battery Critical Timing
-//
-typedef struct MeasuredVoltagesTag
-{
- uint16_t vbat0;
- uint16_t vbat1;
- uint16_t vcpu;
-}MeasuredVoltages_t;
-#pragma pack (pop)
-#endif
\ No newline at end of file
diff --git a/TestMK3/Reader2.dll b/TestMK3/Reader2.dll
deleted file mode 100644
index 3edbef2..0000000
Binary files a/TestMK3/Reader2.dll and /dev/null differ
diff --git a/TestMK3/Reader3.dll b/TestMK3/Reader3.dll
deleted file mode 100644
index fe2b2c2..0000000
Binary files a/TestMK3/Reader3.dll and /dev/null differ
diff --git a/TestMK3/TestMK3.cpp b/TestMK3/TestMK3.cpp
deleted file mode 100644
index 7cc0a24..0000000
--- a/TestMK3/TestMK3.cpp
+++ /dev/null
@@ -1,269 +0,0 @@
-// TestMK3.cpp : This file contains the 'main' function. Program execution begins and ends there.
-//
-#include
-#include
-#include
-#include
-#include "EpdCommon.h"
-#include "Epd3.h"
-
-#include "TimeFunctions.h"
-#include // if not already included
-
-
-
-
-char comPort[] = "COM3";
-CommsHandle epdComsHandle;
-uint32_t EpdID;
-EpdGeneration EpdGen;
-DiscoveryId Epd;
-int DeviceCount;
-
-HANDLE Ev1 = INVALID_HANDLE_VALUE;
-CompletionToken token;
-StatusData_t status;
-MeasValue_t doses[4];
-uint8_t numDoses;
-uint32_t utc,utc2;
-uint8_t EC[]{ 0xE7 ,0xD3 ,0xE7 ,0x69 ,0xF3 ,0xF5 ,0x93 ,0xDA ,0xDC ,0xB8 ,0x63 ,0x4C ,0xC5 ,0xB0 ,0x9F ,0xC9 ,0x0D ,0xD3 ,0xA6 ,0x1C ,0x4A ,0x06 ,0xA7 ,0x9C ,0xB0 ,0x92 ,0x36 ,0x62 ,0xFE ,0x6F ,0xAE ,0x6B };
-
-
-
-void WINAPI discovery2(CommsHandle hComms, DiscoveryId const discovered[], int32_t count)
-{
- EpdID = 0;
- DeviceCount = count;
- std::cout << "Discovered " << count << "\n";
- if (count > 0) {
-
- EpdID = discovered[0].Id;
- EpdGen = discovered[0].Gen;
- memcpy(&Epd, &discovered[0], sizeof(DiscoveryId));
- }
- else {
- EpdID = 0;EpdGen = EpdGeneration::None;
- memset(&Epd, 0, sizeof(DiscoveryId));
- }
- SetEvent(Ev1);
-}
-
-
-void WINAPI discovery(CommsHandle hComms, DiscoveryId const discovered[], int32_t count)
-{
- EpdID = 0;
- DeviceCount = count;
- if (count > 0) {
- EpdID = discovered[0].Id;
- EpdGen = discovered[0].Gen;
- }
- memcpy(&Epd,&discovered[0],sizeof(DiscoveryId));
- SetEvent(Ev1);
-}
-
-void WINAPI completion(CommsHandle hComms, CompletionToken token)
-{
- SetEvent(Ev1);
-}
-
-
-void ReadTime()
-{
- DWORD r;
- DWORD EpdClock;
- utc = 0;
- token = BeginReadRTC(epdComsHandle, nullptr);
- r = Commit(epdComsHandle);
- if (!r)
- r = EndReadRTC(epdComsHandle, token, &utc); //EpdClock for MK2
- EpdClock = utc;
- utc2 = TimeFunctions::NowToEpdTime(false);
-
-}
-
-int SetTime() //Only R3
-{
- int r = 0;
- if (Epd.Gen == EpdGeneration::Mk3)
- {
-
- utc = TimeFunctions::NowToEpdTime(false);
- token = BeginWriteRTC_R3(epdComsHandle, utc, nullptr);
- r = Commit(epdComsHandle);
- if (!r)
- r = EndWriteRTC_R3(epdComsHandle, token); //EpdClock for MK2
-
- }
- return r;
-}
-
-int startCom()
-{
- epdComsHandle = CreateReaderInterface();
- int r = OpenReader(epdComsHandle, comPort);
- Ev1 = CreateEvent(
- NULL, // default security attributes
- TRUE, // manual-reset event
- FALSE, // initial state is nonsignaled
- TEXT("WriteEvent") // object name
- );
- uint32_t ms1, ms, slots; bool state = true;
- GetResponseTimeout(epdComsHandle, &ms1);
- r = GetMultipleDiscoveryMode(epdComsHandle, &state);
- r = GetDiscoveryTimeslots(epdComsHandle, &slots);
- r = GetDiscoveryTimeout(epdComsHandle, &ms);
-
- SetDiscoveryCacheTimeout(epdComsHandle, 2000);
- SetResponseTimeout(epdComsHandle, 500);
- return r;
-}
-
-void endCom()
-{
- CloseHandle(Ev1);
- Ev1 = INVALID_HANDLE_VALUE;
- int r = CloseReader(epdComsHandle);
- r = DestroyReaderInterface(epdComsHandle);
-}
-
-//void detectepd()
-//{
-// using std::chrono::high_resolution_clock;
-// using std::chrono::duration_cast;
-// using std::chrono::duration;
-// using std::chrono::milliseconds;
-//
-//
-//
-//
-// int r,r2;
-// int tries = 5; DeviceCount = 0;
-// ResetEvent(Ev1);
-//
-// while (tries-- > 0 && DeviceCount == 0)
-// {
-// auto t1 = high_resolution_clock::now();
-// //memset(DevceIDs, 0, sizeof(DeviceIDs));
-// r = StartDiscovery(epdComsHandle, discovery2);
-//
-// if (r == 0) {
-// r = WaitForSingleObject(Ev1, 10000);
-//
-// std::cout << "EPD " << EpdID << "\n";
-// }
-// else {
-// std::cout << "StartDiscovery failed " << r << "\n";
-// }
-// r2 = StopDiscovery(epdComsHandle);
-// auto t2 = high_resolution_clock::now();
-// auto elapsed = duration_cast(t2 - t1);
-// std::cout << "Elapsed time: " << elapsed.count() << " ms\n";
-// }
-//
-//
-//
-// //std::cout << "wacht effen!\n";
-// //r = WaitForSingleObject(Ev1, 10000); // no time-out interval
-//
-// std::cout << "ok! r=" << r << ", r2=" << r2 << "\n";
-//
-//
-//
-//
-//}
-
-void GetEPD()
-{
- //epdComsHandle = CreateReaderInterface();
- //int r = OpenReader(epdComsHandle, comPort);
- Ev1 = CreateEvent(
- NULL, // default security attributes
- TRUE, // manual-reset event
- FALSE, // initial state is nonsignaled
- TEXT("WriteEvent") // object name
- );
- if (!Ev1) return;
-
- int r;
- int tries = 5; DeviceCount = 0;
- while (tries-- > 0 && DeviceCount == 0)
- {
- //memset(DevceIDs, 0, sizeof(DeviceIDs));
- r = StartDiscovery(epdComsHandle, discovery);
- if (r == 0)
- r = WaitForSingleObject(Ev1, 10000);
- }
-
-
- std::cout << "wacht discover!\n";
- r = WaitForSingleObject(Ev1, 10000); // no time-out interval
-
- std::cout << "ok! connect\n";
-
-
- Sleep(1000);
-
-
- r = Connect(epdComsHandle,Epd, true);
- // -9 = r_OperationTimeout
- std::cout << "Connect rv " << r << "\n";
-
-
-
- Sleep(1000);
-
-
-
- std::cout << "get status\n";
- token = BeginReadStatus(epdComsHandle, completion);
- r = Commit(epdComsHandle);
- r = WaitForSingleObject(Ev1, 1000); // no time-out interval
- r = EndReadStatus(epdComsHandle, token, &status);
- std::cout << "got status "< Start Without Debugging menu
-// Debug program: F5 or Debug > Start Debugging menu
-//C:\Program Files (x86)\Thermo Scientific\Unmanaged HtmlFiles
-//
-// Tips for Getting Started:
-// 1. Use the Solution Explorer window to add/manage files
-// 2. Use the Team Explorer window to connect to source control
-// 3. Use the Output window to see build output and other messages
-// 4. Use the Error List window to view errors
-// 5. Go to Project > Add New Item to create new code files, or Project > Add Existing Item to add existing code files to the project
-// 6. In the future, to open this project again, go to File > Open > Project and select the .sln file
diff --git a/TestMK3/TestMK3.vcxproj b/TestMK3/TestMK3.vcxproj
deleted file mode 100644
index f7c50a7..0000000
--- a/TestMK3/TestMK3.vcxproj
+++ /dev/null
@@ -1,165 +0,0 @@
-
-
-
-
- Debug
- Win32
-
-
- Release
- Win32
-
-
- Debug
- x64
-
-
- Release
- x64
-
-
-
- 16.0
- Win32Proj
- {5af7d0d5-9a6d-4c41-8466-3dfba4f94d84}
- TestMK3
- 10.0
-
-
-
- Application
- true
- v145
- Unicode
-
-
- Application
- false
- v145
- true
- Unicode
-
-
- Application
- true
- v143
- Unicode
-
-
- Application
- false
- v143
- true
- Unicode
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- true
-
-
- false
-
-
- true
-
-
- false
-
-
-
- Level3
- true
- WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions)
- true
- MultiThreadedDebugDLL
-
-
- Console
- true
- $(ProjectDir)reader32.lib;%(AdditionalDependencies)
-
-
-
-
- $(MSBuildProjectDirectory);%(AdditionalLibraryDirectories)
-
-
-
-
- Level3
- true
- true
- true
- WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions)
- true
- MultiThreaded
-
-
- Console
- true
- true
- true
- %(AdditionalDependencies);reader32.lib
-
-
-
-
- Level3
- true
- _DEBUG;_CONSOLE;%(PreprocessorDefinitions)
- true
-
-
- Console
- true
-
-
-
-
- Level3
- true
- true
- true
- NDEBUG;_CONSOLE;%(PreprocessorDefinitions)
- true
-
-
- Console
- true
- true
- true
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/TestMK3/TestMK3.vcxproj.filters b/TestMK3/TestMK3.vcxproj.filters
deleted file mode 100644
index 7d921f2..0000000
--- a/TestMK3/TestMK3.vcxproj.filters
+++ /dev/null
@@ -1,45 +0,0 @@
-
-
-
-
- {4FC737F1-C7A5-4376-A066-2A32D752A2FF}
- cpp;c;cc;cxx;c++;cppm;ixx;def;odl;idl;hpj;bat;asm;asmx
-
-
- {93995380-89BD-4b04-88EB-625FBE52EBFB}
- h;hh;hpp;hxx;h++;hm;inl;inc;ipp;xsd
-
-
- {67DA6AB6-F800-4c08-8B7A-83BB121AAD01}
- rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms
-
-
-
-
- Source Files
-
-
- Source Files
-
-
-
-
- Header Files
-
-
- Header Files
-
-
- Header Files
-
-
- Header Files
-
-
- Header Files
-
-
- Header Files
-
-
-
\ No newline at end of file
diff --git a/TestMK3/TimeFunctions.cpp b/TestMK3/TimeFunctions.cpp
deleted file mode 100644
index 9f5ace3..0000000
--- a/TestMK3/TimeFunctions.cpp
+++ /dev/null
@@ -1,97 +0,0 @@
-
-#include "TimeFunctions.h"
-#pragma unmanaged
-
-TimeFunctions::TimeFunctions()
-{
-
-}
-
-
-UINT32 FileTime_to_POSIX(FILETIME ft)
-{
- // takes the last modified date
- LARGE_INTEGER date, adjust;
- date.HighPart = ft.dwHighDateTime;
- date.LowPart = ft.dwLowDateTime;
- // 100-nanoseconds = milliseconds * 10000
- adjust.QuadPart = 11644473600000 * 10000;
- // removes the diff between 1970 and 1601
- date.QuadPart -= adjust.QuadPart;
- // converts back from 100-nanoseconds to seconds
- return (UINT32)(date.QuadPart / 10000000);
-}
-
-UINT32 UnixTimeNow() {
- FILETIME ft;
- GetSystemTimeAsFileTime(&ft);
- return FileTime_to_POSIX(ft);
-}
-
-///
-/// Filetime is 100nS since 1601 01 01 UTC Unix = seconds since 1970
-///
-///
-///
-void TimeFunctions::UnixTimeToFileTime(time_t t, LPFILETIME pft)
-{
- ULONG64 ll = ((ULONG64)t * (ULONG64)10000000) + (ULONG64)116444736000000000;
- pft->dwLowDateTime = (DWORD)ll;
- pft->dwHighDateTime = ll >> 32;
-}
-
- void TimeFunctions::UnixTimeToSystemTime(time_t t, LPSYSTEMTIME pst)
-{
- FILETIME ft;
- UnixTimeToFileTime(t, &ft);
- FileTimeToSystemTime(&ft, pst);
-}
-
-
- ///
- /// converts MK2/MK3 time to FileTime
- ///
- /// UTC
- /// UTC
- ///
- void TimeFunctions::EpdTimeToFileTime(UINT32 epdTime, LPFILETIME epdFileTime, bool isMK2) //MK3
- {
- ULONG64 ll = (ULONG64)epdTime * (ULONG64)10000000;
- if (isMK2) ll += (ULONG64) 116444736000000000; else ll += (ULONG64)125911584000000000; // 2000 base - 1601-1-1 (FT) Base
- epdFileTime->dwLowDateTime = (DWORD)(ll & 0xffffffff);
- epdFileTime->dwHighDateTime = ll >> 32;
- }
-
- void TimeFunctions::FileTimeToEpdTime(FILETIME pft, INT32* t, bool isMK2)
- {
- ULONG64 offset;
- if (isMK2) offset = (ULONG64)116444736000000000; else offset = (ULONG64)125911584000000000;
- LONGLONG ll = ((((LONGLONG)pft.dwHighDateTime << 32) + pft.dwLowDateTime) - offset) / 10000000;
- *t = (DWORD)ll;
- }
-
- UINT32 TimeFunctions::NowToEpdTime(bool isMK2)
- {
- ULONG64 offset;
- if (isMK2) offset = (ULONG64)116444736000000000; else offset = (ULONG64)125911584000000000;
- SYSTEMTIME t;
- GetSystemTime(&t); // is UTC !!
- FILETIME ft;
- SystemTimeToFileTime((const SYSTEMTIME*)&t, &ft);
- LONGLONG ll = ((((LONGLONG)ft.dwHighDateTime << 32U) + ft.dwLowDateTime) - offset) / 10000000;
- return (DWORD)ll;
- }
-
-
-
- void TimeFunctions::EPD2PeakTimeToFiletime(DWORD EpdClock, DWORD EpdPeakTime, FILETIME* PeakFileTime) {
- if (EpdPeakTime != 0xCDCDCDCD) {
- UINT32 tm = EpdClock - EpdPeakTime;
- GetSystemTimeAsFileTime(&lu.FT);
- lu.LL -= UInt32x32To64(tm, 10000000);
- *PeakFileTime = lu.FT;
- } else
- {
- (*PeakFileTime).dwLowDateTime = (*PeakFileTime).dwHighDateTime = 0;
- }
- }
\ No newline at end of file
diff --git a/TestMK3/TimeFunctions.h b/TestMK3/TimeFunctions.h
deleted file mode 100644
index cf08fce..0000000
--- a/TestMK3/TimeFunctions.h
+++ /dev/null
@@ -1,24 +0,0 @@
-#pragma once
-#include
-#include
-
-class TimeFunctions
-{
-public:
-
-
- TimeFunctions();
- static void EpdTimeToFileTime(UINT32 epdTime, LPFILETIME epdFileTime, bool isMK2);
- void FileTimeToEpdTime(FILETIME pft, INT32* t, bool isMK2);
- static UINT32 NowToEpdTime(bool isMK2);
- static void UnixTimeToFileTime(time_t t, LPFILETIME pft);
- static void UnixTimeToSystemTime(time_t t, LPSYSTEMTIME pst);
- static void EPD2PeakTimeToFiletime(DWORD EpdClock, DWORD EpdPeakTime, FILETIME* PeakFileTime);
-};
-
-static union {
- FILETIME FT; unsigned long long LL;
-} lu;
-static SYSTEMTIME ST;
-UINT32 FileTime_to_POSIX(FILETIME ft);
-UINT32 UnixTimeNow();
diff --git a/TestMK3/reader32.lib b/TestMK3/reader32.lib
deleted file mode 100644
index 3cd5e27..0000000
Binary files a/TestMK3/reader32.lib and /dev/null differ
diff --git a/TestMK3/x.txt b/TestMK3/x.txt
deleted file mode 100644
index cb67fae..0000000
--- a/TestMK3/x.txt
+++ /dev/null
@@ -1,11630 +0,0 @@
-Microsoft (R) COFF/PE Dumper Version 14.28.29914.0
-Copyright (C) Microsoft Corporation. All rights reserved.
-
-
-Dump of file reader3.lib
-
-File Type: LIBRARY
-
-Archive member name at 8: /
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 84C2 size
-correct header end
-
- 947 public symbols
-
- 10A0E __IMPORT_DESCRIPTOR_reader3
- 10C38 __NULL_IMPORT_DESCRIPTOR
- 10D6E reader3_NULL_THUNK_DATA
- 10EC0 _AwaitRemoval@20
- 10EC0 __imp__AwaitRemoval@20
- 10F2E _BeginClearAllStatus@8
- 10F2E __imp__BeginClearAllStatus@8
- 10FA2 _BeginClearDose@8
- 10FA2 __imp__BeginClearDose@8
- 11010 _BeginClearDoseProfile_R3@8
- 11010 __imp__BeginClearDoseProfile_R3@8
- 11088 _BeginClearEEPROM_R3@8
- 11088 __imp__BeginClearEEPROM_R3@8
- 110FC _BeginClearFaultStatus@8
- 110FC __imp__BeginClearFaultStatus@8
- 11172 _BeginClearGraphic_R3@12
- 11172 __imp__BeginClearGraphic_R3@12
- 111E8 _BeginClearLatchedAlarms@8
- 111E8 __imp__BeginClearLatchedAlarms@8
- 11260 _BeginClearPeakRates@8
- 11260 __imp__BeginClearPeakRates@8
- 112D4 _BeginClearScratchPad@12
- 112D4 __imp__BeginClearScratchPad@12
- 1134A _BeginClearTotalDose@8
- 1134A __imp__BeginClearTotalDose@8
- 113BE _BeginClearWearerOrTaskId_R3@16
- 113BE __imp__BeginClearWearerOrTaskId_R3@16
- 1143A _BeginDeissueEPD@8
- 1143A __imp__BeginDeissueEPD@8
- 114AA _BeginEnableCovertMode_R3@12
- 114AA __imp__BeginEnableCovertMode_R3@12
- 11524 _BeginEnableDeepSleep_R3@12
- 11524 __imp__BeginEnableDeepSleep_R3@12
- 1159C _BeginEnableManufacturerLockout_R3@12
- 1159C __imp__BeginEnableManufacturerLockout_R3@12
- 1161E _BeginEnableProtectedSession_R3@12
- 1161E __imp__BeginEnableProtectedSession_R3@12
- 1169E _BeginEnableResponderMode_R3@12
- 1169E __imp__BeginEnableResponderMode_R3@12
- 1171A _BeginEpdOnOff@12
- 1171A __imp__BeginEpdOnOff@12
- 11788 _BeginInitiateFirmwareUpdate_R3@8
- 11788 __imp__BeginInitiateFirmwareUpdate_R3@8
- 11806 _BeginIssueEPD@8
- 11806 __imp__BeginIssueEPD@8
- 11874 _BeginReadAccessPermissionsForLevel_R3@12
- 11874 __imp__BeginReadAccessPermissionsForLevel_R3@12
- 118FA _BeginReadAlarmConfiguration@16
- 118FA __imp__BeginReadAlarmConfiguration@16
- 11976 _BeginReadAlarmConfigurationLock_R3@8
- 11976 __imp__BeginReadAlarmConfigurationLock_R3@8
- 119F8 _BeginReadAlarmConfiguration_R3@16
- 119F8 __imp__BeginReadAlarmConfiguration_R3@16
- 11A78 _BeginReadAlarmThresholds@20
- 11A78 __imp__BeginReadAlarmThresholds@20
- 11AF2 _BeginReadBacklightBrightness_R3@8
- 11AF2 __imp__BeginReadBacklightBrightness_R3@8
- 11B72 _BeginReadBacklightEnable_R3@8
- 11B72 __imp__BeginReadBacklightEnable_R3@8
- 11BEE _BeginReadBacklightPeriod_R3@8
- 11BEE __imp__BeginReadBacklightPeriod_R3@8
- 11C6A _BeginReadBaselineCounts@8
- 11C6A __imp__BeginReadBaselineCounts@8
- 11CE2 _BeginReadBatteryCriticalTiming_R3@8
- 11CE2 __imp__BeginReadBatteryCriticalTiming_R3@8
- 11D64 _BeginReadBatteryLowThreshold@12
- 11D64 __imp__BeginReadBatteryLowThreshold@12
- 11DE2 _BeginReadBatteryTestInterval@8
- 11DE2 __imp__BeginReadBatteryTestInterval@8
- 11E5E _BeginReadBatteryTypeFitted_R3@8
- 11E5E __imp__BeginReadBatteryTypeFitted_R3@8
- 11EDC _BeginReadBatteryTypeOverride_R3@8
- 11EDC __imp__BeginReadBatteryTypeOverride_R3@8
- 11F5C _BeginReadCalDueDate@8
- 11F5C __imp__BeginReadCalDueDate@8
- 11FD0 _BeginReadCalDueDate_R3@8
- 11FD0 __imp__BeginReadCalDueDate_R3@8
- 12046 _BeginReadCalReference_R3@8
- 12046 __imp__BeginReadCalReference_R3@8
- 120BE _BeginReadCalibrationData_R2@8
- 120BE __imp__BeginReadCalibrationData_R2@8
- 1213A _BeginReadCalibrationFacility_R3@8
- 1213A __imp__BeginReadCalibrationFacility_R3@8
- 121BA _BeginReadCapabilities@8
- 121BA __imp__BeginReadCapabilities@8
- 12230 _BeginReadChirpEnable_R3@8
- 12230 __imp__BeginReadChirpEnable_R3@8
- 122A8 _BeginReadChirpSensitivity@8
- 122A8 __imp__BeginReadChirpSensitivity@8
- 12322 _BeginReadCounts@16
- 12322 __imp__BeginReadCounts@16
- 12392 _BeginReadCurrentAccessLevel@8
- 12392 __imp__BeginReadCurrentAccessLevel@8
- 1240E _BeginReadDeadTimeFactors_R3@16
- 1240E __imp__BeginReadDeadTimeFactors_R3@16
- 1248A _BeginReadDebugRegister_R3@12
- 1248A __imp__BeginReadDebugRegister_R3@12
- 12504 _BeginReadDetectorTestLimits_R3@16
- 12504 __imp__BeginReadDetectorTestLimits_R3@16
- 12584 _BeginReadDetectorThresholdLimits_R3@16
- 12584 __imp__BeginReadDetectorThresholdLimits_R3@16
- 12608 _BeginReadDetectorThresholds@16
- 12608 __imp__BeginReadDetectorThresholds@16
- 12684 _BeginReadDetectorThresholds_R3@16
- 12684 __imp__BeginReadDetectorThresholds_R3@16
- 12704 _BeginReadDisplayCapability_R3@12
- 12704 __imp__BeginReadDisplayCapability_R3@12
- 12782 _BeginReadDisplayEnablePermissions_R3@12
- 12782 __imp__BeginReadDisplayEnablePermissions_R3@12
- 12808 _BeginReadDisplayEnables_R3@16
- 12808 __imp__BeginReadDisplayEnables_R3@16
- 12884 _BeginReadDisplayOptions@8
- 12884 __imp__BeginReadDisplayOptions@8
- 128FC _BeginReadDisplayOptionsLock_R3@8
- 128FC __imp__BeginReadDisplayOptionsLock_R3@8
- 1297A _BeginReadDisplayTimeout@8
- 1297A __imp__BeginReadDisplayTimeout@8
- 129F2 _BeginReadDoseProfileByIndex_R3@16
- 129F2 __imp__BeginReadDoseProfileByIndex_R3@16
- 12A72 _BeginReadDoseProfileByTime@16
- 12A72 __imp__BeginReadDoseProfileByTime@16
- 12AEE _BeginReadDoseProfileConfiguration_R3@8
- 12AEE __imp__BeginReadDoseProfileConfiguration_R3@8
- 12B72 _BeginReadDoseProfileInterval@8
- 12B72 __imp__BeginReadDoseProfileInterval@8
- 12BEE _BeginReadDoseSaveInterval_R3@8
- 12BEE __imp__BeginReadDoseSaveInterval_R3@8
- 12C6A _BeginReadDoses@16
- 12C6A __imp__BeginReadDoses@16
- 12CDA _BeginReadEEProm@16
- 12CDA __imp__BeginReadEEProm@16
- 12D4A _BeginReadEpdIdentities@8
- 12D4A __imp__BeginReadEpdIdentities@8
- 12DC0 _BeginReadEpdPartNumber_R3@8
- 12DC0 __imp__BeginReadEpdPartNumber_R3@8
- 12E3A _BeginReadEpdRevision_R3@8
- 12E3A __imp__BeginReadEpdRevision_R3@8
- 12EB2 _BeginReadEpdSerialNum@8
- 12EB2 __imp__BeginReadEpdSerialNum@8
- 12F28 _BeginReadEpdType@8
- 12F28 __imp__BeginReadEpdType@8
- 12F98 _BeginReadEventLogLevel_R3@8
- 12F98 __imp__BeginReadEventLogLevel_R3@8
- 13012 _BeginReadEventsByIndex@16
- 13012 __imp__BeginReadEventsByIndex@16
- 1308A _BeginReadFactoryCalDate@8
- 1308A __imp__BeginReadFactoryCalDate@8
- 13102 _BeginReadFemSerialNum_R3@8
- 13102 __imp__BeginReadFemSerialNum_R3@8
- 1317A _BeginReadFirmwarePartNumber_R3@8
- 1317A __imp__BeginReadFirmwarePartNumber_R3@8
- 131F8 _BeginReadFirmwareVersion@8
- 131F8 __imp__BeginReadFirmwareVersion@8
- 13270 _BeginReadFlashTestCounts_R3@16
- 13270 __imp__BeginReadFlashTestCounts_R3@16
- 132EC _BeginReadFpgaVersion_R3@8
- 132EC __imp__BeginReadFpgaVersion_R3@8
- 13364 _BeginReadGains@16
- 13364 __imp__BeginReadGains@16
- 133D4 _BeginReadGains_R3@16
- 133D4 __imp__BeginReadGains_R3@16
- 13446 _BeginReadGraphicData_R3@12
- 13446 __imp__BeginReadGraphicData_R3@12
- 134BE _BeginReadGraphicSize_R3@12
- 134BE __imp__BeginReadGraphicSize_R3@12
- 13536 _BeginReadLastCalibrationProcess_R3@8
- 13536 __imp__BeginReadLastCalibrationProcess_R3@8
- 135B8 _BeginReadMarkNumber@8
- 135B8 __imp__BeginReadMarkNumber@8
- 1362C _BeginReadMeasurandIds_R3@8
- 1362C __imp__BeginReadMeasurandIds_R3@8
- 136A4 _BeginReadModelName_R3@8
- 136A4 __imp__BeginReadModelName_R3@8
- 1371A _BeginReadOffModeBatteryTestInterval_R3@8
- 1371A __imp__BeginReadOffModeBatteryTestInterval_R3@8
- 137A0 _BeginReadOffModeDisplay_R3@8
- 137A0 __imp__BeginReadOffModeDisplay_R3@8
- 1381A _BeginReadPcbPartNumber_R3@8
- 1381A __imp__BeginReadPcbPartNumber_R3@8
- 13894 _BeginReadPcbRevision_R3@8
- 13894 __imp__BeginReadPcbRevision_R3@8
- 1390C _BeginReadPcbSerialNum_R3@8
- 1390C __imp__BeginReadPcbSerialNum_R3@8
- 13984 _BeginReadPeakRates@16
- 13984 __imp__BeginReadPeakRates@16
- 139F8 _BeginReadPulseModeEnable_R3@8
- 139F8 __imp__BeginReadPulseModeEnable_R3@8
- 13A74 _BeginReadPulseModeIndustrial_R3@8
- 13A74 __imp__BeginReadPulseModeIndustrial_R3@8
- 13AF4 _BeginReadPulseModeThreshold_R3@8
- 13AF4 __imp__BeginReadPulseModeThreshold_R3@8
- 13B72 _BeginReadPulsedModeOverrangeThreshold_R3@8
- 13B72 __imp__BeginReadPulsedModeOverrangeThreshold_R3@8
- 13BFA _BeginReadQualityData@8
- 13BFA __imp__BeginReadQualityData@8
- 13C6E _BeginReadQuickAccessDisplays_R3@16
- 13C6E __imp__BeginReadQuickAccessDisplays_R3@16
- 13CEE _BeginReadRTC@8
- 13CEE __imp__BeginReadRTC@8
- 13D5A _BeginReadRadioFirmwareVersion_R3@8
- 13D5A __imp__BeginReadRadioFirmwareVersion_R3@8
- 13DDA _BeginReadRateOffPercentage@16
- 13DDA __imp__BeginReadRateOffPercentage@16
- 13E56 _BeginReadRates@16
- 13E56 __imp__BeginReadRates@16
- 13EC6 _BeginReadResponderTriggerUtc_R3@8
- 13EC6 __imp__BeginReadResponderTriggerUtc_R3@8
- 13F46 _BeginReadReturnForReadTime@8
- 13F46 __imp__BeginReadReturnForReadTime@8
- 13FC0 _BeginReadRunTime_R3@8
- 13FC0 __imp__BeginReadRunTime_R3@8
- 14034 _BeginReadScratchPad@16
- 14034 __imp__BeginReadScratchPad@16
- 140A8 _BeginReadScratchpadSize@8
- 140A8 __imp__BeginReadScratchpadSize@8
- 14120 _BeginReadSelfTestInterval@8
- 14120 __imp__BeginReadSelfTestInterval@8
- 1419A _BeginReadSensitivities@16
- 1419A __imp__BeginReadSensitivities@16
- 14212 _BeginReadSensitivities_R3@16
- 14212 __imp__BeginReadSensitivities_R3@16
- 1428C _BeginReadSnapshotAlarmThresholds_R3@12
- 1428C __imp__BeginReadSnapshotAlarmThresholds_R3@12
- 14310 _BeginReadSnapshotCounters_R3@12
- 14310 __imp__BeginReadSnapshotCounters_R3@12
- 1438E _BeginReadSnapshotMeasurements_R3@12
- 1438E __imp__BeginReadSnapshotMeasurements_R3@12
- 14410 _BeginReadSnapshotSummary_R3@12
- 14410 __imp__BeginReadSnapshotSummary_R3@12
- 1448C _BeginReadStatus@8
- 1448C __imp__BeginReadStatus@8
- 144FC _BeginReadStayTime_R3@8
- 144FC __imp__BeginReadStayTime_R3@8
- 14570 _BeginReadSwitchOnFromButton_R3@8
- 14570 __imp__BeginReadSwitchOnFromButton_R3@8
- 145EE _BeginReadTaskDatabaseId_R3@8
- 145EE __imp__BeginReadTaskDatabaseId_R3@8
- 14668 _BeginReadTaskId_R3@12
- 14668 __imp__BeginReadTaskId_R3@12
- 146DC _BeginReadTelemetryAdvConfig_R3@12
- 146DC __imp__BeginReadTelemetryAdvConfig_R3@12
- 1475C _BeginReadTelemetryAdvContent_R3@12
- 1475C __imp__BeginReadTelemetryAdvContent_R3@12
- 147DC _BeginReadTelemetryCxnConfig_R3@8
- 147DC __imp__BeginReadTelemetryCxnConfig_R3@8
- 1485A _BeginReadTelemetryEnable_R3@12
- 1485A __imp__BeginReadTelemetryEnable_R3@12
- 148D6 _BeginReadTelemetryMode_R2@8
- 148D6 __imp__BeginReadTelemetryMode_R2@8
- 14950 _BeginReadTelemetryReportInterval_R3@8
- 14950 __imp__BeginReadTelemetryReportInterval_R3@8
- 149D4 _BeginReadTelemetryTxPower_R3@12
- 149D4 __imp__BeginReadTelemetryTxPower_R3@12
- 14A52 _BeginReadTotalDoses@16
- 14A52 __imp__BeginReadTotalDoses@16
- 14AC6 _BeginReadTriggeredDoses_R3@16
- 14AC6 __imp__BeginReadTriggeredDoses_R3@16
- 14B42 _BeginReadVoltages@8
- 14B42 __imp__BeginReadVoltages@8
- 14BB4 _BeginReadWearerDatabaseId_R3@8
- 14BB4 __imp__BeginReadWearerDatabaseId_R3@8
- 14C30 _BeginReadWearerId@12
- 14C30 __imp__BeginReadWearerId@12
- 14CA2 _BeginReadZoneAccessPermitted@12
- 14CA2 __imp__BeginReadZoneAccessPermitted@12
- 14D20 _BeginReadZoneControlMap@8
- 14D20 __imp__BeginReadZoneControlMap@8
- 14D98 _BeginSetBaselineCounters@8
- 14D98 __imp__BeginSetBaselineCounters@8
- 14E10 _BeginStartDetectorTest@8
- 14E10 __imp__BeginStartDetectorTest@8
- 14E86 _BeginTriggerBacklight_R3@8
- 14E86 __imp__BeginTriggerBacklight_R3@8
- 14EFE _BeginTriggerResponderMode_R3@8
- 14EFE __imp__BeginTriggerResponderMode_R3@8
- 14F7A _BeginValidateEpdOwnerKey_R3@12
- 14F7A __imp__BeginValidateEpdOwnerKey_R3@12
- 14FF6 _BeginWriteAccessKey@20
- 14FF6 __imp__BeginWriteAccessKey@20
- 1506A _BeginWriteAccessLevel@20
- 1506A __imp__BeginWriteAccessLevel@20
- 150E0 _BeginWriteAccessPermissionsForLevel_R3@20
- 150E0 __imp__BeginWriteAccessPermissionsForLevel_R3@20
- 15168 _BeginWriteAlarmConfigurationLock_R3@16
- 15168 __imp__BeginWriteAlarmConfigurationLock_R3@16
- 151EC _BeginWriteAlarmConfiguration_R3@16
- 151EC __imp__BeginWriteAlarmConfiguration_R3@16
- 1526C _BeginWriteAlarmThresholds@20
- 1526C __imp__BeginWriteAlarmThresholds@20
- 152E6 _BeginWriteBacklightBrightness_R3@12
- 152E6 __imp__BeginWriteBacklightBrightness_R3@12
- 15368 _BeginWriteBacklightEnable_R3@12
- 15368 __imp__BeginWriteBacklightEnable_R3@12
- 153E6 _BeginWriteBacklightPeriod_R3@12
- 153E6 __imp__BeginWriteBacklightPeriod_R3@12
- 15464 _BeginWriteBatteryCriticalTiming_R3@16
- 15464 __imp__BeginWriteBatteryCriticalTiming_R3@16
- 154E8 _BeginWriteBatteryLowThreshold@16
- 154E8 __imp__BeginWriteBatteryLowThreshold@16
- 15566 _BeginWriteBatteryTestInterval@12
- 15566 __imp__BeginWriteBatteryTestInterval@12
- 155E4 _BeginWriteBatteryTypeOverride_R3@12
- 155E4 __imp__BeginWriteBatteryTypeOverride_R3@12
- 15666 _BeginWriteCalDueDate@12
- 15666 __imp__BeginWriteCalDueDate@12
- 156DC _BeginWriteCalDueDate_R3@12
- 156DC __imp__BeginWriteCalDueDate_R3@12
- 15754 _BeginWriteCalReference_R3@12
- 15754 __imp__BeginWriteCalReference_R3@12
- 157CE _BeginWriteCalibrationFacility_R3@16
- 157CE __imp__BeginWriteCalibrationFacility_R3@16
- 15850 _BeginWriteCapabilities_R3@12
- 15850 __imp__BeginWriteCapabilities_R3@12
- 158CA _BeginWriteChirpEnable_R3@12
- 158CA __imp__BeginWriteChirpEnable_R3@12
- 15944 _BeginWriteChirpSensitivity@12
- 15944 __imp__BeginWriteChirpSensitivity@12
- 159C0 _BeginWriteClearDoseOnSwitchOn@12
- 159C0 __imp__BeginWriteClearDoseOnSwitchOn@12
- 15A3E _BeginWriteDeadTimeFactors_R3@16
- 15A3E __imp__BeginWriteDeadTimeFactors_R3@16
- 15ABC _BeginWriteDebugRegister_R3@16
- 15ABC __imp__BeginWriteDebugRegister_R3@16
- 15B38 _BeginWriteDetectorTestLimits_R3@16
- 15B38 __imp__BeginWriteDetectorTestLimits_R3@16
- 15BB8 _BeginWriteDetectorThresholds_R2@24
- 15BB8 __imp__BeginWriteDetectorThresholds_R2@24
- 15C38 _BeginWriteDetectorThresholds_R3@16
- 15C38 __imp__BeginWriteDetectorThresholds_R3@16
- 15CB8 _BeginWriteDisplayEnablePermissions_R3@20
- 15CB8 __imp__BeginWriteDisplayEnablePermissions_R3@20
- 15D3E _BeginWriteDisplayEnables_R3@16
- 15D3E __imp__BeginWriteDisplayEnables_R3@16
- 15DBA _BeginWriteDisplayOptions@16
- 15DBA __imp__BeginWriteDisplayOptions@16
- 15E34 _BeginWriteDisplayOptionsLock_R3@16
- 15E34 __imp__BeginWriteDisplayOptionsLock_R3@16
- 15EB4 _BeginWriteDisplayTimeout@12
- 15EB4 __imp__BeginWriteDisplayTimeout@12
- 15F2E _BeginWriteDoseProfileDoseIncrement_R3@12
- 15F2E __imp__BeginWriteDoseProfileDoseIncrement_R3@12
- 15FB4 _BeginWriteDoseProfileInterval@12
- 15FB4 __imp__BeginWriteDoseProfileInterval@12
- 16032 _BeginWriteDoseProfileMeasurands_R3@16
- 16032 __imp__BeginWriteDoseProfileMeasurands_R3@16
- 160B6 _BeginWriteDoseSaveInterval_R3@12
- 160B6 __imp__BeginWriteDoseSaveInterval_R3@12
- 16134 _BeginWriteDoseWritableFlag@12
- 16134 __imp__BeginWriteDoseWritableFlag@12
- 161B0 _BeginWriteDoses@16
- 161B0 __imp__BeginWriteDoses@16
- 16220 _BeginWriteEEProm@20
- 16220 __imp__BeginWriteEEProm@20
- 16292 _BeginWriteEpdPartNumber_R3@12
- 16292 __imp__BeginWriteEpdPartNumber_R3@12
- 1630E _BeginWriteEpdRevision_R3@12
- 1630E __imp__BeginWriteEpdRevision_R3@12
- 16388 _BeginWriteEpdSerialNumber@12
- 16388 __imp__BeginWriteEpdSerialNumber@12
- 16402 _BeginWriteEventLogLevel_R3@12
- 16402 __imp__BeginWriteEventLogLevel_R3@12
- 1647E _BeginWriteFactoryCalDate@12
- 1647E __imp__BeginWriteFactoryCalDate@12
- 164F8 _BeginWriteFemSerialNumber_R3@12
- 164F8 __imp__BeginWriteFemSerialNumber_R3@12
- 16576 _BeginWriteGainableFlag_R3@12
- 16576 __imp__BeginWriteGainableFlag_R3@12
- 165F0 _BeginWriteGains_R3@16
- 165F0 __imp__BeginWriteGains_R3@16
- 16664 _BeginWriteGoldenFlag_R3@12
- 16664 __imp__BeginWriteGoldenFlag_R3@12
- 166DC _BeginWriteGraphicBitmap_R3@352
- 166DC __imp__BeginWriteGraphicBitmap_R3@352
- 16758 _BeginWriteLastCalibrationProcess_R3@20
- 16758 __imp__BeginWriteLastCalibrationProcess_R3@20
- 167DC _BeginWriteMarkNumber_R3@12
- 167DC __imp__BeginWriteMarkNumber_R3@12
- 16854 _BeginWriteModelName_R3@40
- 16854 __imp__BeginWriteModelName_R3@40
- 168CC _BeginWriteNotCalibratedFlag_R3@12
- 168CC __imp__BeginWriteNotCalibratedFlag_R3@12
- 1694C _BeginWriteOffModeBatteryTestInterval_R3@12
- 1694C __imp__BeginWriteOffModeBatteryTestInterval_R3@12
- 169D4 _BeginWriteOffModeDisplay_R3@16
- 169D4 __imp__BeginWriteOffModeDisplay_R3@16
- 16A50 _BeginWritePcbPartNumber_R3@12
- 16A50 __imp__BeginWritePcbPartNumber_R3@12
- 16ACC _BeginWritePcbRevision_R3@12
- 16ACC __imp__BeginWritePcbRevision_R3@12
- 16B46 _BeginWritePcbSerialNumber_R3@12
- 16B46 __imp__BeginWritePcbSerialNumber_R3@12
- 16BC4 _BeginWritePulseModeEnable_R3@12
- 16BC4 __imp__BeginWritePulseModeEnable_R3@12
- 16C42 _BeginWritePulseModeIndustrial_R3@12
- 16C42 __imp__BeginWritePulseModeIndustrial_R3@12
- 16CC4 _BeginWritePulseModeThreshold_R3@12
- 16CC4 __imp__BeginWritePulseModeThreshold_R3@12
- 16D44 _BeginWritePulsedModeOverrangeThreshold_R3@12
- 16D44 __imp__BeginWritePulsedModeOverrangeThreshold_R3@12
- 16DCE _BeginWriteQuickAccessDisplays_R3@16
- 16DCE __imp__BeginWriteQuickAccessDisplays_R3@16
- 16E50 _BeginWriteRTC_R3@12
- 16E50 __imp__BeginWriteRTC_R3@12
- 16EC2 _BeginWriteRateOffPercentage@16
- 16EC2 __imp__BeginWriteRateOffPercentage@16
- 16F3E _BeginWriteReturnForReadTime@12
- 16F3E __imp__BeginWriteReturnForReadTime@12
- 16FBA _BeginWriteScratchPad@20
- 16FBA __imp__BeginWriteScratchPad@20
- 17030 _BeginWriteSelfTestInterval@12
- 17030 __imp__BeginWriteSelfTestInterval@12
- 170AC _BeginWriteSensitivities_R2@32
- 170AC __imp__BeginWriteSensitivities_R2@32
- 17128 _BeginWriteSensitivities_R3@16
- 17128 __imp__BeginWriteSensitivities_R3@16
- 171A4 _BeginWriteStayTime_R3@12
- 171A4 __imp__BeginWriteStayTime_R3@12
- 1721A _BeginWriteSwitchOnFromButton_R3@12
- 1721A __imp__BeginWriteSwitchOnFromButton_R3@12
- 1729A _BeginWriteTaskDatabaseId_R3@24
- 1729A __imp__BeginWriteTaskDatabaseId_R3@24
- 17316 _BeginWriteTaskId_R3@76
- 17316 __imp__BeginWriteTaskId_R3@76
- 1738A _BeginWriteTelemetryAdvConfig_R3@12
- 1738A __imp__BeginWriteTelemetryAdvConfig_R3@12
- 1740A _BeginWriteTelemetryAdvContent_R3@16
- 1740A __imp__BeginWriteTelemetryAdvContent_R3@16
- 1748C _BeginWriteTelemetryCxnConfig_R3@12
- 1748C __imp__BeginWriteTelemetryCxnConfig_R3@12
- 1750C _BeginWriteTelemetryEnable_R3@16
- 1750C __imp__BeginWriteTelemetryEnable_R3@16
- 1758A _BeginWriteTelemetryMode_R2@12
- 1758A __imp__BeginWriteTelemetryMode_R2@12
- 17606 _BeginWriteTelemetryReportInterval_R3@12
- 17606 __imp__BeginWriteTelemetryReportInterval_R3@12
- 1768C _BeginWriteTelemetryTxPower_R3@16
- 1768C __imp__BeginWriteTelemetryTxPower_R3@16
- 1770A _BeginWriteTotalDoses@16
- 1770A __imp__BeginWriteTotalDoses@16
- 17780 _BeginWriteTriggeredDoses_R3@16
- 17780 __imp__BeginWriteTriggeredDoses_R3@16
- 177FC _BeginWriteWearerDatabaseId_R3@24
- 177FC __imp__BeginWriteWearerDatabaseId_R3@24
- 1787A _BeginWriteWearerId@76
- 1787A __imp__BeginWriteWearerId@76
- 178EE _BeginWriteZoneControlMap@16
- 178EE __imp__BeginWriteZoneControlMap@16
- 17968 _CleanUpReadDoseProfile@4
- 17968 __imp__CleanUpReadDoseProfile@4
- 179DE _CleanUpReadEventLog@4
- 179DE __imp__CleanUpReadEventLog@4
- 17A52 _CloseReader@4
- 17A52 __imp__CloseReader@4
- 17ABE _Commit@4
- 17ABE __imp__Commit@4
- 17B24 _Connect@20
- 17B24 __imp__Connect@20
- 17B8C _CreateReaderInterface@0
- 17B8C __imp__CreateReaderInterface@0
- 17C02 _DestroyReaderInterface@4
- 17C02 __imp__DestroyReaderInterface@4
- 17C78 _Disconnect@4
- 17C78 __imp__Disconnect@4
- 17CE2 _DisconnectAndNotify@12
- 17CE2 __imp__DisconnectAndNotify@12
- 17D56 _EndClearAllStatus@8
- 17D56 __imp__EndClearAllStatus@8
- 17DC8 _EndClearDose@8
- 17DC8 __imp__EndClearDose@8
- 17E34 _EndClearDoseProfile_R3@8
- 17E34 __imp__EndClearDoseProfile_R3@8
- 17EAA _EndClearEEPROM_R3@8
- 17EAA __imp__EndClearEEPROM_R3@8
- 17F1C _EndClearFaultStatus@8
- 17F1C __imp__EndClearFaultStatus@8
- 17F90 _EndClearGraphic_R3@8
- 17F90 __imp__EndClearGraphic_R3@8
- 18002 _EndClearLatchedAlarms@8
- 18002 __imp__EndClearLatchedAlarms@8
- 18078 _EndClearPeakRates@8
- 18078 __imp__EndClearPeakRates@8
- 180EA _EndClearScratchpad@8
- 180EA __imp__EndClearScratchpad@8
- 1815C _EndClearTotalDose@8
- 1815C __imp__EndClearTotalDose@8
- 181CE _EndClearWearerOrTaskId_R3@8
- 181CE __imp__EndClearWearerOrTaskId_R3@8
- 18248 _EndDeissueEPD@8
- 18248 __imp__EndDeissueEPD@8
- 182B6 _EndEnableCovertMode_R3@8
- 182B6 __imp__EndEnableCovertMode_R3@8
- 1832C _EndEnableDeepSleep_R3@8
- 1832C __imp__EndEnableDeepSleep_R3@8
- 183A2 _EndEnableManufacturerLockout_R3@8
- 183A2 __imp__EndEnableManufacturerLockout_R3@8
- 18422 _EndEnableProtectedSession_R3@8
- 18422 __imp__EndEnableProtectedSession_R3@8
- 1849E _EndEnableResponderMode_R3@8
- 1849E __imp__EndEnableResponderMode_R3@8
- 18518 _EndEpdOnOff@8
- 18518 __imp__EndEpdOnOff@8
- 18584 _EndInitiateFirmwareUpdate_R3@8
- 18584 __imp__EndInitiateFirmwareUpdate_R3@8
- 18600 _EndIssueEPD@8
- 18600 __imp__EndIssueEPD@8
- 1866C _EndReadAccessPermissionsForLevel_R3@20
- 1866C __imp__EndReadAccessPermissionsForLevel_R3@20
- 186F0 _EndReadAlarmConfiguration@20
- 186F0 __imp__EndReadAlarmConfiguration@20
- 1876A _EndReadAlarmConfigurationLock_R3@20
- 1876A __imp__EndReadAlarmConfigurationLock_R3@20
- 187EC _EndReadAlarmConfiguration_R3@20
- 187EC __imp__EndReadAlarmConfiguration_R3@20
- 1886A _EndReadAlarmThresholds@12
- 1886A __imp__EndReadAlarmThresholds@12
- 188E2 _EndReadBacklightBrightness_R3@12
- 188E2 __imp__EndReadBacklightBrightness_R3@12
- 18960 _EndReadBacklightEnable_R3@12
- 18960 __imp__EndReadBacklightEnable_R3@12
- 189DA _EndReadBacklightPeriod_R3@12
- 189DA __imp__EndReadBacklightPeriod_R3@12
- 18A54 _EndReadBaselineCounts@24
- 18A54 __imp__EndReadBaselineCounts@24
- 18ACA _EndReadBatteryCriticalTiming_R3@16
- 18ACA __imp__EndReadBatteryCriticalTiming_R3@16
- 18B4A _EndReadBatteryLowThreshold@16
- 18B4A __imp__EndReadBatteryLowThreshold@16
- 18BC6 _EndReadBatteryTestInterval@12
- 18BC6 __imp__EndReadBatteryTestInterval@12
- 18C42 _EndReadBatteryTypeFitted_R3@12
- 18C42 __imp__EndReadBatteryTypeFitted_R3@12
- 18CBE _EndReadBatteryTypeOverride_R3@12
- 18CBE __imp__EndReadBatteryTypeOverride_R3@12
- 18D3C _EndReadCalDueDate@12
- 18D3C __imp__EndReadCalDueDate@12
- 18DAE _EndReadCalDueDate_R3@12
- 18DAE __imp__EndReadCalDueDate_R3@12
- 18E24 _EndReadCalReference_R3@12
- 18E24 __imp__EndReadCalReference_R3@12
- 18E9C _EndReadCalibrationData_R2@48
- 18E9C __imp__EndReadCalibrationData_R2@48
- 18F16 _EndReadCalibrationFacility_R3@12
- 18F16 __imp__EndReadCalibrationFacility_R3@12
- 18F94 _EndReadCapabilities@12
- 18F94 __imp__EndReadCapabilities@12
- 19008 _EndReadChirpEnable_R3@12
- 19008 __imp__EndReadChirpEnable_R3@12
- 1907E _EndReadChirpSensitivity@12
- 1907E __imp__EndReadChirpSensitivity@12
- 190F6 _EndReadCounts@28
- 190F6 __imp__EndReadCounts@28
- 19164 _EndReadCurrentAccessLevel@12
- 19164 __imp__EndReadCurrentAccessLevel@12
- 191DE _EndReadDeadTimeFactors_R3@20
- 191DE __imp__EndReadDeadTimeFactors_R3@20
- 19258 _EndReadDebugRegister_R3@16
- 19258 __imp__EndReadDebugRegister_R3@16
- 192D0 _EndReadDetectorTestLimits_R3@20
- 192D0 __imp__EndReadDetectorTestLimits_R3@20
- 1934E _EndReadDetectorThresholdLimits_R3@20
- 1934E __imp__EndReadDetectorThresholdLimits_R3@20
- 193D0 _EndReadDetectorThresholds@20
- 193D0 __imp__EndReadDetectorThresholds@20
- 1944A _EndReadDetectorThresholds_R3@20
- 1944A __imp__EndReadDetectorThresholds_R3@20
- 194C8 _EndReadDisplayCapability_R3@24
- 194C8 __imp__EndReadDisplayCapability_R3@24
- 19544 _EndReadDisplayEnablePermissions_R3@24
- 19544 __imp__EndReadDisplayEnablePermissions_R3@24
- 195C8 _EndReadDisplayEnables_R3@20
- 195C8 __imp__EndReadDisplayEnables_R3@20
- 19642 _EndReadDisplayOptions@12
- 19642 __imp__EndReadDisplayOptions@12
- 196B8 _EndReadDisplayOptionsLock_R3@12
- 196B8 __imp__EndReadDisplayOptionsLock_R3@12
- 19736 _EndReadDisplayTimeout@12
- 19736 __imp__EndReadDisplayTimeout@12
- 197AC _EndReadDoseProfileByIndex_R3@24
- 197AC __imp__EndReadDoseProfileByIndex_R3@24
- 1982A _EndReadDoseProfileByTime@16
- 1982A __imp__EndReadDoseProfileByTime@16
- 198A4 _EndReadDoseProfileConfiguration_R3@12
- 198A4 __imp__EndReadDoseProfileConfiguration_R3@12
- 19928 _EndReadDoseProfileInterval@12
- 19928 __imp__EndReadDoseProfileInterval@12
- 199A4 _EndReadDoseSaveInterval_R3@12
- 199A4 __imp__EndReadDoseSaveInterval_R3@12
- 19A20 _EndReadDoses@24
- 19A20 __imp__EndReadDoses@24
- 19A8E _EndReadEEProm@24
- 19A8E __imp__EndReadEEProm@24
- 19AFC _EndReadEpdIdentities@36
- 19AFC __imp__EndReadEpdIdentities@36
- 19B72 _EndReadEpdPartNumber_R3@12
- 19B72 __imp__EndReadEpdPartNumber_R3@12
- 19BEA _EndReadEpdRevision_R3@12
- 19BEA __imp__EndReadEpdRevision_R3@12
- 19C60 _EndReadEpdSerialNum@12
- 19C60 __imp__EndReadEpdSerialNum@12
- 19CD4 _EndReadEpdType@12
- 19CD4 __imp__EndReadEpdType@12
- 19D44 _EndReadEventLogLevel_R3@12
- 19D44 __imp__EndReadEventLogLevel_R3@12
- 19DBC _EndReadEventsByIndex@16
- 19DBC __imp__EndReadEventsByIndex@16
- 19E32 _EndReadFactoryCalDate@12
- 19E32 __imp__EndReadFactoryCalDate@12
- 19EA8 _EndReadFemSerialNum_R3@12
- 19EA8 __imp__EndReadFemSerialNum_R3@12
- 19F20 _EndReadFirmwarePartNumber_R3@12
- 19F20 __imp__EndReadFirmwarePartNumber_R3@12
- 19F9E _EndReadFirmwareVersion@12
- 19F9E __imp__EndReadFirmwareVersion@12
- 1A016 _EndReadFlashTestCounts_R3@24
- 1A016 __imp__EndReadFlashTestCounts_R3@24
- 1A090 _EndReadFpgaVersion_R3@16
- 1A090 __imp__EndReadFpgaVersion_R3@16
- 1A106 _EndReadGains@20
- 1A106 __imp__EndReadGains@20
- 1A174 _EndReadGains_R3@20
- 1A174 __imp__EndReadGains_R3@20
- 1A1E4 _EndReadGraphicData_R3@12
- 1A1E4 __imp__EndReadGraphicData_R3@12
- 1A25A _EndReadGraphicSize_R3@12
- 1A25A __imp__EndReadGraphicSize_R3@12
- 1A2D0 _EndReadLastCalibrationProcess_R3@12
- 1A2D0 __imp__EndReadLastCalibrationProcess_R3@12
- 1A352 _EndReadMarkNumber@12
- 1A352 __imp__EndReadMarkNumber@12
- 1A3C4 _EndReadMeasurandIds_R3@20
- 1A3C4 __imp__EndReadMeasurandIds_R3@20
- 1A43C _EndReadModelName_R3@12
- 1A43C __imp__EndReadModelName_R3@12
- 1A4B0 _EndReadOffModeBatteryTestInterval_R3@12
- 1A4B0 __imp__EndReadOffModeBatteryTestInterval_R3@12
- 1A536 _EndReadOffModeDisplay_R3@16
- 1A536 __imp__EndReadOffModeDisplay_R3@16
- 1A5B0 _EndReadPcbPartNumber_R3@12
- 1A5B0 __imp__EndReadPcbPartNumber_R3@12
- 1A628 _EndReadPcbRevision_R3@12
- 1A628 __imp__EndReadPcbRevision_R3@12
- 1A69E _EndReadPcbSerialNum_R3@12
- 1A69E __imp__EndReadPcbSerialNum_R3@12
- 1A716 _EndReadPeakRates@20
- 1A716 __imp__EndReadPeakRates@20
- 1A788 _EndReadPulseModeEnable_R3@12
- 1A788 __imp__EndReadPulseModeEnable_R3@12
- 1A802 _EndReadPulseModeIndustrial_R3@12
- 1A802 __imp__EndReadPulseModeIndustrial_R3@12
- 1A880 _EndReadPulseModeThreshold_R3@12
- 1A880 __imp__EndReadPulseModeThreshold_R3@12
- 1A8FE _EndReadPulsedModeOverrangeThreshold_R3@12
- 1A8FE __imp__EndReadPulsedModeOverrangeThreshold_R3@12
- 1A986 _EndReadQualityData@12
- 1A986 __imp__EndReadQualityData@12
- 1A9FA _EndReadQuickAccessDisplays_R3@20
- 1A9FA __imp__EndReadQuickAccessDisplays_R3@20
- 1AA78 _EndReadRTC@12
- 1AA78 __imp__EndReadRTC@12
- 1AAE4 _EndReadRadioFirmwareVersion_R3@12
- 1AAE4 __imp__EndReadRadioFirmwareVersion_R3@12
- 1AB64 _EndReadRateOffPercentage@20
- 1AB64 __imp__EndReadRateOffPercentage@20
- 1ABDE _EndReadRates@24
- 1ABDE __imp__EndReadRates@24
- 1AC4C _EndReadResponderTriggerUtc_R3@12
- 1AC4C __imp__EndReadResponderTriggerUtc_R3@12
- 1ACCA _EndReadReturnForReadTime@12
- 1ACCA __imp__EndReadReturnForReadTime@12
- 1AD44 _EndReadRunTime_R3@12
- 1AD44 __imp__EndReadRunTime_R3@12
- 1ADB6 _EndReadScratchpad@24
- 1ADB6 __imp__EndReadScratchpad@24
- 1AE28 _EndReadScratchpadSize@12
- 1AE28 __imp__EndReadScratchpadSize@12
- 1AE9E _EndReadSelfTestInterval@12
- 1AE9E __imp__EndReadSelfTestInterval@12
- 1AF16 _EndReadSensitivities@20
- 1AF16 __imp__EndReadSensitivities@20
- 1AF8C _EndReadSensitivities_R3@20
- 1AF8C __imp__EndReadSensitivities_R3@20
- 1B004 _EndReadSnapshotAlarmThresholds_R3@12
- 1B004 __imp__EndReadSnapshotAlarmThresholds_R3@12
- 1B086 _EndReadSnapshotCounters_R3@12
- 1B086 __imp__EndReadSnapshotCounters_R3@12
- 1B102 _EndReadSnapshotMeasurements_R3@12
- 1B102 __imp__EndReadSnapshotMeasurements_R3@12
- 1B182 _EndReadSnapshotSummary_R3@12
- 1B182 __imp__EndReadSnapshotSummary_R3@12
- 1B1FC _EndReadStatus@12
- 1B1FC __imp__EndReadStatus@12
- 1B26A _EndReadStayTime_R3@12
- 1B26A __imp__EndReadStayTime_R3@12
- 1B2DE _EndReadSwitchOnFromButton_R3@12
- 1B2DE __imp__EndReadSwitchOnFromButton_R3@12
- 1B35C _EndReadTaskDatabaseId_R3@12
- 1B35C __imp__EndReadTaskDatabaseId_R3@12
- 1B3D6 _EndReadTaskId_R3@12
- 1B3D6 __imp__EndReadTaskId_R3@12
- 1B448 _EndReadTelemetryAdvConfig_R3@12
- 1B448 __imp__EndReadTelemetryAdvConfig_R3@12
- 1B4C6 _EndReadTelemetryAdvContent_R3@16
- 1B4C6 __imp__EndReadTelemetryAdvContent_R3@16
- 1B544 _EndReadTelemetryCxnConfig_R3@12
- 1B544 __imp__EndReadTelemetryCxnConfig_R3@12
- 1B5C2 _EndReadTelemetryEnable_R3@16
- 1B5C2 __imp__EndReadTelemetryEnable_R3@16
- 1B63C _EndReadTelemetryMode_R2@12
- 1B63C __imp__EndReadTelemetryMode_R2@12
- 1B6B4 _EndReadTelemetryReportInterval_R3@12
- 1B6B4 __imp__EndReadTelemetryReportInterval_R3@12
- 1B736 _EndReadTelemetryTxPower_R3@16
- 1B736 __imp__EndReadTelemetryTxPower_R3@16
- 1B7B2 _EndReadTotalDoses@24
- 1B7B2 __imp__EndReadTotalDoses@24
- 1B824 _EndReadTriggeredDoses_R3@24
- 1B824 __imp__EndReadTriggeredDoses_R3@24
- 1B89E _EndReadVoltages@20
- 1B89E __imp__EndReadVoltages@20
- 1B90E _EndReadWearerDatabaseId_R3@12
- 1B90E __imp__EndReadWearerDatabaseId_R3@12
- 1B98A _EndReadWearerId@12
- 1B98A __imp__EndReadWearerId@12
- 1B9FA _EndReadZoneAccessPermitted@12
- 1B9FA __imp__EndReadZoneAccessPermitted@12
- 1BA76 _EndReadZoneControlMap@12
- 1BA76 __imp__EndReadZoneControlMap@12
- 1BAEC _EndSetBaselineCounters@8
- 1BAEC __imp__EndSetBaselineCounters@8
- 1BB62 _EndStartDetectorTest@8
- 1BB62 __imp__EndStartDetectorTest@8
- 1BBD6 _EndTriggerBacklight_R3@8
- 1BBD6 __imp__EndTriggerBacklight_R3@8
- 1BC4C _EndTriggerResponderMode_R3@8
- 1BC4C __imp__EndTriggerResponderMode_R3@8
- 1BCC6 _EndValidateEpdOwnerKey_R3@12
- 1BCC6 __imp__EndValidateEpdOwnerKey_R3@12
- 1BD40 _EndWriteAccessKey@8
- 1BD40 __imp__EndWriteAccessKey@8
- 1BDB2 _EndWriteAccessLevel@8
- 1BDB2 __imp__EndWriteAccessLevel@8
- 1BE26 _EndWriteAccessPermissionsForLevel_R3@8
- 1BE26 __imp__EndWriteAccessPermissionsForLevel_R3@8
- 1BEAA _EndWriteAlarmConfigurationLock_R3@8
- 1BEAA __imp__EndWriteAlarmConfigurationLock_R3@8
- 1BF2C _EndWriteAlarmConfiguration_R3@8
- 1BF2C __imp__EndWriteAlarmConfiguration_R3@8
- 1BFAA _EndWriteAlarmThresholds@8
- 1BFAA __imp__EndWriteAlarmThresholds@8
- 1C022 _EndWriteBacklightBrightness_R3@8
- 1C022 __imp__EndWriteBacklightBrightness_R3@8
- 1C0A0 _EndWriteBacklightEnable_R3@8
- 1C0A0 __imp__EndWriteBacklightEnable_R3@8
- 1C11A _EndWriteBacklightPeriod_R3@8
- 1C11A __imp__EndWriteBacklightPeriod_R3@8
- 1C194 _EndWriteBatteryCriticalTiming_R3@8
- 1C194 __imp__EndWriteBatteryCriticalTiming_R3@8
- 1C214 _EndWriteBatteryLowThreshold@8
- 1C214 __imp__EndWriteBatteryLowThreshold@8
- 1C290 _EndWriteBatteryTestInterval@8
- 1C290 __imp__EndWriteBatteryTestInterval@8
- 1C30C _EndWriteBatteryTypeOverride_R3@8
- 1C30C __imp__EndWriteBatteryTypeOverride_R3@8
- 1C38A _EndWriteCalDueDate@8
- 1C38A __imp__EndWriteCalDueDate@8
- 1C3FC _EndWriteCalDueDate_R3@8
- 1C3FC __imp__EndWriteCalDueDate_R3@8
- 1C472 _EndWriteCalReference_R3@8
- 1C472 __imp__EndWriteCalReference_R3@8
- 1C4EA _EndWriteCalibrationFacility_R3@8
- 1C4EA __imp__EndWriteCalibrationFacility_R3@8
- 1C568 _EndWriteCapabilities_R3@8
- 1C568 __imp__EndWriteCapabilities_R3@8
- 1C5E0 _EndWriteChirpEnable_R3@8
- 1C5E0 __imp__EndWriteChirpEnable_R3@8
- 1C656 _EndWriteChirpSensitivity@8
- 1C656 __imp__EndWriteChirpSensitivity@8
- 1C6CE _EndWriteClearDoseOnSwitchOn@8
- 1C6CE __imp__EndWriteClearDoseOnSwitchOn@8
- 1C74A _EndWriteDeadTimeFactors_R3@8
- 1C74A __imp__EndWriteDeadTimeFactors_R3@8
- 1C7C4 _EndWriteDebugRegister_R3@8
- 1C7C4 __imp__EndWriteDebugRegister_R3@8
- 1C83C _EndWriteDetectorTestLimits_R3@8
- 1C83C __imp__EndWriteDetectorTestLimits_R3@8
- 1C8BA _EndWriteDetectorThresholds_R2@8
- 1C8BA __imp__EndWriteDetectorThresholds_R2@8
- 1C938 _EndWriteDetectorThresholds_R3@8
- 1C938 __imp__EndWriteDetectorThresholds_R3@8
- 1C9B6 _EndWriteDisplayEnablePermissions_R3@8
- 1C9B6 __imp__EndWriteDisplayEnablePermissions_R3@8
- 1CA3A _EndWriteDisplayEnables_R3@8
- 1CA3A __imp__EndWriteDisplayEnables_R3@8
- 1CAB4 _EndWriteDisplayOptions@8
- 1CAB4 __imp__EndWriteDisplayOptions@8
- 1CB2A _EndWriteDisplayOptionsLock_R3@8
- 1CB2A __imp__EndWriteDisplayOptionsLock_R3@8
- 1CBA8 _EndWriteDisplayTimeout@8
- 1CBA8 __imp__EndWriteDisplayTimeout@8
- 1CC1E _EndWriteDoseProfileDoseIncrement_R3@8
- 1CC1E __imp__EndWriteDoseProfileDoseIncrement_R3@8
- 1CCA2 _EndWriteDoseProfileInterval@8
- 1CCA2 __imp__EndWriteDoseProfileInterval@8
- 1CD1E _EndWriteDoseProfileMeasurands_R3@8
- 1CD1E __imp__EndWriteDoseProfileMeasurands_R3@8
- 1CD9E _EndWriteDoseSaveInterval_R3@8
- 1CD9E __imp__EndWriteDoseSaveInterval_R3@8
- 1CE1A _EndWriteDoseWritableFlag@8
- 1CE1A __imp__EndWriteDoseWritableFlag@8
- 1CE92 _EndWriteDoses@8
- 1CE92 __imp__EndWriteDoses@8
- 1CF00 _EndWriteEEProm@8
- 1CF00 __imp__EndWriteEEProm@8
- 1CF6E _EndWriteEpdPartNumber_R3@8
- 1CF6E __imp__EndWriteEpdPartNumber_R3@8
- 1CFE6 _EndWriteEpdRevision_R3@8
- 1CFE6 __imp__EndWriteEpdRevision_R3@8
- 1D05C _EndWriteEpdSerialNumber@8
- 1D05C __imp__EndWriteEpdSerialNumber@8
- 1D0D4 _EndWriteEventLogLevel_R3@8
- 1D0D4 __imp__EndWriteEventLogLevel_R3@8
- 1D14C _EndWriteFactoryCalDate@8
- 1D14C __imp__EndWriteFactoryCalDate@8
- 1D1C2 _EndWriteFemSerialNumber_R3@8
- 1D1C2 __imp__EndWriteFemSerialNumber_R3@8
- 1D23C _EndWriteGainableFlag_R3@8
- 1D23C __imp__EndWriteGainableFlag_R3@8
- 1D2B4 _EndWriteGains_R3@8
- 1D2B4 __imp__EndWriteGains_R3@8
- 1D324 _EndWriteGoldenFlag_R3@8
- 1D324 __imp__EndWriteGoldenFlag_R3@8
- 1D39A _EndWriteGraphicBitmap_R3@8
- 1D39A __imp__EndWriteGraphicBitmap_R3@8
- 1D412 _EndWriteLastCalibrationProcess_R3@8
- 1D412 __imp__EndWriteLastCalibrationProcess_R3@8
- 1D494 _EndWriteMarkNumber_R3@8
- 1D494 __imp__EndWriteMarkNumber_R3@8
- 1D50A _EndWriteModelName_R3@8
- 1D50A __imp__EndWriteModelName_R3@8
- 1D57E _EndWriteNotCalibratedFlag_R3@8
- 1D57E __imp__EndWriteNotCalibratedFlag_R3@8
- 1D5FA _EndWriteOffModeBatteryTestInterval_R3@8
- 1D5FA __imp__EndWriteOffModeBatteryTestInterval_R3@8
- 1D680 _EndWriteOffModeDisplay_R3@8
- 1D680 __imp__EndWriteOffModeDisplay_R3@8
- 1D6FA _EndWritePcbPartNumber_R3@8
- 1D6FA __imp__EndWritePcbPartNumber_R3@8
- 1D772 _EndWritePcbRevision_R3@8
- 1D772 __imp__EndWritePcbRevision_R3@8
- 1D7E8 _EndWritePcbSerialNumber_R3@8
- 1D7E8 __imp__EndWritePcbSerialNumber_R3@8
- 1D862 _EndWritePulseModeEnable_R3@8
- 1D862 __imp__EndWritePulseModeEnable_R3@8
- 1D8DC _EndWritePulseModeIndustrial_R3@8
- 1D8DC __imp__EndWritePulseModeIndustrial_R3@8
- 1D95A _EndWritePulseModeThreshold_R3@8
- 1D95A __imp__EndWritePulseModeThreshold_R3@8
- 1D9D8 _EndWritePulsedModeOverrangeThreshold_R3@8
- 1D9D8 __imp__EndWritePulsedModeOverrangeThreshold_R3@8
- 1DA60 _EndWriteQuickAccessDisplays_R3@8
- 1DA60 __imp__EndWriteQuickAccessDisplays_R3@8
- 1DADE _EndWriteRTC_R3@8
- 1DADE __imp__EndWriteRTC_R3@8
- 1DB4C _EndWriteRateOffPercentage@8
- 1DB4C __imp__EndWriteRateOffPercentage@8
- 1DBC6 _EndWriteReturnForReadTime@8
- 1DBC6 __imp__EndWriteReturnForReadTime@8
- 1DC40 _EndWriteScratchpad@8
- 1DC40 __imp__EndWriteScratchpad@8
- 1DCB2 _EndWriteSelfTestInterval@8
- 1DCB2 __imp__EndWriteSelfTestInterval@8
- 1DD2A _EndWriteSensitivities_R2@8
- 1DD2A __imp__EndWriteSensitivities_R2@8
- 1DDA2 _EndWriteSensitivities_R3@8
- 1DDA2 __imp__EndWriteSensitivities_R3@8
- 1DE1A _EndWriteStayTime_R3@8
- 1DE1A __imp__EndWriteStayTime_R3@8
- 1DE8E _EndWriteSwitchOnFromButton_R3@8
- 1DE8E __imp__EndWriteSwitchOnFromButton_R3@8
- 1DF0C _EndWriteTaskDatabaseId_R3@8
- 1DF0C __imp__EndWriteTaskDatabaseId_R3@8
- 1DF86 _EndWriteTaskId_R3@8
- 1DF86 __imp__EndWriteTaskId_R3@8
- 1DFF8 _EndWriteTelemetryAdvConfig_R3@8
- 1DFF8 __imp__EndWriteTelemetryAdvConfig_R3@8
- 1E076 _EndWriteTelemetryAdvContent_R3@8
- 1E076 __imp__EndWriteTelemetryAdvContent_R3@8
- 1E0F4 _EndWriteTelemetryCxnConfig_R3@8
- 1E0F4 __imp__EndWriteTelemetryCxnConfig_R3@8
- 1E172 _EndWriteTelemetryEnable_R3@8
- 1E172 __imp__EndWriteTelemetryEnable_R3@8
- 1E1EC _EndWriteTelemetryMode_R2@8
- 1E1EC __imp__EndWriteTelemetryMode_R2@8
- 1E264 _EndWriteTelemetryReportInterval_R3@8
- 1E264 __imp__EndWriteTelemetryReportInterval_R3@8
- 1E2E6 _EndWriteTelemetryTxPower_R3@8
- 1E2E6 __imp__EndWriteTelemetryTxPower_R3@8
- 1E362 _EndWriteTotalDoses@8
- 1E362 __imp__EndWriteTotalDoses@8
- 1E3D4 _EndWriteTriggeredDoses_R3@8
- 1E3D4 __imp__EndWriteTriggeredDoses_R3@8
- 1E44E _EndWriteWearerDatabaseId_R3@8
- 1E44E __imp__EndWriteWearerDatabaseId_R3@8
- 1E4CA _EndWriteWearerId@8
- 1E4CA __imp__EndWriteWearerId@8
- 1E53A _EndWriteZoneControlMap@8
- 1E53A __imp__EndWriteZoneControlMap@8
- 1E5B0 _GetDiscoveredEpds@16
- 1E5B0 __imp__GetDiscoveredEpds@16
- 1E622 _GetDiscoveryTimeout@8
- 1E622 __imp__GetDiscoveryTimeout@8
- 1E696 _GetDiscoveryTimeslots@8
- 1E696 __imp__GetDiscoveryTimeslots@8
- 1E70C _GetDllLogLevel@8
- 1E70C __imp__GetDllLogLevel@8
- 1E77A _GetErrorCode@0
- 1E77A __imp__GetErrorCode@0
- 1E7E6 _GetMultipleDiscoveryMode@8
- 1E7E6 __imp__GetMultipleDiscoveryMode@8
- 1E85E _GetResponseTimeout@8
- 1E85E __imp__GetResponseTimeout@8
- 1E8D0 _GetRetryCount@8
- 1E8D0 __imp__GetRetryCount@8
- 1E93E _OpenReader@8
- 1E93E __imp__OpenReader@8
- 1E9A8 _SetConnectCallback@8
- 1E9A8 __imp__SetConnectCallback@8
- 1EA1A _SetDisconnectCallback@8
- 1EA1A __imp__SetDisconnectCallback@8
- 1EA90 _SetDiscoveryCacheTimeout@8
- 1EA90 __imp__SetDiscoveryCacheTimeout@8
- 1EB08 _SetDiscoveryTimeslots@8
- 1EB08 __imp__SetDiscoveryTimeslots@8
- 1EB7E _SetDllLogLevel@8
- 1EB7E __imp__SetDllLogLevel@8
- 1EBEC _SetMultipleDiscoveryMode@8
- 1EBEC __imp__SetMultipleDiscoveryMode@8
- 1EC64 _SetRemovedCallback@8
- 1EC64 __imp__SetRemovedCallback@8
- 1ECD6 _SetResponseTimeout@8
- 1ECD6 __imp__SetResponseTimeout@8
- 1ED48 _SetRetryCount@8
- 1ED48 __imp__SetRetryCount@8
- 1EDB6 _StartDiscovery@8
- 1EDB6 __imp__StartDiscovery@8
- 1EE24 _StopDiscovery@4
- 1EE24 __imp__StopDiscovery@4
-
-Archive member name at 8506: /
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 84CC size
-correct header end
-
- 475 offsets
-
- 1 10A0E
- 2 10C38
- 3 10D6E
- 4 10EC0
- 5 10F2E
- 6 10FA2
- 7 11010
- 8 11088
- 9 110FC
- A 11172
- B 111E8
- C 11260
- D 112D4
- E 1134A
- F 113BE
- 10 1143A
- 11 114AA
- 12 11524
- 13 1159C
- 14 1161E
- 15 1169E
- 16 1171A
- 17 11788
- 18 11806
- 19 11874
- 1A 118FA
- 1B 11976
- 1C 119F8
- 1D 11A78
- 1E 11AF2
- 1F 11B72
- 20 11BEE
- 21 11C6A
- 22 11CE2
- 23 11D64
- 24 11DE2
- 25 11E5E
- 26 11EDC
- 27 11F5C
- 28 11FD0
- 29 12046
- 2A 120BE
- 2B 1213A
- 2C 121BA
- 2D 12230
- 2E 122A8
- 2F 12322
- 30 12392
- 31 1240E
- 32 1248A
- 33 12504
- 34 12584
- 35 12608
- 36 12684
- 37 12704
- 38 12782
- 39 12808
- 3A 12884
- 3B 128FC
- 3C 1297A
- 3D 129F2
- 3E 12A72
- 3F 12AEE
- 40 12B72
- 41 12BEE
- 42 12C6A
- 43 12CDA
- 44 12D4A
- 45 12DC0
- 46 12E3A
- 47 12EB2
- 48 12F28
- 49 12F98
- 4A 13012
- 4B 1308A
- 4C 13102
- 4D 1317A
- 4E 131F8
- 4F 13270
- 50 132EC
- 51 13364
- 52 133D4
- 53 13446
- 54 134BE
- 55 13536
- 56 135B8
- 57 1362C
- 58 136A4
- 59 1371A
- 5A 137A0
- 5B 1381A
- 5C 13894
- 5D 1390C
- 5E 13984
- 5F 139F8
- 60 13A74
- 61 13AF4
- 62 13B72
- 63 13BFA
- 64 13C6E
- 65 13CEE
- 66 13D5A
- 67 13DDA
- 68 13E56
- 69 13EC6
- 6A 13F46
- 6B 13FC0
- 6C 14034
- 6D 140A8
- 6E 14120
- 6F 1419A
- 70 14212
- 71 1428C
- 72 14310
- 73 1438E
- 74 14410
- 75 1448C
- 76 144FC
- 77 14570
- 78 145EE
- 79 14668
- 7A 146DC
- 7B 1475C
- 7C 147DC
- 7D 1485A
- 7E 148D6
- 7F 14950
- 80 149D4
- 81 14A52
- 82 14AC6
- 83 14B42
- 84 14BB4
- 85 14C30
- 86 14CA2
- 87 14D20
- 88 14D98
- 89 14E10
- 8A 14E86
- 8B 14EFE
- 8C 14F7A
- 8D 14FF6
- 8E 1506A
- 8F 150E0
- 90 15168
- 91 151EC
- 92 1526C
- 93 152E6
- 94 15368
- 95 153E6
- 96 15464
- 97 154E8
- 98 15566
- 99 155E4
- 9A 15666
- 9B 156DC
- 9C 15754
- 9D 157CE
- 9E 15850
- 9F 158CA
- A0 15944
- A1 159C0
- A2 15A3E
- A3 15ABC
- A4 15B38
- A5 15BB8
- A6 15C38
- A7 15CB8
- A8 15D3E
- A9 15DBA
- AA 15E34
- AB 15EB4
- AC 15F2E
- AD 15FB4
- AE 16032
- AF 160B6
- B0 16134
- B1 161B0
- B2 16220
- B3 16292
- B4 1630E
- B5 16388
- B6 16402
- B7 1647E
- B8 164F8
- B9 16576
- BA 165F0
- BB 16664
- BC 166DC
- BD 16758
- BE 167DC
- BF 16854
- C0 168CC
- C1 1694C
- C2 169D4
- C3 16A50
- C4 16ACC
- C5 16B46
- C6 16BC4
- C7 16C42
- C8 16CC4
- C9 16D44
- CA 16DCE
- CB 16E50
- CC 16EC2
- CD 16F3E
- CE 16FBA
- CF 17030
- D0 170AC
- D1 17128
- D2 171A4
- D3 1721A
- D4 1729A
- D5 17316
- D6 1738A
- D7 1740A
- D8 1748C
- D9 1750C
- DA 1758A
- DB 17606
- DC 1768C
- DD 1770A
- DE 17780
- DF 177FC
- E0 1787A
- E1 178EE
- E2 17968
- E3 179DE
- E4 17A52
- E5 17ABE
- E6 17B24
- E7 17B8C
- E8 17C02
- E9 17C78
- EA 17CE2
- EB 17D56
- EC 17DC8
- ED 17E34
- EE 17EAA
- EF 17F1C
- F0 17F90
- F1 18002
- F2 18078
- F3 180EA
- F4 1815C
- F5 181CE
- F6 18248
- F7 182B6
- F8 1832C
- F9 183A2
- FA 18422
- FB 1849E
- FC 18518
- FD 18584
- FE 18600
- FF 1866C
- 100 186F0
- 101 1876A
- 102 187EC
- 103 1886A
- 104 188E2
- 105 18960
- 106 189DA
- 107 18A54
- 108 18ACA
- 109 18B4A
- 10A 18BC6
- 10B 18C42
- 10C 18CBE
- 10D 18D3C
- 10E 18DAE
- 10F 18E24
- 110 18E9C
- 111 18F16
- 112 18F94
- 113 19008
- 114 1907E
- 115 190F6
- 116 19164
- 117 191DE
- 118 19258
- 119 192D0
- 11A 1934E
- 11B 193D0
- 11C 1944A
- 11D 194C8
- 11E 19544
- 11F 195C8
- 120 19642
- 121 196B8
- 122 19736
- 123 197AC
- 124 1982A
- 125 198A4
- 126 19928
- 127 199A4
- 128 19A20
- 129 19A8E
- 12A 19AFC
- 12B 19B72
- 12C 19BEA
- 12D 19C60
- 12E 19CD4
- 12F 19D44
- 130 19DBC
- 131 19E32
- 132 19EA8
- 133 19F20
- 134 19F9E
- 135 1A016
- 136 1A090
- 137 1A106
- 138 1A174
- 139 1A1E4
- 13A 1A25A
- 13B 1A2D0
- 13C 1A352
- 13D 1A3C4
- 13E 1A43C
- 13F 1A4B0
- 140 1A536
- 141 1A5B0
- 142 1A628
- 143 1A69E
- 144 1A716
- 145 1A788
- 146 1A802
- 147 1A880
- 148 1A8FE
- 149 1A986
- 14A 1A9FA
- 14B 1AA78
- 14C 1AAE4
- 14D 1AB64
- 14E 1ABDE
- 14F 1AC4C
- 150 1ACCA
- 151 1AD44
- 152 1ADB6
- 153 1AE28
- 154 1AE9E
- 155 1AF16
- 156 1AF8C
- 157 1B004
- 158 1B086
- 159 1B102
- 15A 1B182
- 15B 1B1FC
- 15C 1B26A
- 15D 1B2DE
- 15E 1B35C
- 15F 1B3D6
- 160 1B448
- 161 1B4C6
- 162 1B544
- 163 1B5C2
- 164 1B63C
- 165 1B6B4
- 166 1B736
- 167 1B7B2
- 168 1B824
- 169 1B89E
- 16A 1B90E
- 16B 1B98A
- 16C 1B9FA
- 16D 1BA76
- 16E 1BAEC
- 16F 1BB62
- 170 1BBD6
- 171 1BC4C
- 172 1BCC6
- 173 1BD40
- 174 1BDB2
- 175 1BE26
- 176 1BEAA
- 177 1BF2C
- 178 1BFAA
- 179 1C022
- 17A 1C0A0
- 17B 1C11A
- 17C 1C194
- 17D 1C214
- 17E 1C290
- 17F 1C30C
- 180 1C38A
- 181 1C3FC
- 182 1C472
- 183 1C4EA
- 184 1C568
- 185 1C5E0
- 186 1C656
- 187 1C6CE
- 188 1C74A
- 189 1C7C4
- 18A 1C83C
- 18B 1C8BA
- 18C 1C938
- 18D 1C9B6
- 18E 1CA3A
- 18F 1CAB4
- 190 1CB2A
- 191 1CBA8
- 192 1CC1E
- 193 1CCA2
- 194 1CD1E
- 195 1CD9E
- 196 1CE1A
- 197 1CE92
- 198 1CF00
- 199 1CF6E
- 19A 1CFE6
- 19B 1D05C
- 19C 1D0D4
- 19D 1D14C
- 19E 1D1C2
- 19F 1D23C
- 1A0 1D2B4
- 1A1 1D324
- 1A2 1D39A
- 1A3 1D412
- 1A4 1D494
- 1A5 1D50A
- 1A6 1D57E
- 1A7 1D5FA
- 1A8 1D680
- 1A9 1D6FA
- 1AA 1D772
- 1AB 1D7E8
- 1AC 1D862
- 1AD 1D8DC
- 1AE 1D95A
- 1AF 1D9D8
- 1B0 1DA60
- 1B1 1DADE
- 1B2 1DB4C
- 1B3 1DBC6
- 1B4 1DC40
- 1B5 1DCB2
- 1B6 1DD2A
- 1B7 1DDA2
- 1B8 1DE1A
- 1B9 1DE8E
- 1BA 1DF0C
- 1BB 1DF86
- 1BC 1DFF8
- 1BD 1E076
- 1BE 1E0F4
- 1BF 1E172
- 1C0 1E1EC
- 1C1 1E264
- 1C2 1E2E6
- 1C3 1E362
- 1C4 1E3D4
- 1C5 1E44E
- 1C6 1E4CA
- 1C7 1E53A
- 1C8 1E5B0
- 1C9 1E622
- 1CA 1E696
- 1CB 1E70C
- 1CC 1E77A
- 1CD 1E7E6
- 1CE 1E85E
- 1CF 1E8D0
- 1D0 1E93E
- 1D1 1E9A8
- 1D2 1EA1A
- 1D3 1EA90
- 1D4 1EB08
- 1D5 1EB7E
- 1D6 1EBEC
- 1D7 1EC64
- 1D8 1ECD6
- 1D9 1ED48
- 1DA 1EDB6
- 1DB 1EE24
-
- 947 public symbols
-
- 4 _AwaitRemoval@20
- 5 _BeginClearAllStatus@8
- 6 _BeginClearDose@8
- 7 _BeginClearDoseProfile_R3@8
- 8 _BeginClearEEPROM_R3@8
- 9 _BeginClearFaultStatus@8
- A _BeginClearGraphic_R3@12
- B _BeginClearLatchedAlarms@8
- C _BeginClearPeakRates@8
- D _BeginClearScratchPad@12
- E _BeginClearTotalDose@8
- F _BeginClearWearerOrTaskId_R3@16
- 10 _BeginDeissueEPD@8
- 11 _BeginEnableCovertMode_R3@12
- 12 _BeginEnableDeepSleep_R3@12
- 13 _BeginEnableManufacturerLockout_R3@12
- 14 _BeginEnableProtectedSession_R3@12
- 15 _BeginEnableResponderMode_R3@12
- 16 _BeginEpdOnOff@12
- 17 _BeginInitiateFirmwareUpdate_R3@8
- 18 _BeginIssueEPD@8
- 19 _BeginReadAccessPermissionsForLevel_R3@12
- 1A _BeginReadAlarmConfiguration@16
- 1B _BeginReadAlarmConfigurationLock_R3@8
- 1C _BeginReadAlarmConfiguration_R3@16
- 1D _BeginReadAlarmThresholds@20
- 1E _BeginReadBacklightBrightness_R3@8
- 1F _BeginReadBacklightEnable_R3@8
- 20 _BeginReadBacklightPeriod_R3@8
- 21 _BeginReadBaselineCounts@8
- 22 _BeginReadBatteryCriticalTiming_R3@8
- 23 _BeginReadBatteryLowThreshold@12
- 24 _BeginReadBatteryTestInterval@8
- 25 _BeginReadBatteryTypeFitted_R3@8
- 26 _BeginReadBatteryTypeOverride_R3@8
- 27 _BeginReadCalDueDate@8
- 28 _BeginReadCalDueDate_R3@8
- 29 _BeginReadCalReference_R3@8
- 2A _BeginReadCalibrationData_R2@8
- 2B _BeginReadCalibrationFacility_R3@8
- 2C _BeginReadCapabilities@8
- 2D _BeginReadChirpEnable_R3@8
- 2E _BeginReadChirpSensitivity@8
- 2F _BeginReadCounts@16
- 30 _BeginReadCurrentAccessLevel@8
- 31 _BeginReadDeadTimeFactors_R3@16
- 32 _BeginReadDebugRegister_R3@12
- 33 _BeginReadDetectorTestLimits_R3@16
- 34 _BeginReadDetectorThresholdLimits_R3@16
- 35 _BeginReadDetectorThresholds@16
- 36 _BeginReadDetectorThresholds_R3@16
- 37 _BeginReadDisplayCapability_R3@12
- 38 _BeginReadDisplayEnablePermissions_R3@12
- 39 _BeginReadDisplayEnables_R3@16
- 3A _BeginReadDisplayOptions@8
- 3B _BeginReadDisplayOptionsLock_R3@8
- 3C _BeginReadDisplayTimeout@8
- 3D _BeginReadDoseProfileByIndex_R3@16
- 3E _BeginReadDoseProfileByTime@16
- 3F _BeginReadDoseProfileConfiguration_R3@8
- 40 _BeginReadDoseProfileInterval@8
- 41 _BeginReadDoseSaveInterval_R3@8
- 42 _BeginReadDoses@16
- 43 _BeginReadEEProm@16
- 44 _BeginReadEpdIdentities@8
- 45 _BeginReadEpdPartNumber_R3@8
- 46 _BeginReadEpdRevision_R3@8
- 47 _BeginReadEpdSerialNum@8
- 48 _BeginReadEpdType@8
- 49 _BeginReadEventLogLevel_R3@8
- 4A _BeginReadEventsByIndex@16
- 4B _BeginReadFactoryCalDate@8
- 4C _BeginReadFemSerialNum_R3@8
- 4D _BeginReadFirmwarePartNumber_R3@8
- 4E _BeginReadFirmwareVersion@8
- 4F _BeginReadFlashTestCounts_R3@16
- 50 _BeginReadFpgaVersion_R3@8
- 51 _BeginReadGains@16
- 52 _BeginReadGains_R3@16
- 53 _BeginReadGraphicData_R3@12
- 54 _BeginReadGraphicSize_R3@12
- 55 _BeginReadLastCalibrationProcess_R3@8
- 56 _BeginReadMarkNumber@8
- 57 _BeginReadMeasurandIds_R3@8
- 58 _BeginReadModelName_R3@8
- 59 _BeginReadOffModeBatteryTestInterval_R3@8
- 5A _BeginReadOffModeDisplay_R3@8
- 5B _BeginReadPcbPartNumber_R3@8
- 5C _BeginReadPcbRevision_R3@8
- 5D _BeginReadPcbSerialNum_R3@8
- 5E _BeginReadPeakRates@16
- 5F _BeginReadPulseModeEnable_R3@8
- 60 _BeginReadPulseModeIndustrial_R3@8
- 61 _BeginReadPulseModeThreshold_R3@8
- 62 _BeginReadPulsedModeOverrangeThreshold_R3@8
- 63 _BeginReadQualityData@8
- 64 _BeginReadQuickAccessDisplays_R3@16
- 65 _BeginReadRTC@8
- 66 _BeginReadRadioFirmwareVersion_R3@8
- 67 _BeginReadRateOffPercentage@16
- 68 _BeginReadRates@16
- 69 _BeginReadResponderTriggerUtc_R3@8
- 6A _BeginReadReturnForReadTime@8
- 6B _BeginReadRunTime_R3@8
- 6C _BeginReadScratchPad@16
- 6D _BeginReadScratchpadSize@8
- 6E _BeginReadSelfTestInterval@8
- 6F _BeginReadSensitivities@16
- 70 _BeginReadSensitivities_R3@16
- 71 _BeginReadSnapshotAlarmThresholds_R3@12
- 72 _BeginReadSnapshotCounters_R3@12
- 73 _BeginReadSnapshotMeasurements_R3@12
- 74 _BeginReadSnapshotSummary_R3@12
- 75 _BeginReadStatus@8
- 76 _BeginReadStayTime_R3@8
- 77 _BeginReadSwitchOnFromButton_R3@8
- 78 _BeginReadTaskDatabaseId_R3@8
- 79 _BeginReadTaskId_R3@12
- 7A _BeginReadTelemetryAdvConfig_R3@12
- 7B _BeginReadTelemetryAdvContent_R3@12
- 7C _BeginReadTelemetryCxnConfig_R3@8
- 7D _BeginReadTelemetryEnable_R3@12
- 7E _BeginReadTelemetryMode_R2@8
- 7F _BeginReadTelemetryReportInterval_R3@8
- 80 _BeginReadTelemetryTxPower_R3@12
- 81 _BeginReadTotalDoses@16
- 82 _BeginReadTriggeredDoses_R3@16
- 83 _BeginReadVoltages@8
- 84 _BeginReadWearerDatabaseId_R3@8
- 85 _BeginReadWearerId@12
- 86 _BeginReadZoneAccessPermitted@12
- 87 _BeginReadZoneControlMap@8
- 88 _BeginSetBaselineCounters@8
- 89 _BeginStartDetectorTest@8
- 8A _BeginTriggerBacklight_R3@8
- 8B _BeginTriggerResponderMode_R3@8
- 8C _BeginValidateEpdOwnerKey_R3@12
- 8D _BeginWriteAccessKey@20
- 8E _BeginWriteAccessLevel@20
- 8F _BeginWriteAccessPermissionsForLevel_R3@20
- 90 _BeginWriteAlarmConfigurationLock_R3@16
- 91 _BeginWriteAlarmConfiguration_R3@16
- 92 _BeginWriteAlarmThresholds@20
- 93 _BeginWriteBacklightBrightness_R3@12
- 94 _BeginWriteBacklightEnable_R3@12
- 95 _BeginWriteBacklightPeriod_R3@12
- 96 _BeginWriteBatteryCriticalTiming_R3@16
- 97 _BeginWriteBatteryLowThreshold@16
- 98 _BeginWriteBatteryTestInterval@12
- 99 _BeginWriteBatteryTypeOverride_R3@12
- 9A _BeginWriteCalDueDate@12
- 9B _BeginWriteCalDueDate_R3@12
- 9C _BeginWriteCalReference_R3@12
- 9D _BeginWriteCalibrationFacility_R3@16
- 9E _BeginWriteCapabilities_R3@12
- 9F _BeginWriteChirpEnable_R3@12
- A0 _BeginWriteChirpSensitivity@12
- A1 _BeginWriteClearDoseOnSwitchOn@12
- A2 _BeginWriteDeadTimeFactors_R3@16
- A3 _BeginWriteDebugRegister_R3@16
- A4 _BeginWriteDetectorTestLimits_R3@16
- A5 _BeginWriteDetectorThresholds_R2@24
- A6 _BeginWriteDetectorThresholds_R3@16
- A7 _BeginWriteDisplayEnablePermissions_R3@20
- A8 _BeginWriteDisplayEnables_R3@16
- A9 _BeginWriteDisplayOptions@16
- AA _BeginWriteDisplayOptionsLock_R3@16
- AB _BeginWriteDisplayTimeout@12
- AC _BeginWriteDoseProfileDoseIncrement_R3@12
- AD _BeginWriteDoseProfileInterval@12
- AE _BeginWriteDoseProfileMeasurands_R3@16
- AF _BeginWriteDoseSaveInterval_R3@12
- B0 _BeginWriteDoseWritableFlag@12
- B1 _BeginWriteDoses@16
- B2 _BeginWriteEEProm@20
- B3 _BeginWriteEpdPartNumber_R3@12
- B4 _BeginWriteEpdRevision_R3@12
- B5 _BeginWriteEpdSerialNumber@12
- B6 _BeginWriteEventLogLevel_R3@12
- B7 _BeginWriteFactoryCalDate@12
- B8 _BeginWriteFemSerialNumber_R3@12
- B9 _BeginWriteGainableFlag_R3@12
- BA _BeginWriteGains_R3@16
- BB _BeginWriteGoldenFlag_R3@12
- BC _BeginWriteGraphicBitmap_R3@352
- BD _BeginWriteLastCalibrationProcess_R3@20
- BE _BeginWriteMarkNumber_R3@12
- BF _BeginWriteModelName_R3@40
- C0 _BeginWriteNotCalibratedFlag_R3@12
- C1 _BeginWriteOffModeBatteryTestInterval_R3@12
- C2 _BeginWriteOffModeDisplay_R3@16
- C3 _BeginWritePcbPartNumber_R3@12
- C4 _BeginWritePcbRevision_R3@12
- C5 _BeginWritePcbSerialNumber_R3@12
- C6 _BeginWritePulseModeEnable_R3@12
- C7 _BeginWritePulseModeIndustrial_R3@12
- C8 _BeginWritePulseModeThreshold_R3@12
- C9 _BeginWritePulsedModeOverrangeThreshold_R3@12
- CA _BeginWriteQuickAccessDisplays_R3@16
- CB _BeginWriteRTC_R3@12
- CC _BeginWriteRateOffPercentage@16
- CD _BeginWriteReturnForReadTime@12
- CE _BeginWriteScratchPad@20
- CF _BeginWriteSelfTestInterval@12
- D0 _BeginWriteSensitivities_R2@32
- D1 _BeginWriteSensitivities_R3@16
- D2 _BeginWriteStayTime_R3@12
- D3 _BeginWriteSwitchOnFromButton_R3@12
- D4 _BeginWriteTaskDatabaseId_R3@24
- D5 _BeginWriteTaskId_R3@76
- D6 _BeginWriteTelemetryAdvConfig_R3@12
- D7 _BeginWriteTelemetryAdvContent_R3@16
- D8 _BeginWriteTelemetryCxnConfig_R3@12
- D9 _BeginWriteTelemetryEnable_R3@16
- DA _BeginWriteTelemetryMode_R2@12
- DB _BeginWriteTelemetryReportInterval_R3@12
- DC _BeginWriteTelemetryTxPower_R3@16
- DD _BeginWriteTotalDoses@16
- DE _BeginWriteTriggeredDoses_R3@16
- DF _BeginWriteWearerDatabaseId_R3@24
- E0 _BeginWriteWearerId@76
- E1 _BeginWriteZoneControlMap@16
- E2 _CleanUpReadDoseProfile@4
- E3 _CleanUpReadEventLog@4
- E4 _CloseReader@4
- E5 _Commit@4
- E6 _Connect@20
- E7 _CreateReaderInterface@0
- E8 _DestroyReaderInterface@4
- E9 _Disconnect@4
- EA _DisconnectAndNotify@12
- EB _EndClearAllStatus@8
- EC _EndClearDose@8
- ED _EndClearDoseProfile_R3@8
- EE _EndClearEEPROM_R3@8
- EF _EndClearFaultStatus@8
- F0 _EndClearGraphic_R3@8
- F1 _EndClearLatchedAlarms@8
- F2 _EndClearPeakRates@8
- F3 _EndClearScratchpad@8
- F4 _EndClearTotalDose@8
- F5 _EndClearWearerOrTaskId_R3@8
- F6 _EndDeissueEPD@8
- F7 _EndEnableCovertMode_R3@8
- F8 _EndEnableDeepSleep_R3@8
- F9 _EndEnableManufacturerLockout_R3@8
- FA _EndEnableProtectedSession_R3@8
- FB _EndEnableResponderMode_R3@8
- FC _EndEpdOnOff@8
- FD _EndInitiateFirmwareUpdate_R3@8
- FE _EndIssueEPD@8
- FF _EndReadAccessPermissionsForLevel_R3@20
- 100 _EndReadAlarmConfiguration@20
- 101 _EndReadAlarmConfigurationLock_R3@20
- 102 _EndReadAlarmConfiguration_R3@20
- 103 _EndReadAlarmThresholds@12
- 104 _EndReadBacklightBrightness_R3@12
- 105 _EndReadBacklightEnable_R3@12
- 106 _EndReadBacklightPeriod_R3@12
- 107 _EndReadBaselineCounts@24
- 108 _EndReadBatteryCriticalTiming_R3@16
- 109 _EndReadBatteryLowThreshold@16
- 10A _EndReadBatteryTestInterval@12
- 10B _EndReadBatteryTypeFitted_R3@12
- 10C _EndReadBatteryTypeOverride_R3@12
- 10D _EndReadCalDueDate@12
- 10E _EndReadCalDueDate_R3@12
- 10F _EndReadCalReference_R3@12
- 110 _EndReadCalibrationData_R2@48
- 111 _EndReadCalibrationFacility_R3@12
- 112 _EndReadCapabilities@12
- 113 _EndReadChirpEnable_R3@12
- 114 _EndReadChirpSensitivity@12
- 115 _EndReadCounts@28
- 116 _EndReadCurrentAccessLevel@12
- 117 _EndReadDeadTimeFactors_R3@20
- 118 _EndReadDebugRegister_R3@16
- 119 _EndReadDetectorTestLimits_R3@20
- 11A _EndReadDetectorThresholdLimits_R3@20
- 11B _EndReadDetectorThresholds@20
- 11C _EndReadDetectorThresholds_R3@20
- 11D _EndReadDisplayCapability_R3@24
- 11E _EndReadDisplayEnablePermissions_R3@24
- 11F _EndReadDisplayEnables_R3@20
- 120 _EndReadDisplayOptions@12
- 121 _EndReadDisplayOptionsLock_R3@12
- 122 _EndReadDisplayTimeout@12
- 123 _EndReadDoseProfileByIndex_R3@24
- 124 _EndReadDoseProfileByTime@16
- 125 _EndReadDoseProfileConfiguration_R3@12
- 126 _EndReadDoseProfileInterval@12
- 127 _EndReadDoseSaveInterval_R3@12
- 128 _EndReadDoses@24
- 129 _EndReadEEProm@24
- 12A _EndReadEpdIdentities@36
- 12B _EndReadEpdPartNumber_R3@12
- 12C _EndReadEpdRevision_R3@12
- 12D _EndReadEpdSerialNum@12
- 12E _EndReadEpdType@12
- 12F _EndReadEventLogLevel_R3@12
- 130 _EndReadEventsByIndex@16
- 131 _EndReadFactoryCalDate@12
- 132 _EndReadFemSerialNum_R3@12
- 133 _EndReadFirmwarePartNumber_R3@12
- 134 _EndReadFirmwareVersion@12
- 135 _EndReadFlashTestCounts_R3@24
- 136 _EndReadFpgaVersion_R3@16
- 137 _EndReadGains@20
- 138 _EndReadGains_R3@20
- 139 _EndReadGraphicData_R3@12
- 13A _EndReadGraphicSize_R3@12
- 13B _EndReadLastCalibrationProcess_R3@12
- 13C _EndReadMarkNumber@12
- 13D _EndReadMeasurandIds_R3@20
- 13E _EndReadModelName_R3@12
- 13F _EndReadOffModeBatteryTestInterval_R3@12
- 140 _EndReadOffModeDisplay_R3@16
- 141 _EndReadPcbPartNumber_R3@12
- 142 _EndReadPcbRevision_R3@12
- 143 _EndReadPcbSerialNum_R3@12
- 144 _EndReadPeakRates@20
- 145 _EndReadPulseModeEnable_R3@12
- 146 _EndReadPulseModeIndustrial_R3@12
- 147 _EndReadPulseModeThreshold_R3@12
- 148 _EndReadPulsedModeOverrangeThreshold_R3@12
- 149 _EndReadQualityData@12
- 14A _EndReadQuickAccessDisplays_R3@20
- 14B _EndReadRTC@12
- 14C _EndReadRadioFirmwareVersion_R3@12
- 14D _EndReadRateOffPercentage@20
- 14E _EndReadRates@24
- 14F _EndReadResponderTriggerUtc_R3@12
- 150 _EndReadReturnForReadTime@12
- 151 _EndReadRunTime_R3@12
- 152 _EndReadScratchpad@24
- 153 _EndReadScratchpadSize@12
- 154 _EndReadSelfTestInterval@12
- 155 _EndReadSensitivities@20
- 156 _EndReadSensitivities_R3@20
- 157 _EndReadSnapshotAlarmThresholds_R3@12
- 158 _EndReadSnapshotCounters_R3@12
- 159 _EndReadSnapshotMeasurements_R3@12
- 15A _EndReadSnapshotSummary_R3@12
- 15B _EndReadStatus@12
- 15C _EndReadStayTime_R3@12
- 15D _EndReadSwitchOnFromButton_R3@12
- 15E _EndReadTaskDatabaseId_R3@12
- 15F _EndReadTaskId_R3@12
- 160 _EndReadTelemetryAdvConfig_R3@12
- 161 _EndReadTelemetryAdvContent_R3@16
- 162 _EndReadTelemetryCxnConfig_R3@12
- 163 _EndReadTelemetryEnable_R3@16
- 164 _EndReadTelemetryMode_R2@12
- 165 _EndReadTelemetryReportInterval_R3@12
- 166 _EndReadTelemetryTxPower_R3@16
- 167 _EndReadTotalDoses@24
- 168 _EndReadTriggeredDoses_R3@24
- 169 _EndReadVoltages@20
- 16A _EndReadWearerDatabaseId_R3@12
- 16B _EndReadWearerId@12
- 16C _EndReadZoneAccessPermitted@12
- 16D _EndReadZoneControlMap@12
- 16E _EndSetBaselineCounters@8
- 16F _EndStartDetectorTest@8
- 170 _EndTriggerBacklight_R3@8
- 171 _EndTriggerResponderMode_R3@8
- 172 _EndValidateEpdOwnerKey_R3@12
- 173 _EndWriteAccessKey@8
- 174 _EndWriteAccessLevel@8
- 175 _EndWriteAccessPermissionsForLevel_R3@8
- 176 _EndWriteAlarmConfigurationLock_R3@8
- 177 _EndWriteAlarmConfiguration_R3@8
- 178 _EndWriteAlarmThresholds@8
- 179 _EndWriteBacklightBrightness_R3@8
- 17A _EndWriteBacklightEnable_R3@8
- 17B _EndWriteBacklightPeriod_R3@8
- 17C _EndWriteBatteryCriticalTiming_R3@8
- 17D _EndWriteBatteryLowThreshold@8
- 17E _EndWriteBatteryTestInterval@8
- 17F _EndWriteBatteryTypeOverride_R3@8
- 180 _EndWriteCalDueDate@8
- 181 _EndWriteCalDueDate_R3@8
- 182 _EndWriteCalReference_R3@8
- 183 _EndWriteCalibrationFacility_R3@8
- 184 _EndWriteCapabilities_R3@8
- 185 _EndWriteChirpEnable_R3@8
- 186 _EndWriteChirpSensitivity@8
- 187 _EndWriteClearDoseOnSwitchOn@8
- 188 _EndWriteDeadTimeFactors_R3@8
- 189 _EndWriteDebugRegister_R3@8
- 18A _EndWriteDetectorTestLimits_R3@8
- 18B _EndWriteDetectorThresholds_R2@8
- 18C _EndWriteDetectorThresholds_R3@8
- 18D _EndWriteDisplayEnablePermissions_R3@8
- 18E _EndWriteDisplayEnables_R3@8
- 18F _EndWriteDisplayOptions@8
- 190 _EndWriteDisplayOptionsLock_R3@8
- 191 _EndWriteDisplayTimeout@8
- 192 _EndWriteDoseProfileDoseIncrement_R3@8
- 193 _EndWriteDoseProfileInterval@8
- 194 _EndWriteDoseProfileMeasurands_R3@8
- 195 _EndWriteDoseSaveInterval_R3@8
- 196 _EndWriteDoseWritableFlag@8
- 197 _EndWriteDoses@8
- 198 _EndWriteEEProm@8
- 199 _EndWriteEpdPartNumber_R3@8
- 19A _EndWriteEpdRevision_R3@8
- 19B _EndWriteEpdSerialNumber@8
- 19C _EndWriteEventLogLevel_R3@8
- 19D _EndWriteFactoryCalDate@8
- 19E _EndWriteFemSerialNumber_R3@8
- 19F _EndWriteGainableFlag_R3@8
- 1A0 _EndWriteGains_R3@8
- 1A1 _EndWriteGoldenFlag_R3@8
- 1A2 _EndWriteGraphicBitmap_R3@8
- 1A3 _EndWriteLastCalibrationProcess_R3@8
- 1A4 _EndWriteMarkNumber_R3@8
- 1A5 _EndWriteModelName_R3@8
- 1A6 _EndWriteNotCalibratedFlag_R3@8
- 1A7 _EndWriteOffModeBatteryTestInterval_R3@8
- 1A8 _EndWriteOffModeDisplay_R3@8
- 1A9 _EndWritePcbPartNumber_R3@8
- 1AA _EndWritePcbRevision_R3@8
- 1AB _EndWritePcbSerialNumber_R3@8
- 1AC _EndWritePulseModeEnable_R3@8
- 1AD _EndWritePulseModeIndustrial_R3@8
- 1AE _EndWritePulseModeThreshold_R3@8
- 1AF _EndWritePulsedModeOverrangeThreshold_R3@8
- 1B0 _EndWriteQuickAccessDisplays_R3@8
- 1B1 _EndWriteRTC_R3@8
- 1B2 _EndWriteRateOffPercentage@8
- 1B3 _EndWriteReturnForReadTime@8
- 1B4 _EndWriteScratchpad@8
- 1B5 _EndWriteSelfTestInterval@8
- 1B6 _EndWriteSensitivities_R2@8
- 1B7 _EndWriteSensitivities_R3@8
- 1B8 _EndWriteStayTime_R3@8
- 1B9 _EndWriteSwitchOnFromButton_R3@8
- 1BA _EndWriteTaskDatabaseId_R3@8
- 1BB _EndWriteTaskId_R3@8
- 1BC _EndWriteTelemetryAdvConfig_R3@8
- 1BD _EndWriteTelemetryAdvContent_R3@8
- 1BE _EndWriteTelemetryCxnConfig_R3@8
- 1BF _EndWriteTelemetryEnable_R3@8
- 1C0 _EndWriteTelemetryMode_R2@8
- 1C1 _EndWriteTelemetryReportInterval_R3@8
- 1C2 _EndWriteTelemetryTxPower_R3@8
- 1C3 _EndWriteTotalDoses@8
- 1C4 _EndWriteTriggeredDoses_R3@8
- 1C5 _EndWriteWearerDatabaseId_R3@8
- 1C6 _EndWriteWearerId@8
- 1C7 _EndWriteZoneControlMap@8
- 1C8 _GetDiscoveredEpds@16
- 1C9 _GetDiscoveryTimeout@8
- 1CA _GetDiscoveryTimeslots@8
- 1CB _GetDllLogLevel@8
- 1CC _GetErrorCode@0
- 1CD _GetMultipleDiscoveryMode@8
- 1CE _GetResponseTimeout@8
- 1CF _GetRetryCount@8
- 1D0 _OpenReader@8
- 1D1 _SetConnectCallback@8
- 1D2 _SetDisconnectCallback@8
- 1D3 _SetDiscoveryCacheTimeout@8
- 1D4 _SetDiscoveryTimeslots@8
- 1D5 _SetDllLogLevel@8
- 1D6 _SetMultipleDiscoveryMode@8
- 1D7 _SetRemovedCallback@8
- 1D8 _SetResponseTimeout@8
- 1D9 _SetRetryCount@8
- 1DA _StartDiscovery@8
- 1DB _StopDiscovery@4
- 1 __IMPORT_DESCRIPTOR_reader3
- 2 __NULL_IMPORT_DESCRIPTOR
- 4 __imp__AwaitRemoval@20
- 5 __imp__BeginClearAllStatus@8
- 6 __imp__BeginClearDose@8
- 7 __imp__BeginClearDoseProfile_R3@8
- 8 __imp__BeginClearEEPROM_R3@8
- 9 __imp__BeginClearFaultStatus@8
- A __imp__BeginClearGraphic_R3@12
- B __imp__BeginClearLatchedAlarms@8
- C __imp__BeginClearPeakRates@8
- D __imp__BeginClearScratchPad@12
- E __imp__BeginClearTotalDose@8
- F __imp__BeginClearWearerOrTaskId_R3@16
- 10 __imp__BeginDeissueEPD@8
- 11 __imp__BeginEnableCovertMode_R3@12
- 12 __imp__BeginEnableDeepSleep_R3@12
- 13 __imp__BeginEnableManufacturerLockout_R3@12
- 14 __imp__BeginEnableProtectedSession_R3@12
- 15 __imp__BeginEnableResponderMode_R3@12
- 16 __imp__BeginEpdOnOff@12
- 17 __imp__BeginInitiateFirmwareUpdate_R3@8
- 18 __imp__BeginIssueEPD@8
- 19 __imp__BeginReadAccessPermissionsForLevel_R3@12
- 1A __imp__BeginReadAlarmConfiguration@16
- 1B __imp__BeginReadAlarmConfigurationLock_R3@8
- 1C __imp__BeginReadAlarmConfiguration_R3@16
- 1D __imp__BeginReadAlarmThresholds@20
- 1E __imp__BeginReadBacklightBrightness_R3@8
- 1F __imp__BeginReadBacklightEnable_R3@8
- 20 __imp__BeginReadBacklightPeriod_R3@8
- 21 __imp__BeginReadBaselineCounts@8
- 22 __imp__BeginReadBatteryCriticalTiming_R3@8
- 23 __imp__BeginReadBatteryLowThreshold@12
- 24 __imp__BeginReadBatteryTestInterval@8
- 25 __imp__BeginReadBatteryTypeFitted_R3@8
- 26 __imp__BeginReadBatteryTypeOverride_R3@8
- 27 __imp__BeginReadCalDueDate@8
- 28 __imp__BeginReadCalDueDate_R3@8
- 29 __imp__BeginReadCalReference_R3@8
- 2A __imp__BeginReadCalibrationData_R2@8
- 2B __imp__BeginReadCalibrationFacility_R3@8
- 2C __imp__BeginReadCapabilities@8
- 2D __imp__BeginReadChirpEnable_R3@8
- 2E __imp__BeginReadChirpSensitivity@8
- 2F __imp__BeginReadCounts@16
- 30 __imp__BeginReadCurrentAccessLevel@8
- 31 __imp__BeginReadDeadTimeFactors_R3@16
- 32 __imp__BeginReadDebugRegister_R3@12
- 33 __imp__BeginReadDetectorTestLimits_R3@16
- 34 __imp__BeginReadDetectorThresholdLimits_R3@16
- 35 __imp__BeginReadDetectorThresholds@16
- 36 __imp__BeginReadDetectorThresholds_R3@16
- 37 __imp__BeginReadDisplayCapability_R3@12
- 38 __imp__BeginReadDisplayEnablePermissions_R3@12
- 39 __imp__BeginReadDisplayEnables_R3@16
- 3A __imp__BeginReadDisplayOptions@8
- 3B __imp__BeginReadDisplayOptionsLock_R3@8
- 3C __imp__BeginReadDisplayTimeout@8
- 3D __imp__BeginReadDoseProfileByIndex_R3@16
- 3E __imp__BeginReadDoseProfileByTime@16
- 3F __imp__BeginReadDoseProfileConfiguration_R3@8
- 40 __imp__BeginReadDoseProfileInterval@8
- 41 __imp__BeginReadDoseSaveInterval_R3@8
- 42 __imp__BeginReadDoses@16
- 43 __imp__BeginReadEEProm@16
- 44 __imp__BeginReadEpdIdentities@8
- 45 __imp__BeginReadEpdPartNumber_R3@8
- 46 __imp__BeginReadEpdRevision_R3@8
- 47 __imp__BeginReadEpdSerialNum@8
- 48 __imp__BeginReadEpdType@8
- 49 __imp__BeginReadEventLogLevel_R3@8
- 4A __imp__BeginReadEventsByIndex@16
- 4B __imp__BeginReadFactoryCalDate@8
- 4C __imp__BeginReadFemSerialNum_R3@8
- 4D __imp__BeginReadFirmwarePartNumber_R3@8
- 4E __imp__BeginReadFirmwareVersion@8
- 4F __imp__BeginReadFlashTestCounts_R3@16
- 50 __imp__BeginReadFpgaVersion_R3@8
- 51 __imp__BeginReadGains@16
- 52 __imp__BeginReadGains_R3@16
- 53 __imp__BeginReadGraphicData_R3@12
- 54 __imp__BeginReadGraphicSize_R3@12
- 55 __imp__BeginReadLastCalibrationProcess_R3@8
- 56 __imp__BeginReadMarkNumber@8
- 57 __imp__BeginReadMeasurandIds_R3@8
- 58 __imp__BeginReadModelName_R3@8
- 59 __imp__BeginReadOffModeBatteryTestInterval_R3@8
- 5A __imp__BeginReadOffModeDisplay_R3@8
- 5B __imp__BeginReadPcbPartNumber_R3@8
- 5C __imp__BeginReadPcbRevision_R3@8
- 5D __imp__BeginReadPcbSerialNum_R3@8
- 5E __imp__BeginReadPeakRates@16
- 5F __imp__BeginReadPulseModeEnable_R3@8
- 60 __imp__BeginReadPulseModeIndustrial_R3@8
- 61 __imp__BeginReadPulseModeThreshold_R3@8
- 62 __imp__BeginReadPulsedModeOverrangeThreshold_R3@8
- 63 __imp__BeginReadQualityData@8
- 64 __imp__BeginReadQuickAccessDisplays_R3@16
- 65 __imp__BeginReadRTC@8
- 66 __imp__BeginReadRadioFirmwareVersion_R3@8
- 67 __imp__BeginReadRateOffPercentage@16
- 68 __imp__BeginReadRates@16
- 69 __imp__BeginReadResponderTriggerUtc_R3@8
- 6A __imp__BeginReadReturnForReadTime@8
- 6B __imp__BeginReadRunTime_R3@8
- 6C __imp__BeginReadScratchPad@16
- 6D __imp__BeginReadScratchpadSize@8
- 6E __imp__BeginReadSelfTestInterval@8
- 6F __imp__BeginReadSensitivities@16
- 70 __imp__BeginReadSensitivities_R3@16
- 71 __imp__BeginReadSnapshotAlarmThresholds_R3@12
- 72 __imp__BeginReadSnapshotCounters_R3@12
- 73 __imp__BeginReadSnapshotMeasurements_R3@12
- 74 __imp__BeginReadSnapshotSummary_R3@12
- 75 __imp__BeginReadStatus@8
- 76 __imp__BeginReadStayTime_R3@8
- 77 __imp__BeginReadSwitchOnFromButton_R3@8
- 78 __imp__BeginReadTaskDatabaseId_R3@8
- 79 __imp__BeginReadTaskId_R3@12
- 7A __imp__BeginReadTelemetryAdvConfig_R3@12
- 7B __imp__BeginReadTelemetryAdvContent_R3@12
- 7C __imp__BeginReadTelemetryCxnConfig_R3@8
- 7D __imp__BeginReadTelemetryEnable_R3@12
- 7E __imp__BeginReadTelemetryMode_R2@8
- 7F __imp__BeginReadTelemetryReportInterval_R3@8
- 80 __imp__BeginReadTelemetryTxPower_R3@12
- 81 __imp__BeginReadTotalDoses@16
- 82 __imp__BeginReadTriggeredDoses_R3@16
- 83 __imp__BeginReadVoltages@8
- 84 __imp__BeginReadWearerDatabaseId_R3@8
- 85 __imp__BeginReadWearerId@12
- 86 __imp__BeginReadZoneAccessPermitted@12
- 87 __imp__BeginReadZoneControlMap@8
- 88 __imp__BeginSetBaselineCounters@8
- 89 __imp__BeginStartDetectorTest@8
- 8A __imp__BeginTriggerBacklight_R3@8
- 8B __imp__BeginTriggerResponderMode_R3@8
- 8C __imp__BeginValidateEpdOwnerKey_R3@12
- 8D __imp__BeginWriteAccessKey@20
- 8E __imp__BeginWriteAccessLevel@20
- 8F __imp__BeginWriteAccessPermissionsForLevel_R3@20
- 90 __imp__BeginWriteAlarmConfigurationLock_R3@16
- 91 __imp__BeginWriteAlarmConfiguration_R3@16
- 92 __imp__BeginWriteAlarmThresholds@20
- 93 __imp__BeginWriteBacklightBrightness_R3@12
- 94 __imp__BeginWriteBacklightEnable_R3@12
- 95 __imp__BeginWriteBacklightPeriod_R3@12
- 96 __imp__BeginWriteBatteryCriticalTiming_R3@16
- 97 __imp__BeginWriteBatteryLowThreshold@16
- 98 __imp__BeginWriteBatteryTestInterval@12
- 99 __imp__BeginWriteBatteryTypeOverride_R3@12
- 9A __imp__BeginWriteCalDueDate@12
- 9B __imp__BeginWriteCalDueDate_R3@12
- 9C __imp__BeginWriteCalReference_R3@12
- 9D __imp__BeginWriteCalibrationFacility_R3@16
- 9E __imp__BeginWriteCapabilities_R3@12
- 9F __imp__BeginWriteChirpEnable_R3@12
- A0 __imp__BeginWriteChirpSensitivity@12
- A1 __imp__BeginWriteClearDoseOnSwitchOn@12
- A2 __imp__BeginWriteDeadTimeFactors_R3@16
- A3 __imp__BeginWriteDebugRegister_R3@16
- A4 __imp__BeginWriteDetectorTestLimits_R3@16
- A5 __imp__BeginWriteDetectorThresholds_R2@24
- A6 __imp__BeginWriteDetectorThresholds_R3@16
- A7 __imp__BeginWriteDisplayEnablePermissions_R3@20
- A8 __imp__BeginWriteDisplayEnables_R3@16
- A9 __imp__BeginWriteDisplayOptions@16
- AA __imp__BeginWriteDisplayOptionsLock_R3@16
- AB __imp__BeginWriteDisplayTimeout@12
- AC __imp__BeginWriteDoseProfileDoseIncrement_R3@12
- AD __imp__BeginWriteDoseProfileInterval@12
- AE __imp__BeginWriteDoseProfileMeasurands_R3@16
- AF __imp__BeginWriteDoseSaveInterval_R3@12
- B0 __imp__BeginWriteDoseWritableFlag@12
- B1 __imp__BeginWriteDoses@16
- B2 __imp__BeginWriteEEProm@20
- B3 __imp__BeginWriteEpdPartNumber_R3@12
- B4 __imp__BeginWriteEpdRevision_R3@12
- B5 __imp__BeginWriteEpdSerialNumber@12
- B6 __imp__BeginWriteEventLogLevel_R3@12
- B7 __imp__BeginWriteFactoryCalDate@12
- B8 __imp__BeginWriteFemSerialNumber_R3@12
- B9 __imp__BeginWriteGainableFlag_R3@12
- BA __imp__BeginWriteGains_R3@16
- BB __imp__BeginWriteGoldenFlag_R3@12
- BC __imp__BeginWriteGraphicBitmap_R3@352
- BD __imp__BeginWriteLastCalibrationProcess_R3@20
- BE __imp__BeginWriteMarkNumber_R3@12
- BF __imp__BeginWriteModelName_R3@40
- C0 __imp__BeginWriteNotCalibratedFlag_R3@12
- C1 __imp__BeginWriteOffModeBatteryTestInterval_R3@12
- C2 __imp__BeginWriteOffModeDisplay_R3@16
- C3 __imp__BeginWritePcbPartNumber_R3@12
- C4 __imp__BeginWritePcbRevision_R3@12
- C5 __imp__BeginWritePcbSerialNumber_R3@12
- C6 __imp__BeginWritePulseModeEnable_R3@12
- C7 __imp__BeginWritePulseModeIndustrial_R3@12
- C8 __imp__BeginWritePulseModeThreshold_R3@12
- C9 __imp__BeginWritePulsedModeOverrangeThreshold_R3@12
- CA __imp__BeginWriteQuickAccessDisplays_R3@16
- CB __imp__BeginWriteRTC_R3@12
- CC __imp__BeginWriteRateOffPercentage@16
- CD __imp__BeginWriteReturnForReadTime@12
- CE __imp__BeginWriteScratchPad@20
- CF __imp__BeginWriteSelfTestInterval@12
- D0 __imp__BeginWriteSensitivities_R2@32
- D1 __imp__BeginWriteSensitivities_R3@16
- D2 __imp__BeginWriteStayTime_R3@12
- D3 __imp__BeginWriteSwitchOnFromButton_R3@12
- D4 __imp__BeginWriteTaskDatabaseId_R3@24
- D5 __imp__BeginWriteTaskId_R3@76
- D6 __imp__BeginWriteTelemetryAdvConfig_R3@12
- D7 __imp__BeginWriteTelemetryAdvContent_R3@16
- D8 __imp__BeginWriteTelemetryCxnConfig_R3@12
- D9 __imp__BeginWriteTelemetryEnable_R3@16
- DA __imp__BeginWriteTelemetryMode_R2@12
- DB __imp__BeginWriteTelemetryReportInterval_R3@12
- DC __imp__BeginWriteTelemetryTxPower_R3@16
- DD __imp__BeginWriteTotalDoses@16
- DE __imp__BeginWriteTriggeredDoses_R3@16
- DF __imp__BeginWriteWearerDatabaseId_R3@24
- E0 __imp__BeginWriteWearerId@76
- E1 __imp__BeginWriteZoneControlMap@16
- E2 __imp__CleanUpReadDoseProfile@4
- E3 __imp__CleanUpReadEventLog@4
- E4 __imp__CloseReader@4
- E5 __imp__Commit@4
- E6 __imp__Connect@20
- E7 __imp__CreateReaderInterface@0
- E8 __imp__DestroyReaderInterface@4
- E9 __imp__Disconnect@4
- EA __imp__DisconnectAndNotify@12
- EB __imp__EndClearAllStatus@8
- EC __imp__EndClearDose@8
- ED __imp__EndClearDoseProfile_R3@8
- EE __imp__EndClearEEPROM_R3@8
- EF __imp__EndClearFaultStatus@8
- F0 __imp__EndClearGraphic_R3@8
- F1 __imp__EndClearLatchedAlarms@8
- F2 __imp__EndClearPeakRates@8
- F3 __imp__EndClearScratchpad@8
- F4 __imp__EndClearTotalDose@8
- F5 __imp__EndClearWearerOrTaskId_R3@8
- F6 __imp__EndDeissueEPD@8
- F7 __imp__EndEnableCovertMode_R3@8
- F8 __imp__EndEnableDeepSleep_R3@8
- F9 __imp__EndEnableManufacturerLockout_R3@8
- FA __imp__EndEnableProtectedSession_R3@8
- FB __imp__EndEnableResponderMode_R3@8
- FC __imp__EndEpdOnOff@8
- FD __imp__EndInitiateFirmwareUpdate_R3@8
- FE __imp__EndIssueEPD@8
- FF __imp__EndReadAccessPermissionsForLevel_R3@20
- 100 __imp__EndReadAlarmConfiguration@20
- 101 __imp__EndReadAlarmConfigurationLock_R3@20
- 102 __imp__EndReadAlarmConfiguration_R3@20
- 103 __imp__EndReadAlarmThresholds@12
- 104 __imp__EndReadBacklightBrightness_R3@12
- 105 __imp__EndReadBacklightEnable_R3@12
- 106 __imp__EndReadBacklightPeriod_R3@12
- 107 __imp__EndReadBaselineCounts@24
- 108 __imp__EndReadBatteryCriticalTiming_R3@16
- 109 __imp__EndReadBatteryLowThreshold@16
- 10A __imp__EndReadBatteryTestInterval@12
- 10B __imp__EndReadBatteryTypeFitted_R3@12
- 10C __imp__EndReadBatteryTypeOverride_R3@12
- 10D __imp__EndReadCalDueDate@12
- 10E __imp__EndReadCalDueDate_R3@12
- 10F __imp__EndReadCalReference_R3@12
- 110 __imp__EndReadCalibrationData_R2@48
- 111 __imp__EndReadCalibrationFacility_R3@12
- 112 __imp__EndReadCapabilities@12
- 113 __imp__EndReadChirpEnable_R3@12
- 114 __imp__EndReadChirpSensitivity@12
- 115 __imp__EndReadCounts@28
- 116 __imp__EndReadCurrentAccessLevel@12
- 117 __imp__EndReadDeadTimeFactors_R3@20
- 118 __imp__EndReadDebugRegister_R3@16
- 119 __imp__EndReadDetectorTestLimits_R3@20
- 11A __imp__EndReadDetectorThresholdLimits_R3@20
- 11B __imp__EndReadDetectorThresholds@20
- 11C __imp__EndReadDetectorThresholds_R3@20
- 11D __imp__EndReadDisplayCapability_R3@24
- 11E __imp__EndReadDisplayEnablePermissions_R3@24
- 11F __imp__EndReadDisplayEnables_R3@20
- 120 __imp__EndReadDisplayOptions@12
- 121 __imp__EndReadDisplayOptionsLock_R3@12
- 122 __imp__EndReadDisplayTimeout@12
- 123 __imp__EndReadDoseProfileByIndex_R3@24
- 124 __imp__EndReadDoseProfileByTime@16
- 125 __imp__EndReadDoseProfileConfiguration_R3@12
- 126 __imp__EndReadDoseProfileInterval@12
- 127 __imp__EndReadDoseSaveInterval_R3@12
- 128 __imp__EndReadDoses@24
- 129 __imp__EndReadEEProm@24
- 12A __imp__EndReadEpdIdentities@36
- 12B __imp__EndReadEpdPartNumber_R3@12
- 12C __imp__EndReadEpdRevision_R3@12
- 12D __imp__EndReadEpdSerialNum@12
- 12E __imp__EndReadEpdType@12
- 12F __imp__EndReadEventLogLevel_R3@12
- 130 __imp__EndReadEventsByIndex@16
- 131 __imp__EndReadFactoryCalDate@12
- 132 __imp__EndReadFemSerialNum_R3@12
- 133 __imp__EndReadFirmwarePartNumber_R3@12
- 134 __imp__EndReadFirmwareVersion@12
- 135 __imp__EndReadFlashTestCounts_R3@24
- 136 __imp__EndReadFpgaVersion_R3@16
- 137 __imp__EndReadGains@20
- 138 __imp__EndReadGains_R3@20
- 139 __imp__EndReadGraphicData_R3@12
- 13A __imp__EndReadGraphicSize_R3@12
- 13B __imp__EndReadLastCalibrationProcess_R3@12
- 13C __imp__EndReadMarkNumber@12
- 13D __imp__EndReadMeasurandIds_R3@20
- 13E __imp__EndReadModelName_R3@12
- 13F __imp__EndReadOffModeBatteryTestInterval_R3@12
- 140 __imp__EndReadOffModeDisplay_R3@16
- 141 __imp__EndReadPcbPartNumber_R3@12
- 142 __imp__EndReadPcbRevision_R3@12
- 143 __imp__EndReadPcbSerialNum_R3@12
- 144 __imp__EndReadPeakRates@20
- 145 __imp__EndReadPulseModeEnable_R3@12
- 146 __imp__EndReadPulseModeIndustrial_R3@12
- 147 __imp__EndReadPulseModeThreshold_R3@12
- 148 __imp__EndReadPulsedModeOverrangeThreshold_R3@12
- 149 __imp__EndReadQualityData@12
- 14A __imp__EndReadQuickAccessDisplays_R3@20
- 14B __imp__EndReadRTC@12
- 14C __imp__EndReadRadioFirmwareVersion_R3@12
- 14D __imp__EndReadRateOffPercentage@20
- 14E __imp__EndReadRates@24
- 14F __imp__EndReadResponderTriggerUtc_R3@12
- 150 __imp__EndReadReturnForReadTime@12
- 151 __imp__EndReadRunTime_R3@12
- 152 __imp__EndReadScratchpad@24
- 153 __imp__EndReadScratchpadSize@12
- 154 __imp__EndReadSelfTestInterval@12
- 155 __imp__EndReadSensitivities@20
- 156 __imp__EndReadSensitivities_R3@20
- 157 __imp__EndReadSnapshotAlarmThresholds_R3@12
- 158 __imp__EndReadSnapshotCounters_R3@12
- 159 __imp__EndReadSnapshotMeasurements_R3@12
- 15A __imp__EndReadSnapshotSummary_R3@12
- 15B __imp__EndReadStatus@12
- 15C __imp__EndReadStayTime_R3@12
- 15D __imp__EndReadSwitchOnFromButton_R3@12
- 15E __imp__EndReadTaskDatabaseId_R3@12
- 15F __imp__EndReadTaskId_R3@12
- 160 __imp__EndReadTelemetryAdvConfig_R3@12
- 161 __imp__EndReadTelemetryAdvContent_R3@16
- 162 __imp__EndReadTelemetryCxnConfig_R3@12
- 163 __imp__EndReadTelemetryEnable_R3@16
- 164 __imp__EndReadTelemetryMode_R2@12
- 165 __imp__EndReadTelemetryReportInterval_R3@12
- 166 __imp__EndReadTelemetryTxPower_R3@16
- 167 __imp__EndReadTotalDoses@24
- 168 __imp__EndReadTriggeredDoses_R3@24
- 169 __imp__EndReadVoltages@20
- 16A __imp__EndReadWearerDatabaseId_R3@12
- 16B __imp__EndReadWearerId@12
- 16C __imp__EndReadZoneAccessPermitted@12
- 16D __imp__EndReadZoneControlMap@12
- 16E __imp__EndSetBaselineCounters@8
- 16F __imp__EndStartDetectorTest@8
- 170 __imp__EndTriggerBacklight_R3@8
- 171 __imp__EndTriggerResponderMode_R3@8
- 172 __imp__EndValidateEpdOwnerKey_R3@12
- 173 __imp__EndWriteAccessKey@8
- 174 __imp__EndWriteAccessLevel@8
- 175 __imp__EndWriteAccessPermissionsForLevel_R3@8
- 176 __imp__EndWriteAlarmConfigurationLock_R3@8
- 177 __imp__EndWriteAlarmConfiguration_R3@8
- 178 __imp__EndWriteAlarmThresholds@8
- 179 __imp__EndWriteBacklightBrightness_R3@8
- 17A __imp__EndWriteBacklightEnable_R3@8
- 17B __imp__EndWriteBacklightPeriod_R3@8
- 17C __imp__EndWriteBatteryCriticalTiming_R3@8
- 17D __imp__EndWriteBatteryLowThreshold@8
- 17E __imp__EndWriteBatteryTestInterval@8
- 17F __imp__EndWriteBatteryTypeOverride_R3@8
- 180 __imp__EndWriteCalDueDate@8
- 181 __imp__EndWriteCalDueDate_R3@8
- 182 __imp__EndWriteCalReference_R3@8
- 183 __imp__EndWriteCalibrationFacility_R3@8
- 184 __imp__EndWriteCapabilities_R3@8
- 185 __imp__EndWriteChirpEnable_R3@8
- 186 __imp__EndWriteChirpSensitivity@8
- 187 __imp__EndWriteClearDoseOnSwitchOn@8
- 188 __imp__EndWriteDeadTimeFactors_R3@8
- 189 __imp__EndWriteDebugRegister_R3@8
- 18A __imp__EndWriteDetectorTestLimits_R3@8
- 18B __imp__EndWriteDetectorThresholds_R2@8
- 18C __imp__EndWriteDetectorThresholds_R3@8
- 18D __imp__EndWriteDisplayEnablePermissions_R3@8
- 18E __imp__EndWriteDisplayEnables_R3@8
- 18F __imp__EndWriteDisplayOptions@8
- 190 __imp__EndWriteDisplayOptionsLock_R3@8
- 191 __imp__EndWriteDisplayTimeout@8
- 192 __imp__EndWriteDoseProfileDoseIncrement_R3@8
- 193 __imp__EndWriteDoseProfileInterval@8
- 194 __imp__EndWriteDoseProfileMeasurands_R3@8
- 195 __imp__EndWriteDoseSaveInterval_R3@8
- 196 __imp__EndWriteDoseWritableFlag@8
- 197 __imp__EndWriteDoses@8
- 198 __imp__EndWriteEEProm@8
- 199 __imp__EndWriteEpdPartNumber_R3@8
- 19A __imp__EndWriteEpdRevision_R3@8
- 19B __imp__EndWriteEpdSerialNumber@8
- 19C __imp__EndWriteEventLogLevel_R3@8
- 19D __imp__EndWriteFactoryCalDate@8
- 19E __imp__EndWriteFemSerialNumber_R3@8
- 19F __imp__EndWriteGainableFlag_R3@8
- 1A0 __imp__EndWriteGains_R3@8
- 1A1 __imp__EndWriteGoldenFlag_R3@8
- 1A2 __imp__EndWriteGraphicBitmap_R3@8
- 1A3 __imp__EndWriteLastCalibrationProcess_R3@8
- 1A4 __imp__EndWriteMarkNumber_R3@8
- 1A5 __imp__EndWriteModelName_R3@8
- 1A6 __imp__EndWriteNotCalibratedFlag_R3@8
- 1A7 __imp__EndWriteOffModeBatteryTestInterval_R3@8
- 1A8 __imp__EndWriteOffModeDisplay_R3@8
- 1A9 __imp__EndWritePcbPartNumber_R3@8
- 1AA __imp__EndWritePcbRevision_R3@8
- 1AB __imp__EndWritePcbSerialNumber_R3@8
- 1AC __imp__EndWritePulseModeEnable_R3@8
- 1AD __imp__EndWritePulseModeIndustrial_R3@8
- 1AE __imp__EndWritePulseModeThreshold_R3@8
- 1AF __imp__EndWritePulsedModeOverrangeThreshold_R3@8
- 1B0 __imp__EndWriteQuickAccessDisplays_R3@8
- 1B1 __imp__EndWriteRTC_R3@8
- 1B2 __imp__EndWriteRateOffPercentage@8
- 1B3 __imp__EndWriteReturnForReadTime@8
- 1B4 __imp__EndWriteScratchpad@8
- 1B5 __imp__EndWriteSelfTestInterval@8
- 1B6 __imp__EndWriteSensitivities_R2@8
- 1B7 __imp__EndWriteSensitivities_R3@8
- 1B8 __imp__EndWriteStayTime_R3@8
- 1B9 __imp__EndWriteSwitchOnFromButton_R3@8
- 1BA __imp__EndWriteTaskDatabaseId_R3@8
- 1BB __imp__EndWriteTaskId_R3@8
- 1BC __imp__EndWriteTelemetryAdvConfig_R3@8
- 1BD __imp__EndWriteTelemetryAdvContent_R3@8
- 1BE __imp__EndWriteTelemetryCxnConfig_R3@8
- 1BF __imp__EndWriteTelemetryEnable_R3@8
- 1C0 __imp__EndWriteTelemetryMode_R2@8
- 1C1 __imp__EndWriteTelemetryReportInterval_R3@8
- 1C2 __imp__EndWriteTelemetryTxPower_R3@8
- 1C3 __imp__EndWriteTotalDoses@8
- 1C4 __imp__EndWriteTriggeredDoses_R3@8
- 1C5 __imp__EndWriteWearerDatabaseId_R3@8
- 1C6 __imp__EndWriteWearerId@8
- 1C7 __imp__EndWriteZoneControlMap@8
- 1C8 __imp__GetDiscoveredEpds@16
- 1C9 __imp__GetDiscoveryTimeout@8
- 1CA __imp__GetDiscoveryTimeslots@8
- 1CB __imp__GetDllLogLevel@8
- 1CC __imp__GetErrorCode@0
- 1CD __imp__GetMultipleDiscoveryMode@8
- 1CE __imp__GetResponseTimeout@8
- 1CF __imp__GetRetryCount@8
- 1D0 __imp__OpenReader@8
- 1D1 __imp__SetConnectCallback@8
- 1D2 __imp__SetDisconnectCallback@8
- 1D3 __imp__SetDiscoveryCacheTimeout@8
- 1D4 __imp__SetDiscoveryTimeslots@8
- 1D5 __imp__SetDllLogLevel@8
- 1D6 __imp__SetMultipleDiscoveryMode@8
- 1D7 __imp__SetRemovedCallback@8
- 1D8 __imp__SetResponseTimeout@8
- 1D9 __imp__SetRetryCount@8
- 1DA __imp__StartDiscovery@8
- 1DB __imp__StopDiscovery@4
- 3 reader3_NULL_THUNK_DATA
-
-Archive member name at 10A0E: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 1ED size
-correct header end
-
-FILE HEADER VALUES
- 14C machine (x86)
- 3 number of sections
- 608BCB5D time date stamp Fri Apr 30 11:18:21 2021
- 10B file pointer to symbol table
- 8 number of symbols
- 0 size of optional header
- 100 characteristics
- 32 bit word machine
-
-SECTION HEADER #1
-.debug$S name
- 0 physical address
- 0 virtual address
- 41 size of raw data
- 8C file pointer to raw data (0000008C to 000000CC)
- 0 file pointer to relocation table
- 0 file pointer to line numbers
- 0 number of relocations
- 0 number of line numbers
-42100040 flags
- Initialized Data
- Discardable
- 1 byte align
- Read Only
-
-RAW DATA #1
- 00000000: 02 00 00 00 12 00 09 00 00 00 00 00 0B 72 65 61 .............rea
- 00000010: 64 65 72 33 2E 64 6C 6C 27 00 13 10 07 00 00 00 der3.dll'.......
- 00000020: 03 00 00 00 00 00 00 00 0E 00 1C 00 DA 74 12 4D ............Út.M
- 00000030: 69 63 72 6F 73 6F 66 74 20 28 52 29 20 4C 49 4E icrosoft (R) LIN
- 00000040: 4B K
-
-SECTION HEADER #2
-.idata$2 name
- 0 physical address
- 0 virtual address
- 14 size of raw data
- CD file pointer to raw data (000000CD to 000000E0)
- E1 file pointer to relocation table
- 0 file pointer to line numbers
- 3 number of relocations
- 0 number of line numbers
-C0300040 flags
- Initialized Data
- 4 byte align
- Read Write
-
-RAW DATA #2
- 00000000: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................
- 00000010: 00 00 00 00 ....
-
-RELOCATIONS #2
- Symbol Symbol
- Offset Type Applied To Index Name
- -------- ---------------- ----------------- -------- ------
- 0000000C DIR32NB 00000000 3 .idata$6
- 00000000 DIR32NB 00000000 4 .idata$4
- 00000010 DIR32NB 00000000 5 .idata$5
-
-SECTION HEADER #3
-.idata$6 name
- 0 physical address
- 0 virtual address
- C size of raw data
- FF file pointer to raw data (000000FF to 0000010A)
- E1 file pointer to relocation table
- 0 file pointer to line numbers
- 0 number of relocations
- 0 number of line numbers
-C0200040 flags
- Initialized Data
- 2 byte align
- Read Write
-
-RAW DATA #3
- 00000000: 72 65 61 64 65 72 33 2E 64 6C 6C 00 reader3.dll.
-
-COFF SYMBOL TABLE
-000 010174DA ABS notype Static | @comp.id
-001 00000000 SECT2 notype External | __IMPORT_DESCRIPTOR_reader3
-002 C0000040 SECT2 notype Section | .idata$2
-003 00000000 SECT3 notype Static | .idata$6
-004 C0000040 UNDEF notype Section | .idata$4
-005 C0000040 UNDEF notype Section | .idata$5
-006 00000000 UNDEF notype External | __NULL_IMPORT_DESCRIPTOR
-007 00000000 UNDEF notype External | reader3_NULL_THUNK_DATA
-
-String Table Size = 0x52 bytes
-
-Archive member name at 10C38: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- FA size
-correct header end
-
-FILE HEADER VALUES
- 14C machine (x86)
- 2 number of sections
- 608BCB5D time date stamp Fri Apr 30 11:18:21 2021
- B9 file pointer to symbol table
- 2 number of symbols
- 0 size of optional header
- 100 characteristics
- 32 bit word machine
-
-SECTION HEADER #1
-.debug$S name
- 0 physical address
- 0 virtual address
- 41 size of raw data
- 64 file pointer to raw data (00000064 to 000000A4)
- 0 file pointer to relocation table
- 0 file pointer to line numbers
- 0 number of relocations
- 0 number of line numbers
-42100040 flags
- Initialized Data
- Discardable
- 1 byte align
- Read Only
-
-RAW DATA #1
- 00000000: 02 00 00 00 12 00 09 00 00 00 00 00 0B 72 65 61 .............rea
- 00000010: 64 65 72 33 2E 64 6C 6C 27 00 13 10 07 00 00 00 der3.dll'.......
- 00000020: 03 00 00 00 00 00 00 00 0E 00 1C 00 DA 74 12 4D ............Út.M
- 00000030: 69 63 72 6F 73 6F 66 74 20 28 52 29 20 4C 49 4E icrosoft (R) LIN
- 00000040: 4B K
-
-SECTION HEADER #2
-.idata$3 name
- 0 physical address
- 0 virtual address
- 14 size of raw data
- A5 file pointer to raw data (000000A5 to 000000B8)
- 0 file pointer to relocation table
- 0 file pointer to line numbers
- 0 number of relocations
- 0 number of line numbers
-C0300040 flags
- Initialized Data
- 4 byte align
- Read Write
-
-RAW DATA #2
- 00000000: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................
- 00000010: 00 00 00 00 ....
-
-COFF SYMBOL TABLE
-000 010174DA ABS notype Static | @comp.id
-001 00000000 SECT2 notype External | __NULL_IMPORT_DESCRIPTOR
-
-String Table Size = 0x1D bytes
-
-Archive member name at 10D6E: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 116 size
-correct header end
-
-FILE HEADER VALUES
- 14C machine (x86)
- 3 number of sections
- 608BCB5D time date stamp Fri Apr 30 11:18:21 2021
- D5 file pointer to symbol table
- 2 number of symbols
- 0 size of optional header
- 100 characteristics
- 32 bit word machine
-
-SECTION HEADER #1
-.debug$S name
- 0 physical address
- 0 virtual address
- 41 size of raw data
- 8C file pointer to raw data (0000008C to 000000CC)
- 0 file pointer to relocation table
- 0 file pointer to line numbers
- 0 number of relocations
- 0 number of line numbers
-42100040 flags
- Initialized Data
- Discardable
- 1 byte align
- Read Only
-
-RAW DATA #1
- 00000000: 02 00 00 00 12 00 09 00 00 00 00 00 0B 72 65 61 .............rea
- 00000010: 64 65 72 33 2E 64 6C 6C 27 00 13 10 07 00 00 00 der3.dll'.......
- 00000020: 03 00 00 00 00 00 00 00 0E 00 1C 00 DA 74 12 4D ............Út.M
- 00000030: 69 63 72 6F 73 6F 66 74 20 28 52 29 20 4C 49 4E icrosoft (R) LIN
- 00000040: 4B K
-
-SECTION HEADER #2
-.idata$5 name
- 0 physical address
- 0 virtual address
- 4 size of raw data
- CD file pointer to raw data (000000CD to 000000D0)
- 0 file pointer to relocation table
- 0 file pointer to line numbers
- 0 number of relocations
- 0 number of line numbers
-C0300040 flags
- Initialized Data
- 4 byte align
- Read Write
-
-RAW DATA #2
- 00000000: 00 00 00 00 ....
-
-SECTION HEADER #3
-.idata$4 name
- 0 physical address
- 0 virtual address
- 4 size of raw data
- D1 file pointer to raw data (000000D1 to 000000D4)
- 0 file pointer to relocation table
- 0 file pointer to line numbers
- 0 number of relocations
- 0 number of line numbers
-C0300040 flags
- Initialized Data
- 4 byte align
- Read Write
-
-RAW DATA #3
- 00000000: 00 00 00 00 ....
-
-COFF SYMBOL TABLE
-000 010174DA ABS notype Static | @comp.id
-001 00000000 SECT2 notype External | reader3_NULL_THUNK_DATA
-
-String Table Size = 0x1D bytes
-
-Archive member name at 10EC0: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 31 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000001D
- DLL name : reader3.dll
- Symbol name : _AwaitRemoval@20
- Type : code
- Name type : ordinal
- Ordinal : 1
-
-Archive member name at 10F2E: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 37 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000023
- DLL name : reader3.dll
- Symbol name : _BeginClearAllStatus@8
- Type : code
- Name type : ordinal
- Ordinal : 2
-
-Archive member name at 10FA2: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 32 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000001E
- DLL name : reader3.dll
- Symbol name : _BeginClearDose@8
- Type : code
- Name type : ordinal
- Ordinal : 3
-
-Archive member name at 11010: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3C size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000028
- DLL name : reader3.dll
- Symbol name : _BeginClearDoseProfile_R3@8
- Type : code
- Name type : ordinal
- Ordinal : 4
-
-Archive member name at 11088: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 37 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000023
- DLL name : reader3.dll
- Symbol name : _BeginClearEEPROM_R3@8
- Type : code
- Name type : ordinal
- Ordinal : 5
-
-Archive member name at 110FC: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 39 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000025
- DLL name : reader3.dll
- Symbol name : _BeginClearFaultStatus@8
- Type : code
- Name type : ordinal
- Ordinal : 6
-
-Archive member name at 11172: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 39 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000025
- DLL name : reader3.dll
- Symbol name : _BeginClearGraphic_R3@12
- Type : code
- Name type : ordinal
- Ordinal : 7
-
-Archive member name at 111E8: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3B size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000027
- DLL name : reader3.dll
- Symbol name : _BeginClearLatchedAlarms@8
- Type : code
- Name type : ordinal
- Ordinal : 8
-
-Archive member name at 11260: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 37 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000023
- DLL name : reader3.dll
- Symbol name : _BeginClearPeakRates@8
- Type : code
- Name type : ordinal
- Ordinal : 9
-
-Archive member name at 112D4: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 39 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000025
- DLL name : reader3.dll
- Symbol name : _BeginClearScratchPad@12
- Type : code
- Name type : ordinal
- Ordinal : 10
-
-Archive member name at 1134A: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 37 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000023
- DLL name : reader3.dll
- Symbol name : _BeginClearTotalDose@8
- Type : code
- Name type : ordinal
- Ordinal : 11
-
-Archive member name at 113BE: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 40 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002C
- DLL name : reader3.dll
- Symbol name : _BeginClearWearerOrTaskId_R3@16
- Type : code
- Name type : ordinal
- Ordinal : 12
-
-Archive member name at 1143A: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 33 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000001F
- DLL name : reader3.dll
- Symbol name : _BeginDeissueEPD@8
- Type : code
- Name type : ordinal
- Ordinal : 13
-
-Archive member name at 114AA: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3D size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000029
- DLL name : reader3.dll
- Symbol name : _BeginEnableCovertMode_R3@12
- Type : code
- Name type : ordinal
- Ordinal : 14
-
-Archive member name at 11524: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3C size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000028
- DLL name : reader3.dll
- Symbol name : _BeginEnableDeepSleep_R3@12
- Type : code
- Name type : ordinal
- Ordinal : 15
-
-Archive member name at 1159C: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 46 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000032
- DLL name : reader3.dll
- Symbol name : _BeginEnableManufacturerLockout_R3@12
- Type : code
- Name type : ordinal
- Ordinal : 16
-
-Archive member name at 1161E: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 43 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002F
- DLL name : reader3.dll
- Symbol name : _BeginEnableProtectedSession_R3@12
- Type : code
- Name type : ordinal
- Ordinal : 17
-
-Archive member name at 1169E: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 40 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002C
- DLL name : reader3.dll
- Symbol name : _BeginEnableResponderMode_R3@12
- Type : code
- Name type : ordinal
- Ordinal : 18
-
-Archive member name at 1171A: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 32 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000001E
- DLL name : reader3.dll
- Symbol name : _BeginEpdOnOff@12
- Type : code
- Name type : ordinal
- Ordinal : 19
-
-Archive member name at 11788: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 42 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002E
- DLL name : reader3.dll
- Symbol name : _BeginInitiateFirmwareUpdate_R3@8
- Type : code
- Name type : ordinal
- Ordinal : 20
-
-Archive member name at 11806: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 31 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000001D
- DLL name : reader3.dll
- Symbol name : _BeginIssueEPD@8
- Type : code
- Name type : ordinal
- Ordinal : 21
-
-Archive member name at 11874: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 4A size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000036
- DLL name : reader3.dll
- Symbol name : _BeginReadAccessPermissionsForLevel_R3@12
- Type : code
- Name type : ordinal
- Ordinal : 22
-
-Archive member name at 118FA: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 40 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002C
- DLL name : reader3.dll
- Symbol name : _BeginReadAlarmConfiguration@16
- Type : code
- Name type : ordinal
- Ordinal : 23
-
-Archive member name at 11976: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 46 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000032
- DLL name : reader3.dll
- Symbol name : _BeginReadAlarmConfigurationLock_R3@8
- Type : code
- Name type : ordinal
- Ordinal : 24
-
-Archive member name at 119F8: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 43 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002F
- DLL name : reader3.dll
- Symbol name : _BeginReadAlarmConfiguration_R3@16
- Type : code
- Name type : ordinal
- Ordinal : 25
-
-Archive member name at 11A78: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3D size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000029
- DLL name : reader3.dll
- Symbol name : _BeginReadAlarmThresholds@20
- Type : code
- Name type : ordinal
- Ordinal : 26
-
-Archive member name at 11AF2: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 43 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002F
- DLL name : reader3.dll
- Symbol name : _BeginReadBacklightBrightness_R3@8
- Type : code
- Name type : ordinal
- Ordinal : 27
-
-Archive member name at 11B72: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3F size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002B
- DLL name : reader3.dll
- Symbol name : _BeginReadBacklightEnable_R3@8
- Type : code
- Name type : ordinal
- Ordinal : 28
-
-Archive member name at 11BEE: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3F size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002B
- DLL name : reader3.dll
- Symbol name : _BeginReadBacklightPeriod_R3@8
- Type : code
- Name type : ordinal
- Ordinal : 29
-
-Archive member name at 11C6A: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3B size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000027
- DLL name : reader3.dll
- Symbol name : _BeginReadBaselineCounts@8
- Type : code
- Name type : ordinal
- Ordinal : 30
-
-Archive member name at 11CE2: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 45 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000031
- DLL name : reader3.dll
- Symbol name : _BeginReadBatteryCriticalTiming_R3@8
- Type : code
- Name type : ordinal
- Ordinal : 31
-
-Archive member name at 11D64: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 41 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002D
- DLL name : reader3.dll
- Symbol name : _BeginReadBatteryLowThreshold@12
- Type : code
- Name type : ordinal
- Ordinal : 32
-
-Archive member name at 11DE2: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 40 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002C
- DLL name : reader3.dll
- Symbol name : _BeginReadBatteryTestInterval@8
- Type : code
- Name type : ordinal
- Ordinal : 33
-
-Archive member name at 11E5E: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 41 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002D
- DLL name : reader3.dll
- Symbol name : _BeginReadBatteryTypeFitted_R3@8
- Type : code
- Name type : ordinal
- Ordinal : 34
-
-Archive member name at 11EDC: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 43 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002F
- DLL name : reader3.dll
- Symbol name : _BeginReadBatteryTypeOverride_R3@8
- Type : code
- Name type : ordinal
- Ordinal : 35
-
-Archive member name at 11F5C: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 37 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000023
- DLL name : reader3.dll
- Symbol name : _BeginReadCalDueDate@8
- Type : code
- Name type : ordinal
- Ordinal : 36
-
-Archive member name at 11FD0: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3A size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000026
- DLL name : reader3.dll
- Symbol name : _BeginReadCalDueDate_R3@8
- Type : code
- Name type : ordinal
- Ordinal : 37
-
-Archive member name at 12046: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3C size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000028
- DLL name : reader3.dll
- Symbol name : _BeginReadCalReference_R3@8
- Type : code
- Name type : ordinal
- Ordinal : 38
-
-Archive member name at 120BE: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3F size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002B
- DLL name : reader3.dll
- Symbol name : _BeginReadCalibrationData_R2@8
- Type : code
- Name type : ordinal
- Ordinal : 39
-
-Archive member name at 1213A: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 43 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002F
- DLL name : reader3.dll
- Symbol name : _BeginReadCalibrationFacility_R3@8
- Type : code
- Name type : ordinal
- Ordinal : 40
-
-Archive member name at 121BA: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 39 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000025
- DLL name : reader3.dll
- Symbol name : _BeginReadCapabilities@8
- Type : code
- Name type : ordinal
- Ordinal : 41
-
-Archive member name at 12230: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3B size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000027
- DLL name : reader3.dll
- Symbol name : _BeginReadChirpEnable_R3@8
- Type : code
- Name type : ordinal
- Ordinal : 42
-
-Archive member name at 122A8: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3D size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000029
- DLL name : reader3.dll
- Symbol name : _BeginReadChirpSensitivity@8
- Type : code
- Name type : ordinal
- Ordinal : 43
-
-Archive member name at 12322: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 34 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000020
- DLL name : reader3.dll
- Symbol name : _BeginReadCounts@16
- Type : code
- Name type : ordinal
- Ordinal : 44
-
-Archive member name at 12392: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3F size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002B
- DLL name : reader3.dll
- Symbol name : _BeginReadCurrentAccessLevel@8
- Type : code
- Name type : ordinal
- Ordinal : 45
-
-Archive member name at 1240E: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 40 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002C
- DLL name : reader3.dll
- Symbol name : _BeginReadDeadTimeFactors_R3@16
- Type : code
- Name type : ordinal
- Ordinal : 46
-
-Archive member name at 1248A: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3E size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002A
- DLL name : reader3.dll
- Symbol name : _BeginReadDebugRegister_R3@12
- Type : code
- Name type : ordinal
- Ordinal : 47
-
-Archive member name at 12504: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 43 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002F
- DLL name : reader3.dll
- Symbol name : _BeginReadDetectorTestLimits_R3@16
- Type : code
- Name type : ordinal
- Ordinal : 48
-
-Archive member name at 12584: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 48 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000034
- DLL name : reader3.dll
- Symbol name : _BeginReadDetectorThresholdLimits_R3@16
- Type : code
- Name type : ordinal
- Ordinal : 49
-
-Archive member name at 12608: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 40 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002C
- DLL name : reader3.dll
- Symbol name : _BeginReadDetectorThresholds@16
- Type : code
- Name type : ordinal
- Ordinal : 50
-
-Archive member name at 12684: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 43 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002F
- DLL name : reader3.dll
- Symbol name : _BeginReadDetectorThresholds_R3@16
- Type : code
- Name type : ordinal
- Ordinal : 51
-
-Archive member name at 12704: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 42 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002E
- DLL name : reader3.dll
- Symbol name : _BeginReadDisplayCapability_R3@12
- Type : code
- Name type : ordinal
- Ordinal : 52
-
-Archive member name at 12782: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 49 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000035
- DLL name : reader3.dll
- Symbol name : _BeginReadDisplayEnablePermissions_R3@12
- Type : code
- Name type : ordinal
- Ordinal : 53
-
-Archive member name at 12808: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3F size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002B
- DLL name : reader3.dll
- Symbol name : _BeginReadDisplayEnables_R3@16
- Type : code
- Name type : ordinal
- Ordinal : 54
-
-Archive member name at 12884: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3B size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000027
- DLL name : reader3.dll
- Symbol name : _BeginReadDisplayOptions@8
- Type : code
- Name type : ordinal
- Ordinal : 55
-
-Archive member name at 128FC: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 42 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002E
- DLL name : reader3.dll
- Symbol name : _BeginReadDisplayOptionsLock_R3@8
- Type : code
- Name type : ordinal
- Ordinal : 56
-
-Archive member name at 1297A: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3B size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000027
- DLL name : reader3.dll
- Symbol name : _BeginReadDisplayTimeout@8
- Type : code
- Name type : ordinal
- Ordinal : 57
-
-Archive member name at 129F2: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 43 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002F
- DLL name : reader3.dll
- Symbol name : _BeginReadDoseProfileByIndex_R3@16
- Type : code
- Name type : ordinal
- Ordinal : 58
-
-Archive member name at 12A72: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3F size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002B
- DLL name : reader3.dll
- Symbol name : _BeginReadDoseProfileByTime@16
- Type : code
- Name type : ordinal
- Ordinal : 59
-
-Archive member name at 12AEE: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 48 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000034
- DLL name : reader3.dll
- Symbol name : _BeginReadDoseProfileConfiguration_R3@8
- Type : code
- Name type : ordinal
- Ordinal : 60
-
-Archive member name at 12B72: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 40 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002C
- DLL name : reader3.dll
- Symbol name : _BeginReadDoseProfileInterval@8
- Type : code
- Name type : ordinal
- Ordinal : 61
-
-Archive member name at 12BEE: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 40 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002C
- DLL name : reader3.dll
- Symbol name : _BeginReadDoseSaveInterval_R3@8
- Type : code
- Name type : ordinal
- Ordinal : 62
-
-Archive member name at 12C6A: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 33 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000001F
- DLL name : reader3.dll
- Symbol name : _BeginReadDoses@16
- Type : code
- Name type : ordinal
- Ordinal : 63
-
-Archive member name at 12CDA: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 34 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000020
- DLL name : reader3.dll
- Symbol name : _BeginReadEEProm@16
- Type : code
- Name type : ordinal
- Ordinal : 64
-
-Archive member name at 12D4A: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3A size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000026
- DLL name : reader3.dll
- Symbol name : _BeginReadEpdIdentities@8
- Type : code
- Name type : ordinal
- Ordinal : 65
-
-Archive member name at 12DC0: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3D size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000029
- DLL name : reader3.dll
- Symbol name : _BeginReadEpdPartNumber_R3@8
- Type : code
- Name type : ordinal
- Ordinal : 66
-
-Archive member name at 12E3A: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3B size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000027
- DLL name : reader3.dll
- Symbol name : _BeginReadEpdRevision_R3@8
- Type : code
- Name type : ordinal
- Ordinal : 67
-
-Archive member name at 12EB2: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 39 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000025
- DLL name : reader3.dll
- Symbol name : _BeginReadEpdSerialNum@8
- Type : code
- Name type : ordinal
- Ordinal : 68
-
-Archive member name at 12F28: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 34 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000020
- DLL name : reader3.dll
- Symbol name : _BeginReadEpdType@8
- Type : code
- Name type : ordinal
- Ordinal : 69
-
-Archive member name at 12F98: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3D size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000029
- DLL name : reader3.dll
- Symbol name : _BeginReadEventLogLevel_R3@8
- Type : code
- Name type : ordinal
- Ordinal : 70
-
-Archive member name at 13012: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3B size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000027
- DLL name : reader3.dll
- Symbol name : _BeginReadEventsByIndex@16
- Type : code
- Name type : ordinal
- Ordinal : 71
-
-Archive member name at 1308A: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3B size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000027
- DLL name : reader3.dll
- Symbol name : _BeginReadFactoryCalDate@8
- Type : code
- Name type : ordinal
- Ordinal : 72
-
-Archive member name at 13102: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3C size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000028
- DLL name : reader3.dll
- Symbol name : _BeginReadFemSerialNum_R3@8
- Type : code
- Name type : ordinal
- Ordinal : 73
-
-Archive member name at 1317A: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 42 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002E
- DLL name : reader3.dll
- Symbol name : _BeginReadFirmwarePartNumber_R3@8
- Type : code
- Name type : ordinal
- Ordinal : 74
-
-Archive member name at 131F8: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3C size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000028
- DLL name : reader3.dll
- Symbol name : _BeginReadFirmwareVersion@8
- Type : code
- Name type : ordinal
- Ordinal : 75
-
-Archive member name at 13270: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 40 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002C
- DLL name : reader3.dll
- Symbol name : _BeginReadFlashTestCounts_R3@16
- Type : code
- Name type : ordinal
- Ordinal : 76
-
-Archive member name at 132EC: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3B size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000027
- DLL name : reader3.dll
- Symbol name : _BeginReadFpgaVersion_R3@8
- Type : code
- Name type : ordinal
- Ordinal : 77
-
-Archive member name at 13364: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 33 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000001F
- DLL name : reader3.dll
- Symbol name : _BeginReadGains@16
- Type : code
- Name type : ordinal
- Ordinal : 78
-
-Archive member name at 133D4: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 36 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000022
- DLL name : reader3.dll
- Symbol name : _BeginReadGains_R3@16
- Type : code
- Name type : ordinal
- Ordinal : 79
-
-Archive member name at 13446: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3C size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000028
- DLL name : reader3.dll
- Symbol name : _BeginReadGraphicData_R3@12
- Type : code
- Name type : ordinal
- Ordinal : 80
-
-Archive member name at 134BE: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3C size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000028
- DLL name : reader3.dll
- Symbol name : _BeginReadGraphicSize_R3@12
- Type : code
- Name type : ordinal
- Ordinal : 81
-
-Archive member name at 13536: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 46 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000032
- DLL name : reader3.dll
- Symbol name : _BeginReadLastCalibrationProcess_R3@8
- Type : code
- Name type : ordinal
- Ordinal : 82
-
-Archive member name at 135B8: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 37 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000023
- DLL name : reader3.dll
- Symbol name : _BeginReadMarkNumber@8
- Type : code
- Name type : ordinal
- Ordinal : 83
-
-Archive member name at 1362C: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3C size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000028
- DLL name : reader3.dll
- Symbol name : _BeginReadMeasurandIds_R3@8
- Type : code
- Name type : ordinal
- Ordinal : 84
-
-Archive member name at 136A4: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 39 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000025
- DLL name : reader3.dll
- Symbol name : _BeginReadModelName_R3@8
- Type : code
- Name type : ordinal
- Ordinal : 85
-
-Archive member name at 1371A: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 4A size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000036
- DLL name : reader3.dll
- Symbol name : _BeginReadOffModeBatteryTestInterval_R3@8
- Type : code
- Name type : ordinal
- Ordinal : 86
-
-Archive member name at 137A0: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3E size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002A
- DLL name : reader3.dll
- Symbol name : _BeginReadOffModeDisplay_R3@8
- Type : code
- Name type : ordinal
- Ordinal : 87
-
-Archive member name at 1381A: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3D size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000029
- DLL name : reader3.dll
- Symbol name : _BeginReadPcbPartNumber_R3@8
- Type : code
- Name type : ordinal
- Ordinal : 88
-
-Archive member name at 13894: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3B size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000027
- DLL name : reader3.dll
- Symbol name : _BeginReadPcbRevision_R3@8
- Type : code
- Name type : ordinal
- Ordinal : 89
-
-Archive member name at 1390C: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3C size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000028
- DLL name : reader3.dll
- Symbol name : _BeginReadPcbSerialNum_R3@8
- Type : code
- Name type : ordinal
- Ordinal : 90
-
-Archive member name at 13984: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 37 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000023
- DLL name : reader3.dll
- Symbol name : _BeginReadPeakRates@16
- Type : code
- Name type : ordinal
- Ordinal : 91
-
-Archive member name at 139F8: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3F size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002B
- DLL name : reader3.dll
- Symbol name : _BeginReadPulseModeEnable_R3@8
- Type : code
- Name type : ordinal
- Ordinal : 92
-
-Archive member name at 13A74: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 43 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002F
- DLL name : reader3.dll
- Symbol name : _BeginReadPulseModeIndustrial_R3@8
- Type : code
- Name type : ordinal
- Ordinal : 93
-
-Archive member name at 13AF4: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 42 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002E
- DLL name : reader3.dll
- Symbol name : _BeginReadPulseModeThreshold_R3@8
- Type : code
- Name type : ordinal
- Ordinal : 94
-
-Archive member name at 13B72: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 4C size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000038
- DLL name : reader3.dll
- Symbol name : _BeginReadPulsedModeOverrangeThreshold_R3@8
- Type : code
- Name type : ordinal
- Ordinal : 95
-
-Archive member name at 13BFA: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 38 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000024
- DLL name : reader3.dll
- Symbol name : _BeginReadQualityData@8
- Type : code
- Name type : ordinal
- Ordinal : 96
-
-Archive member name at 13C6E: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 44 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000030
- DLL name : reader3.dll
- Symbol name : _BeginReadQuickAccessDisplays_R3@16
- Type : code
- Name type : ordinal
- Ordinal : 97
-
-Archive member name at 13CEE: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 30 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000001C
- DLL name : reader3.dll
- Symbol name : _BeginReadRTC@8
- Type : code
- Name type : ordinal
- Ordinal : 98
-
-Archive member name at 13D5A: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 44 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000030
- DLL name : reader3.dll
- Symbol name : _BeginReadRadioFirmwareVersion_R3@8
- Type : code
- Name type : ordinal
- Ordinal : 99
-
-Archive member name at 13DDA: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3F size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002B
- DLL name : reader3.dll
- Symbol name : _BeginReadRateOffPercentage@16
- Type : code
- Name type : ordinal
- Ordinal : 100
-
-Archive member name at 13E56: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 33 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000001F
- DLL name : reader3.dll
- Symbol name : _BeginReadRates@16
- Type : code
- Name type : ordinal
- Ordinal : 101
-
-Archive member name at 13EC6: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 43 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002F
- DLL name : reader3.dll
- Symbol name : _BeginReadResponderTriggerUtc_R3@8
- Type : code
- Name type : ordinal
- Ordinal : 102
-
-Archive member name at 13F46: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3E size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002A
- DLL name : reader3.dll
- Symbol name : _BeginReadReturnForReadTime@8
- Type : code
- Name type : ordinal
- Ordinal : 103
-
-Archive member name at 13FC0: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 37 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000023
- DLL name : reader3.dll
- Symbol name : _BeginReadRunTime_R3@8
- Type : code
- Name type : ordinal
- Ordinal : 104
-
-Archive member name at 14034: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 38 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000024
- DLL name : reader3.dll
- Symbol name : _BeginReadScratchPad@16
- Type : code
- Name type : ordinal
- Ordinal : 105
-
-Archive member name at 140A8: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3B size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000027
- DLL name : reader3.dll
- Symbol name : _BeginReadScratchpadSize@8
- Type : code
- Name type : ordinal
- Ordinal : 106
-
-Archive member name at 14120: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3D size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000029
- DLL name : reader3.dll
- Symbol name : _BeginReadSelfTestInterval@8
- Type : code
- Name type : ordinal
- Ordinal : 107
-
-Archive member name at 1419A: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3B size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000027
- DLL name : reader3.dll
- Symbol name : _BeginReadSensitivities@16
- Type : code
- Name type : ordinal
- Ordinal : 108
-
-Archive member name at 14212: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3E size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002A
- DLL name : reader3.dll
- Symbol name : _BeginReadSensitivities_R3@16
- Type : code
- Name type : ordinal
- Ordinal : 109
-
-Archive member name at 1428C: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 48 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000034
- DLL name : reader3.dll
- Symbol name : _BeginReadSnapshotAlarmThresholds_R3@12
- Type : code
- Name type : ordinal
- Ordinal : 110
-
-Archive member name at 14310: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 41 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002D
- DLL name : reader3.dll
- Symbol name : _BeginReadSnapshotCounters_R3@12
- Type : code
- Name type : ordinal
- Ordinal : 111
-
-Archive member name at 1438E: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 45 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000031
- DLL name : reader3.dll
- Symbol name : _BeginReadSnapshotMeasurements_R3@12
- Type : code
- Name type : ordinal
- Ordinal : 112
-
-Archive member name at 14410: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 40 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002C
- DLL name : reader3.dll
- Symbol name : _BeginReadSnapshotSummary_R3@12
- Type : code
- Name type : ordinal
- Ordinal : 113
-
-Archive member name at 1448C: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 33 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000001F
- DLL name : reader3.dll
- Symbol name : _BeginReadStatus@8
- Type : code
- Name type : ordinal
- Ordinal : 114
-
-Archive member name at 144FC: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 38 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000024
- DLL name : reader3.dll
- Symbol name : _BeginReadStayTime_R3@8
- Type : code
- Name type : ordinal
- Ordinal : 115
-
-Archive member name at 14570: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 42 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002E
- DLL name : reader3.dll
- Symbol name : _BeginReadSwitchOnFromButton_R3@8
- Type : code
- Name type : ordinal
- Ordinal : 116
-
-Archive member name at 145EE: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3E size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002A
- DLL name : reader3.dll
- Symbol name : _BeginReadTaskDatabaseId_R3@8
- Type : code
- Name type : ordinal
- Ordinal : 117
-
-Archive member name at 14668: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 37 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000023
- DLL name : reader3.dll
- Symbol name : _BeginReadTaskId_R3@12
- Type : code
- Name type : ordinal
- Ordinal : 118
-
-Archive member name at 146DC: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 43 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002F
- DLL name : reader3.dll
- Symbol name : _BeginReadTelemetryAdvConfig_R3@12
- Type : code
- Name type : ordinal
- Ordinal : 119
-
-Archive member name at 1475C: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 44 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000030
- DLL name : reader3.dll
- Symbol name : _BeginReadTelemetryAdvContent_R3@12
- Type : code
- Name type : ordinal
- Ordinal : 120
-
-Archive member name at 147DC: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 42 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002E
- DLL name : reader3.dll
- Symbol name : _BeginReadTelemetryCxnConfig_R3@8
- Type : code
- Name type : ordinal
- Ordinal : 121
-
-Archive member name at 1485A: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 40 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002C
- DLL name : reader3.dll
- Symbol name : _BeginReadTelemetryEnable_R3@12
- Type : code
- Name type : ordinal
- Ordinal : 122
-
-Archive member name at 148D6: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3D size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000029
- DLL name : reader3.dll
- Symbol name : _BeginReadTelemetryMode_R2@8
- Type : code
- Name type : ordinal
- Ordinal : 123
-
-Archive member name at 14950: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 47 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000033
- DLL name : reader3.dll
- Symbol name : _BeginReadTelemetryReportInterval_R3@8
- Type : code
- Name type : ordinal
- Ordinal : 124
-
-Archive member name at 149D4: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 41 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002D
- DLL name : reader3.dll
- Symbol name : _BeginReadTelemetryTxPower_R3@12
- Type : code
- Name type : ordinal
- Ordinal : 125
-
-Archive member name at 14A52: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 38 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000024
- DLL name : reader3.dll
- Symbol name : _BeginReadTotalDoses@16
- Type : code
- Name type : ordinal
- Ordinal : 126
-
-Archive member name at 14AC6: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3F size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002B
- DLL name : reader3.dll
- Symbol name : _BeginReadTriggeredDoses_R3@16
- Type : code
- Name type : ordinal
- Ordinal : 127
-
-Archive member name at 14B42: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 35 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000021
- DLL name : reader3.dll
- Symbol name : _BeginReadVoltages@8
- Type : code
- Name type : ordinal
- Ordinal : 128
-
-Archive member name at 14BB4: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 40 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002C
- DLL name : reader3.dll
- Symbol name : _BeginReadWearerDatabaseId_R3@8
- Type : code
- Name type : ordinal
- Ordinal : 129
-
-Archive member name at 14C30: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 36 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000022
- DLL name : reader3.dll
- Symbol name : _BeginReadWearerId@12
- Type : code
- Name type : ordinal
- Ordinal : 130
-
-Archive member name at 14CA2: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 41 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002D
- DLL name : reader3.dll
- Symbol name : _BeginReadZoneAccessPermitted@12
- Type : code
- Name type : ordinal
- Ordinal : 131
-
-Archive member name at 14D20: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3B size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000027
- DLL name : reader3.dll
- Symbol name : _BeginReadZoneControlMap@8
- Type : code
- Name type : ordinal
- Ordinal : 132
-
-Archive member name at 14D98: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3C size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000028
- DLL name : reader3.dll
- Symbol name : _BeginSetBaselineCounters@8
- Type : code
- Name type : ordinal
- Ordinal : 133
-
-Archive member name at 14E10: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3A size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000026
- DLL name : reader3.dll
- Symbol name : _BeginStartDetectorTest@8
- Type : code
- Name type : ordinal
- Ordinal : 134
-
-Archive member name at 14E86: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3C size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000028
- DLL name : reader3.dll
- Symbol name : _BeginTriggerBacklight_R3@8
- Type : code
- Name type : ordinal
- Ordinal : 135
-
-Archive member name at 14EFE: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 40 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002C
- DLL name : reader3.dll
- Symbol name : _BeginTriggerResponderMode_R3@8
- Type : code
- Name type : ordinal
- Ordinal : 136
-
-Archive member name at 14F7A: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 40 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002C
- DLL name : reader3.dll
- Symbol name : _BeginValidateEpdOwnerKey_R3@12
- Type : code
- Name type : ordinal
- Ordinal : 137
-
-Archive member name at 14FF6: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 38 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000024
- DLL name : reader3.dll
- Symbol name : _BeginWriteAccessKey@20
- Type : code
- Name type : ordinal
- Ordinal : 138
-
-Archive member name at 1506A: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3A size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000026
- DLL name : reader3.dll
- Symbol name : _BeginWriteAccessLevel@20
- Type : code
- Name type : ordinal
- Ordinal : 139
-
-Archive member name at 150E0: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 4B size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000037
- DLL name : reader3.dll
- Symbol name : _BeginWriteAccessPermissionsForLevel_R3@20
- Type : code
- Name type : ordinal
- Ordinal : 140
-
-Archive member name at 15168: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 48 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000034
- DLL name : reader3.dll
- Symbol name : _BeginWriteAlarmConfigurationLock_R3@16
- Type : code
- Name type : ordinal
- Ordinal : 141
-
-Archive member name at 151EC: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 44 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000030
- DLL name : reader3.dll
- Symbol name : _BeginWriteAlarmConfiguration_R3@16
- Type : code
- Name type : ordinal
- Ordinal : 142
-
-Archive member name at 1526C: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3E size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002A
- DLL name : reader3.dll
- Symbol name : _BeginWriteAlarmThresholds@20
- Type : code
- Name type : ordinal
- Ordinal : 143
-
-Archive member name at 152E6: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 45 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000031
- DLL name : reader3.dll
- Symbol name : _BeginWriteBacklightBrightness_R3@12
- Type : code
- Name type : ordinal
- Ordinal : 144
-
-Archive member name at 15368: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 41 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002D
- DLL name : reader3.dll
- Symbol name : _BeginWriteBacklightEnable_R3@12
- Type : code
- Name type : ordinal
- Ordinal : 145
-
-Archive member name at 153E6: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 41 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002D
- DLL name : reader3.dll
- Symbol name : _BeginWriteBacklightPeriod_R3@12
- Type : code
- Name type : ordinal
- Ordinal : 146
-
-Archive member name at 15464: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 47 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000033
- DLL name : reader3.dll
- Symbol name : _BeginWriteBatteryCriticalTiming_R3@16
- Type : code
- Name type : ordinal
- Ordinal : 147
-
-Archive member name at 154E8: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 42 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002E
- DLL name : reader3.dll
- Symbol name : _BeginWriteBatteryLowThreshold@16
- Type : code
- Name type : ordinal
- Ordinal : 148
-
-Archive member name at 15566: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 42 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002E
- DLL name : reader3.dll
- Symbol name : _BeginWriteBatteryTestInterval@12
- Type : code
- Name type : ordinal
- Ordinal : 149
-
-Archive member name at 155E4: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 45 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000031
- DLL name : reader3.dll
- Symbol name : _BeginWriteBatteryTypeOverride_R3@12
- Type : code
- Name type : ordinal
- Ordinal : 150
-
-Archive member name at 15666: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 39 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000025
- DLL name : reader3.dll
- Symbol name : _BeginWriteCalDueDate@12
- Type : code
- Name type : ordinal
- Ordinal : 151
-
-Archive member name at 156DC: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3C size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000028
- DLL name : reader3.dll
- Symbol name : _BeginWriteCalDueDate_R3@12
- Type : code
- Name type : ordinal
- Ordinal : 152
-
-Archive member name at 15754: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3E size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002A
- DLL name : reader3.dll
- Symbol name : _BeginWriteCalReference_R3@12
- Type : code
- Name type : ordinal
- Ordinal : 153
-
-Archive member name at 157CE: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 45 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000031
- DLL name : reader3.dll
- Symbol name : _BeginWriteCalibrationFacility_R3@16
- Type : code
- Name type : ordinal
- Ordinal : 154
-
-Archive member name at 15850: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3E size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002A
- DLL name : reader3.dll
- Symbol name : _BeginWriteCapabilities_R3@12
- Type : code
- Name type : ordinal
- Ordinal : 155
-
-Archive member name at 158CA: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3D size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000029
- DLL name : reader3.dll
- Symbol name : _BeginWriteChirpEnable_R3@12
- Type : code
- Name type : ordinal
- Ordinal : 156
-
-Archive member name at 15944: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3F size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002B
- DLL name : reader3.dll
- Symbol name : _BeginWriteChirpSensitivity@12
- Type : code
- Name type : ordinal
- Ordinal : 157
-
-Archive member name at 159C0: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 42 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002E
- DLL name : reader3.dll
- Symbol name : _BeginWriteClearDoseOnSwitchOn@12
- Type : code
- Name type : ordinal
- Ordinal : 158
-
-Archive member name at 15A3E: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 41 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002D
- DLL name : reader3.dll
- Symbol name : _BeginWriteDeadTimeFactors_R3@16
- Type : code
- Name type : ordinal
- Ordinal : 159
-
-Archive member name at 15ABC: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3F size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002B
- DLL name : reader3.dll
- Symbol name : _BeginWriteDebugRegister_R3@16
- Type : code
- Name type : ordinal
- Ordinal : 160
-
-Archive member name at 15B38: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 44 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000030
- DLL name : reader3.dll
- Symbol name : _BeginWriteDetectorTestLimits_R3@16
- Type : code
- Name type : ordinal
- Ordinal : 161
-
-Archive member name at 15BB8: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 44 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000030
- DLL name : reader3.dll
- Symbol name : _BeginWriteDetectorThresholds_R2@24
- Type : code
- Name type : ordinal
- Ordinal : 162
-
-Archive member name at 15C38: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 44 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000030
- DLL name : reader3.dll
- Symbol name : _BeginWriteDetectorThresholds_R3@16
- Type : code
- Name type : ordinal
- Ordinal : 163
-
-Archive member name at 15CB8: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 4A size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000036
- DLL name : reader3.dll
- Symbol name : _BeginWriteDisplayEnablePermissions_R3@20
- Type : code
- Name type : ordinal
- Ordinal : 164
-
-Archive member name at 15D3E: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 40 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002C
- DLL name : reader3.dll
- Symbol name : _BeginWriteDisplayEnables_R3@16
- Type : code
- Name type : ordinal
- Ordinal : 165
-
-Archive member name at 15DBA: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3D size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000029
- DLL name : reader3.dll
- Symbol name : _BeginWriteDisplayOptions@16
- Type : code
- Name type : ordinal
- Ordinal : 166
-
-Archive member name at 15E34: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 44 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000030
- DLL name : reader3.dll
- Symbol name : _BeginWriteDisplayOptionsLock_R3@16
- Type : code
- Name type : ordinal
- Ordinal : 167
-
-Archive member name at 15EB4: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3D size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000029
- DLL name : reader3.dll
- Symbol name : _BeginWriteDisplayTimeout@12
- Type : code
- Name type : ordinal
- Ordinal : 168
-
-Archive member name at 15F2E: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 4A size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000036
- DLL name : reader3.dll
- Symbol name : _BeginWriteDoseProfileDoseIncrement_R3@12
- Type : code
- Name type : ordinal
- Ordinal : 169
-
-Archive member name at 15FB4: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 42 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002E
- DLL name : reader3.dll
- Symbol name : _BeginWriteDoseProfileInterval@12
- Type : code
- Name type : ordinal
- Ordinal : 170
-
-Archive member name at 16032: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 47 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000033
- DLL name : reader3.dll
- Symbol name : _BeginWriteDoseProfileMeasurands_R3@16
- Type : code
- Name type : ordinal
- Ordinal : 171
-
-Archive member name at 160B6: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 42 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002E
- DLL name : reader3.dll
- Symbol name : _BeginWriteDoseSaveInterval_R3@12
- Type : code
- Name type : ordinal
- Ordinal : 172
-
-Archive member name at 16134: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3F size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002B
- DLL name : reader3.dll
- Symbol name : _BeginWriteDoseWritableFlag@12
- Type : code
- Name type : ordinal
- Ordinal : 173
-
-Archive member name at 161B0: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 34 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000020
- DLL name : reader3.dll
- Symbol name : _BeginWriteDoses@16
- Type : code
- Name type : ordinal
- Ordinal : 174
-
-Archive member name at 16220: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 35 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000021
- DLL name : reader3.dll
- Symbol name : _BeginWriteEEProm@20
- Type : code
- Name type : ordinal
- Ordinal : 175
-
-Archive member name at 16292: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3F size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002B
- DLL name : reader3.dll
- Symbol name : _BeginWriteEpdPartNumber_R3@12
- Type : code
- Name type : ordinal
- Ordinal : 176
-
-Archive member name at 1630E: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3D size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000029
- DLL name : reader3.dll
- Symbol name : _BeginWriteEpdRevision_R3@12
- Type : code
- Name type : ordinal
- Ordinal : 177
-
-Archive member name at 16388: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3E size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002A
- DLL name : reader3.dll
- Symbol name : _BeginWriteEpdSerialNumber@12
- Type : code
- Name type : ordinal
- Ordinal : 178
-
-Archive member name at 16402: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3F size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002B
- DLL name : reader3.dll
- Symbol name : _BeginWriteEventLogLevel_R3@12
- Type : code
- Name type : ordinal
- Ordinal : 179
-
-Archive member name at 1647E: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3D size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000029
- DLL name : reader3.dll
- Symbol name : _BeginWriteFactoryCalDate@12
- Type : code
- Name type : ordinal
- Ordinal : 180
-
-Archive member name at 164F8: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 41 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002D
- DLL name : reader3.dll
- Symbol name : _BeginWriteFemSerialNumber_R3@12
- Type : code
- Name type : ordinal
- Ordinal : 181
-
-Archive member name at 16576: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3E size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002A
- DLL name : reader3.dll
- Symbol name : _BeginWriteGainableFlag_R3@12
- Type : code
- Name type : ordinal
- Ordinal : 182
-
-Archive member name at 165F0: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 37 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000023
- DLL name : reader3.dll
- Symbol name : _BeginWriteGains_R3@16
- Type : code
- Name type : ordinal
- Ordinal : 183
-
-Archive member name at 16664: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3C size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000028
- DLL name : reader3.dll
- Symbol name : _BeginWriteGoldenFlag_R3@12
- Type : code
- Name type : ordinal
- Ordinal : 184
-
-Archive member name at 166DC: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 40 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002C
- DLL name : reader3.dll
- Symbol name : _BeginWriteGraphicBitmap_R3@352
- Type : code
- Name type : ordinal
- Ordinal : 185
-
-Archive member name at 16758: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 48 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000034
- DLL name : reader3.dll
- Symbol name : _BeginWriteLastCalibrationProcess_R3@20
- Type : code
- Name type : ordinal
- Ordinal : 186
-
-Archive member name at 167DC: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3C size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000028
- DLL name : reader3.dll
- Symbol name : _BeginWriteMarkNumber_R3@12
- Type : code
- Name type : ordinal
- Ordinal : 187
-
-Archive member name at 16854: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3B size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000027
- DLL name : reader3.dll
- Symbol name : _BeginWriteModelName_R3@40
- Type : code
- Name type : ordinal
- Ordinal : 188
-
-Archive member name at 168CC: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 43 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002F
- DLL name : reader3.dll
- Symbol name : _BeginWriteNotCalibratedFlag_R3@12
- Type : code
- Name type : ordinal
- Ordinal : 189
-
-Archive member name at 1694C: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 4C size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000038
- DLL name : reader3.dll
- Symbol name : _BeginWriteOffModeBatteryTestInterval_R3@12
- Type : code
- Name type : ordinal
- Ordinal : 190
-
-Archive member name at 169D4: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 40 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002C
- DLL name : reader3.dll
- Symbol name : _BeginWriteOffModeDisplay_R3@16
- Type : code
- Name type : ordinal
- Ordinal : 191
-
-Archive member name at 16A50: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3F size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002B
- DLL name : reader3.dll
- Symbol name : _BeginWritePcbPartNumber_R3@12
- Type : code
- Name type : ordinal
- Ordinal : 192
-
-Archive member name at 16ACC: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3D size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000029
- DLL name : reader3.dll
- Symbol name : _BeginWritePcbRevision_R3@12
- Type : code
- Name type : ordinal
- Ordinal : 193
-
-Archive member name at 16B46: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 41 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002D
- DLL name : reader3.dll
- Symbol name : _BeginWritePcbSerialNumber_R3@12
- Type : code
- Name type : ordinal
- Ordinal : 194
-
-Archive member name at 16BC4: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 41 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002D
- DLL name : reader3.dll
- Symbol name : _BeginWritePulseModeEnable_R3@12
- Type : code
- Name type : ordinal
- Ordinal : 195
-
-Archive member name at 16C42: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 45 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000031
- DLL name : reader3.dll
- Symbol name : _BeginWritePulseModeIndustrial_R3@12
- Type : code
- Name type : ordinal
- Ordinal : 196
-
-Archive member name at 16CC4: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 44 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000030
- DLL name : reader3.dll
- Symbol name : _BeginWritePulseModeThreshold_R3@12
- Type : code
- Name type : ordinal
- Ordinal : 197
-
-Archive member name at 16D44: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 4E size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000003A
- DLL name : reader3.dll
- Symbol name : _BeginWritePulsedModeOverrangeThreshold_R3@12
- Type : code
- Name type : ordinal
- Ordinal : 198
-
-Archive member name at 16DCE: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 45 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000031
- DLL name : reader3.dll
- Symbol name : _BeginWriteQuickAccessDisplays_R3@16
- Type : code
- Name type : ordinal
- Ordinal : 199
-
-Archive member name at 16E50: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 35 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000021
- DLL name : reader3.dll
- Symbol name : _BeginWriteRTC_R3@12
- Type : code
- Name type : ordinal
- Ordinal : 200
-
-Archive member name at 16EC2: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 40 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002C
- DLL name : reader3.dll
- Symbol name : _BeginWriteRateOffPercentage@16
- Type : code
- Name type : ordinal
- Ordinal : 201
-
-Archive member name at 16F3E: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 40 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002C
- DLL name : reader3.dll
- Symbol name : _BeginWriteReturnForReadTime@12
- Type : code
- Name type : ordinal
- Ordinal : 202
-
-Archive member name at 16FBA: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 39 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000025
- DLL name : reader3.dll
- Symbol name : _BeginWriteScratchPad@20
- Type : code
- Name type : ordinal
- Ordinal : 203
-
-Archive member name at 17030: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3F size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002B
- DLL name : reader3.dll
- Symbol name : _BeginWriteSelfTestInterval@12
- Type : code
- Name type : ordinal
- Ordinal : 204
-
-Archive member name at 170AC: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3F size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002B
- DLL name : reader3.dll
- Symbol name : _BeginWriteSensitivities_R2@32
- Type : code
- Name type : ordinal
- Ordinal : 205
-
-Archive member name at 17128: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3F size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002B
- DLL name : reader3.dll
- Symbol name : _BeginWriteSensitivities_R3@16
- Type : code
- Name type : ordinal
- Ordinal : 206
-
-Archive member name at 171A4: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3A size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000026
- DLL name : reader3.dll
- Symbol name : _BeginWriteStayTime_R3@12
- Type : code
- Name type : ordinal
- Ordinal : 207
-
-Archive member name at 1721A: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 44 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000030
- DLL name : reader3.dll
- Symbol name : _BeginWriteSwitchOnFromButton_R3@12
- Type : code
- Name type : ordinal
- Ordinal : 208
-
-Archive member name at 1729A: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 40 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002C
- DLL name : reader3.dll
- Symbol name : _BeginWriteTaskDatabaseId_R3@24
- Type : code
- Name type : ordinal
- Ordinal : 209
-
-Archive member name at 17316: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 38 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000024
- DLL name : reader3.dll
- Symbol name : _BeginWriteTaskId_R3@76
- Type : code
- Name type : ordinal
- Ordinal : 210
-
-Archive member name at 1738A: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 44 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000030
- DLL name : reader3.dll
- Symbol name : _BeginWriteTelemetryAdvConfig_R3@12
- Type : code
- Name type : ordinal
- Ordinal : 211
-
-Archive member name at 1740A: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 45 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000031
- DLL name : reader3.dll
- Symbol name : _BeginWriteTelemetryAdvContent_R3@16
- Type : code
- Name type : ordinal
- Ordinal : 212
-
-Archive member name at 1748C: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 44 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000030
- DLL name : reader3.dll
- Symbol name : _BeginWriteTelemetryCxnConfig_R3@12
- Type : code
- Name type : ordinal
- Ordinal : 213
-
-Archive member name at 1750C: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 41 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002D
- DLL name : reader3.dll
- Symbol name : _BeginWriteTelemetryEnable_R3@16
- Type : code
- Name type : ordinal
- Ordinal : 214
-
-Archive member name at 1758A: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3F size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002B
- DLL name : reader3.dll
- Symbol name : _BeginWriteTelemetryMode_R2@12
- Type : code
- Name type : ordinal
- Ordinal : 215
-
-Archive member name at 17606: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 49 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000035
- DLL name : reader3.dll
- Symbol name : _BeginWriteTelemetryReportInterval_R3@12
- Type : code
- Name type : ordinal
- Ordinal : 216
-
-Archive member name at 1768C: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 42 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002E
- DLL name : reader3.dll
- Symbol name : _BeginWriteTelemetryTxPower_R3@16
- Type : code
- Name type : ordinal
- Ordinal : 217
-
-Archive member name at 1770A: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 39 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000025
- DLL name : reader3.dll
- Symbol name : _BeginWriteTotalDoses@16
- Type : code
- Name type : ordinal
- Ordinal : 218
-
-Archive member name at 17780: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 40 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002C
- DLL name : reader3.dll
- Symbol name : _BeginWriteTriggeredDoses_R3@16
- Type : code
- Name type : ordinal
- Ordinal : 219
-
-Archive member name at 177FC: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 42 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002E
- DLL name : reader3.dll
- Symbol name : _BeginWriteWearerDatabaseId_R3@24
- Type : code
- Name type : ordinal
- Ordinal : 220
-
-Archive member name at 1787A: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 37 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000023
- DLL name : reader3.dll
- Symbol name : _BeginWriteWearerId@76
- Type : code
- Name type : ordinal
- Ordinal : 221
-
-Archive member name at 178EE: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3D size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000029
- DLL name : reader3.dll
- Symbol name : _BeginWriteZoneControlMap@16
- Type : code
- Name type : ordinal
- Ordinal : 222
-
-Archive member name at 17968: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3A size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000026
- DLL name : reader3.dll
- Symbol name : _CleanUpReadDoseProfile@4
- Type : code
- Name type : ordinal
- Ordinal : 223
-
-Archive member name at 179DE: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 37 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000023
- DLL name : reader3.dll
- Symbol name : _CleanUpReadEventLog@4
- Type : code
- Name type : ordinal
- Ordinal : 224
-
-Archive member name at 17A52: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 2F size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000001B
- DLL name : reader3.dll
- Symbol name : _CloseReader@4
- Type : code
- Name type : ordinal
- Ordinal : 225
-
-Archive member name at 17ABE: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 2A size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000016
- DLL name : reader3.dll
- Symbol name : _Commit@4
- Type : code
- Name type : ordinal
- Ordinal : 226
-
-Archive member name at 17B24: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 2C size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000018
- DLL name : reader3.dll
- Symbol name : _Connect@20
- Type : code
- Name type : ordinal
- Ordinal : 227
-
-Archive member name at 17B8C: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 39 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000025
- DLL name : reader3.dll
- Symbol name : _CreateReaderInterface@0
- Type : code
- Name type : ordinal
- Ordinal : 228
-
-Archive member name at 17C02: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3A size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000026
- DLL name : reader3.dll
- Symbol name : _DestroyReaderInterface@4
- Type : code
- Name type : ordinal
- Ordinal : 229
-
-Archive member name at 17C78: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 2E size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000001A
- DLL name : reader3.dll
- Symbol name : _Disconnect@4
- Type : code
- Name type : ordinal
- Ordinal : 230
-
-Archive member name at 17CE2: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 38 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000024
- DLL name : reader3.dll
- Symbol name : _DisconnectAndNotify@12
- Type : code
- Name type : ordinal
- Ordinal : 231
-
-Archive member name at 17D56: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 35 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000021
- DLL name : reader3.dll
- Symbol name : _EndClearAllStatus@8
- Type : code
- Name type : ordinal
- Ordinal : 232
-
-Archive member name at 17DC8: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 30 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000001C
- DLL name : reader3.dll
- Symbol name : _EndClearDose@8
- Type : code
- Name type : ordinal
- Ordinal : 233
-
-Archive member name at 17E34: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3A size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000026
- DLL name : reader3.dll
- Symbol name : _EndClearDoseProfile_R3@8
- Type : code
- Name type : ordinal
- Ordinal : 234
-
-Archive member name at 17EAA: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 35 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000021
- DLL name : reader3.dll
- Symbol name : _EndClearEEPROM_R3@8
- Type : code
- Name type : ordinal
- Ordinal : 235
-
-Archive member name at 17F1C: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 37 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000023
- DLL name : reader3.dll
- Symbol name : _EndClearFaultStatus@8
- Type : code
- Name type : ordinal
- Ordinal : 236
-
-Archive member name at 17F90: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 36 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000022
- DLL name : reader3.dll
- Symbol name : _EndClearGraphic_R3@8
- Type : code
- Name type : ordinal
- Ordinal : 237
-
-Archive member name at 18002: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 39 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000025
- DLL name : reader3.dll
- Symbol name : _EndClearLatchedAlarms@8
- Type : code
- Name type : ordinal
- Ordinal : 238
-
-Archive member name at 18078: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 35 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000021
- DLL name : reader3.dll
- Symbol name : _EndClearPeakRates@8
- Type : code
- Name type : ordinal
- Ordinal : 239
-
-Archive member name at 180EA: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 36 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000022
- DLL name : reader3.dll
- Symbol name : _EndClearScratchpad@8
- Type : code
- Name type : ordinal
- Ordinal : 240
-
-Archive member name at 1815C: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 35 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000021
- DLL name : reader3.dll
- Symbol name : _EndClearTotalDose@8
- Type : code
- Name type : ordinal
- Ordinal : 241
-
-Archive member name at 181CE: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3D size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000029
- DLL name : reader3.dll
- Symbol name : _EndClearWearerOrTaskId_R3@8
- Type : code
- Name type : ordinal
- Ordinal : 242
-
-Archive member name at 18248: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 31 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000001D
- DLL name : reader3.dll
- Symbol name : _EndDeissueEPD@8
- Type : code
- Name type : ordinal
- Ordinal : 243
-
-Archive member name at 182B6: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3A size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000026
- DLL name : reader3.dll
- Symbol name : _EndEnableCovertMode_R3@8
- Type : code
- Name type : ordinal
- Ordinal : 244
-
-Archive member name at 1832C: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 39 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000025
- DLL name : reader3.dll
- Symbol name : _EndEnableDeepSleep_R3@8
- Type : code
- Name type : ordinal
- Ordinal : 245
-
-Archive member name at 183A2: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 43 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002F
- DLL name : reader3.dll
- Symbol name : _EndEnableManufacturerLockout_R3@8
- Type : code
- Name type : ordinal
- Ordinal : 246
-
-Archive member name at 18422: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 40 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002C
- DLL name : reader3.dll
- Symbol name : _EndEnableProtectedSession_R3@8
- Type : code
- Name type : ordinal
- Ordinal : 247
-
-Archive member name at 1849E: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3D size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000029
- DLL name : reader3.dll
- Symbol name : _EndEnableResponderMode_R3@8
- Type : code
- Name type : ordinal
- Ordinal : 248
-
-Archive member name at 18518: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 2F size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000001B
- DLL name : reader3.dll
- Symbol name : _EndEpdOnOff@8
- Type : code
- Name type : ordinal
- Ordinal : 249
-
-Archive member name at 18584: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 40 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002C
- DLL name : reader3.dll
- Symbol name : _EndInitiateFirmwareUpdate_R3@8
- Type : code
- Name type : ordinal
- Ordinal : 250
-
-Archive member name at 18600: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 2F size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000001B
- DLL name : reader3.dll
- Symbol name : _EndIssueEPD@8
- Type : code
- Name type : ordinal
- Ordinal : 251
-
-Archive member name at 1866C: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 48 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000034
- DLL name : reader3.dll
- Symbol name : _EndReadAccessPermissionsForLevel_R3@20
- Type : code
- Name type : ordinal
- Ordinal : 252
-
-Archive member name at 186F0: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3E size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002A
- DLL name : reader3.dll
- Symbol name : _EndReadAlarmConfiguration@20
- Type : code
- Name type : ordinal
- Ordinal : 253
-
-Archive member name at 1876A: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 45 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000031
- DLL name : reader3.dll
- Symbol name : _EndReadAlarmConfigurationLock_R3@20
- Type : code
- Name type : ordinal
- Ordinal : 254
-
-Archive member name at 187EC: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 41 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002D
- DLL name : reader3.dll
- Symbol name : _EndReadAlarmConfiguration_R3@20
- Type : code
- Name type : ordinal
- Ordinal : 255
-
-Archive member name at 1886A: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3B size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000027
- DLL name : reader3.dll
- Symbol name : _EndReadAlarmThresholds@12
- Type : code
- Name type : ordinal
- Ordinal : 256
-
-Archive member name at 188E2: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 42 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002E
- DLL name : reader3.dll
- Symbol name : _EndReadBacklightBrightness_R3@12
- Type : code
- Name type : ordinal
- Ordinal : 257
-
-Archive member name at 18960: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3E size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002A
- DLL name : reader3.dll
- Symbol name : _EndReadBacklightEnable_R3@12
- Type : code
- Name type : ordinal
- Ordinal : 258
-
-Archive member name at 189DA: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3E size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002A
- DLL name : reader3.dll
- Symbol name : _EndReadBacklightPeriod_R3@12
- Type : code
- Name type : ordinal
- Ordinal : 259
-
-Archive member name at 18A54: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3A size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000026
- DLL name : reader3.dll
- Symbol name : _EndReadBaselineCounts@24
- Type : code
- Name type : ordinal
- Ordinal : 260
-
-Archive member name at 18ACA: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 44 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000030
- DLL name : reader3.dll
- Symbol name : _EndReadBatteryCriticalTiming_R3@16
- Type : code
- Name type : ordinal
- Ordinal : 261
-
-Archive member name at 18B4A: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3F size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002B
- DLL name : reader3.dll
- Symbol name : _EndReadBatteryLowThreshold@16
- Type : code
- Name type : ordinal
- Ordinal : 262
-
-Archive member name at 18BC6: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3F size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002B
- DLL name : reader3.dll
- Symbol name : _EndReadBatteryTestInterval@12
- Type : code
- Name type : ordinal
- Ordinal : 263
-
-Archive member name at 18C42: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 40 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002C
- DLL name : reader3.dll
- Symbol name : _EndReadBatteryTypeFitted_R3@12
- Type : code
- Name type : ordinal
- Ordinal : 264
-
-Archive member name at 18CBE: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 42 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002E
- DLL name : reader3.dll
- Symbol name : _EndReadBatteryTypeOverride_R3@12
- Type : code
- Name type : ordinal
- Ordinal : 265
-
-Archive member name at 18D3C: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 36 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000022
- DLL name : reader3.dll
- Symbol name : _EndReadCalDueDate@12
- Type : code
- Name type : ordinal
- Ordinal : 266
-
-Archive member name at 18DAE: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 39 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000025
- DLL name : reader3.dll
- Symbol name : _EndReadCalDueDate_R3@12
- Type : code
- Name type : ordinal
- Ordinal : 267
-
-Archive member name at 18E24: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3B size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000027
- DLL name : reader3.dll
- Symbol name : _EndReadCalReference_R3@12
- Type : code
- Name type : ordinal
- Ordinal : 268
-
-Archive member name at 18E9C: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3E size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002A
- DLL name : reader3.dll
- Symbol name : _EndReadCalibrationData_R2@48
- Type : code
- Name type : ordinal
- Ordinal : 269
-
-Archive member name at 18F16: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 42 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002E
- DLL name : reader3.dll
- Symbol name : _EndReadCalibrationFacility_R3@12
- Type : code
- Name type : ordinal
- Ordinal : 270
-
-Archive member name at 18F94: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 38 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000024
- DLL name : reader3.dll
- Symbol name : _EndReadCapabilities@12
- Type : code
- Name type : ordinal
- Ordinal : 271
-
-Archive member name at 19008: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3A size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000026
- DLL name : reader3.dll
- Symbol name : _EndReadChirpEnable_R3@12
- Type : code
- Name type : ordinal
- Ordinal : 272
-
-Archive member name at 1907E: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3C size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000028
- DLL name : reader3.dll
- Symbol name : _EndReadChirpSensitivity@12
- Type : code
- Name type : ordinal
- Ordinal : 273
-
-Archive member name at 190F6: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 32 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000001E
- DLL name : reader3.dll
- Symbol name : _EndReadCounts@28
- Type : code
- Name type : ordinal
- Ordinal : 274
-
-Archive member name at 19164: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3E size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002A
- DLL name : reader3.dll
- Symbol name : _EndReadCurrentAccessLevel@12
- Type : code
- Name type : ordinal
- Ordinal : 275
-
-Archive member name at 191DE: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3E size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002A
- DLL name : reader3.dll
- Symbol name : _EndReadDeadTimeFactors_R3@20
- Type : code
- Name type : ordinal
- Ordinal : 276
-
-Archive member name at 19258: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3C size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000028
- DLL name : reader3.dll
- Symbol name : _EndReadDebugRegister_R3@16
- Type : code
- Name type : ordinal
- Ordinal : 277
-
-Archive member name at 192D0: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 41 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002D
- DLL name : reader3.dll
- Symbol name : _EndReadDetectorTestLimits_R3@20
- Type : code
- Name type : ordinal
- Ordinal : 278
-
-Archive member name at 1934E: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 46 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000032
- DLL name : reader3.dll
- Symbol name : _EndReadDetectorThresholdLimits_R3@20
- Type : code
- Name type : ordinal
- Ordinal : 279
-
-Archive member name at 193D0: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3E size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002A
- DLL name : reader3.dll
- Symbol name : _EndReadDetectorThresholds@20
- Type : code
- Name type : ordinal
- Ordinal : 280
-
-Archive member name at 1944A: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 41 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002D
- DLL name : reader3.dll
- Symbol name : _EndReadDetectorThresholds_R3@20
- Type : code
- Name type : ordinal
- Ordinal : 281
-
-Archive member name at 194C8: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 40 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002C
- DLL name : reader3.dll
- Symbol name : _EndReadDisplayCapability_R3@24
- Type : code
- Name type : ordinal
- Ordinal : 282
-
-Archive member name at 19544: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 47 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000033
- DLL name : reader3.dll
- Symbol name : _EndReadDisplayEnablePermissions_R3@24
- Type : code
- Name type : ordinal
- Ordinal : 283
-
-Archive member name at 195C8: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3D size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000029
- DLL name : reader3.dll
- Symbol name : _EndReadDisplayEnables_R3@20
- Type : code
- Name type : ordinal
- Ordinal : 284
-
-Archive member name at 19642: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3A size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000026
- DLL name : reader3.dll
- Symbol name : _EndReadDisplayOptions@12
- Type : code
- Name type : ordinal
- Ordinal : 285
-
-Archive member name at 196B8: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 41 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002D
- DLL name : reader3.dll
- Symbol name : _EndReadDisplayOptionsLock_R3@12
- Type : code
- Name type : ordinal
- Ordinal : 286
-
-Archive member name at 19736: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3A size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000026
- DLL name : reader3.dll
- Symbol name : _EndReadDisplayTimeout@12
- Type : code
- Name type : ordinal
- Ordinal : 287
-
-Archive member name at 197AC: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 41 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002D
- DLL name : reader3.dll
- Symbol name : _EndReadDoseProfileByIndex_R3@24
- Type : code
- Name type : ordinal
- Ordinal : 288
-
-Archive member name at 1982A: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3D size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000029
- DLL name : reader3.dll
- Symbol name : _EndReadDoseProfileByTime@16
- Type : code
- Name type : ordinal
- Ordinal : 289
-
-Archive member name at 198A4: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 47 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000033
- DLL name : reader3.dll
- Symbol name : _EndReadDoseProfileConfiguration_R3@12
- Type : code
- Name type : ordinal
- Ordinal : 290
-
-Archive member name at 19928: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3F size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002B
- DLL name : reader3.dll
- Symbol name : _EndReadDoseProfileInterval@12
- Type : code
- Name type : ordinal
- Ordinal : 291
-
-Archive member name at 199A4: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3F size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002B
- DLL name : reader3.dll
- Symbol name : _EndReadDoseSaveInterval_R3@12
- Type : code
- Name type : ordinal
- Ordinal : 292
-
-Archive member name at 19A20: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 31 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000001D
- DLL name : reader3.dll
- Symbol name : _EndReadDoses@24
- Type : code
- Name type : ordinal
- Ordinal : 293
-
-Archive member name at 19A8E: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 32 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000001E
- DLL name : reader3.dll
- Symbol name : _EndReadEEProm@24
- Type : code
- Name type : ordinal
- Ordinal : 294
-
-Archive member name at 19AFC: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 39 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000025
- DLL name : reader3.dll
- Symbol name : _EndReadEpdIdentities@36
- Type : code
- Name type : ordinal
- Ordinal : 295
-
-Archive member name at 19B72: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3C size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000028
- DLL name : reader3.dll
- Symbol name : _EndReadEpdPartNumber_R3@12
- Type : code
- Name type : ordinal
- Ordinal : 296
-
-Archive member name at 19BEA: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3A size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000026
- DLL name : reader3.dll
- Symbol name : _EndReadEpdRevision_R3@12
- Type : code
- Name type : ordinal
- Ordinal : 297
-
-Archive member name at 19C60: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 38 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000024
- DLL name : reader3.dll
- Symbol name : _EndReadEpdSerialNum@12
- Type : code
- Name type : ordinal
- Ordinal : 298
-
-Archive member name at 19CD4: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 33 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000001F
- DLL name : reader3.dll
- Symbol name : _EndReadEpdType@12
- Type : code
- Name type : ordinal
- Ordinal : 299
-
-Archive member name at 19D44: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3C size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000028
- DLL name : reader3.dll
- Symbol name : _EndReadEventLogLevel_R3@12
- Type : code
- Name type : ordinal
- Ordinal : 300
-
-Archive member name at 19DBC: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 39 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000025
- DLL name : reader3.dll
- Symbol name : _EndReadEventsByIndex@16
- Type : code
- Name type : ordinal
- Ordinal : 301
-
-Archive member name at 19E32: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3A size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000026
- DLL name : reader3.dll
- Symbol name : _EndReadFactoryCalDate@12
- Type : code
- Name type : ordinal
- Ordinal : 302
-
-Archive member name at 19EA8: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3B size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000027
- DLL name : reader3.dll
- Symbol name : _EndReadFemSerialNum_R3@12
- Type : code
- Name type : ordinal
- Ordinal : 303
-
-Archive member name at 19F20: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 41 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002D
- DLL name : reader3.dll
- Symbol name : _EndReadFirmwarePartNumber_R3@12
- Type : code
- Name type : ordinal
- Ordinal : 304
-
-Archive member name at 19F9E: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3B size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000027
- DLL name : reader3.dll
- Symbol name : _EndReadFirmwareVersion@12
- Type : code
- Name type : ordinal
- Ordinal : 305
-
-Archive member name at 1A016: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3E size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002A
- DLL name : reader3.dll
- Symbol name : _EndReadFlashTestCounts_R3@24
- Type : code
- Name type : ordinal
- Ordinal : 306
-
-Archive member name at 1A090: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3A size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000026
- DLL name : reader3.dll
- Symbol name : _EndReadFpgaVersion_R3@16
- Type : code
- Name type : ordinal
- Ordinal : 307
-
-Archive member name at 1A106: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 31 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000001D
- DLL name : reader3.dll
- Symbol name : _EndReadGains@20
- Type : code
- Name type : ordinal
- Ordinal : 308
-
-Archive member name at 1A174: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 34 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000020
- DLL name : reader3.dll
- Symbol name : _EndReadGains_R3@20
- Type : code
- Name type : ordinal
- Ordinal : 309
-
-Archive member name at 1A1E4: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3A size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000026
- DLL name : reader3.dll
- Symbol name : _EndReadGraphicData_R3@12
- Type : code
- Name type : ordinal
- Ordinal : 310
-
-Archive member name at 1A25A: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3A size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000026
- DLL name : reader3.dll
- Symbol name : _EndReadGraphicSize_R3@12
- Type : code
- Name type : ordinal
- Ordinal : 311
-
-Archive member name at 1A2D0: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 45 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000031
- DLL name : reader3.dll
- Symbol name : _EndReadLastCalibrationProcess_R3@12
- Type : code
- Name type : ordinal
- Ordinal : 312
-
-Archive member name at 1A352: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 36 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000022
- DLL name : reader3.dll
- Symbol name : _EndReadMarkNumber@12
- Type : code
- Name type : ordinal
- Ordinal : 313
-
-Archive member name at 1A3C4: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3B size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000027
- DLL name : reader3.dll
- Symbol name : _EndReadMeasurandIds_R3@20
- Type : code
- Name type : ordinal
- Ordinal : 314
-
-Archive member name at 1A43C: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 38 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000024
- DLL name : reader3.dll
- Symbol name : _EndReadModelName_R3@12
- Type : code
- Name type : ordinal
- Ordinal : 315
-
-Archive member name at 1A4B0: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 49 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000035
- DLL name : reader3.dll
- Symbol name : _EndReadOffModeBatteryTestInterval_R3@12
- Type : code
- Name type : ordinal
- Ordinal : 316
-
-Archive member name at 1A536: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3D size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000029
- DLL name : reader3.dll
- Symbol name : _EndReadOffModeDisplay_R3@16
- Type : code
- Name type : ordinal
- Ordinal : 317
-
-Archive member name at 1A5B0: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3C size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000028
- DLL name : reader3.dll
- Symbol name : _EndReadPcbPartNumber_R3@12
- Type : code
- Name type : ordinal
- Ordinal : 318
-
-Archive member name at 1A628: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3A size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000026
- DLL name : reader3.dll
- Symbol name : _EndReadPcbRevision_R3@12
- Type : code
- Name type : ordinal
- Ordinal : 319
-
-Archive member name at 1A69E: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3B size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000027
- DLL name : reader3.dll
- Symbol name : _EndReadPcbSerialNum_R3@12
- Type : code
- Name type : ordinal
- Ordinal : 320
-
-Archive member name at 1A716: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 35 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000021
- DLL name : reader3.dll
- Symbol name : _EndReadPeakRates@20
- Type : code
- Name type : ordinal
- Ordinal : 321
-
-Archive member name at 1A788: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3E size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002A
- DLL name : reader3.dll
- Symbol name : _EndReadPulseModeEnable_R3@12
- Type : code
- Name type : ordinal
- Ordinal : 322
-
-Archive member name at 1A802: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 42 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002E
- DLL name : reader3.dll
- Symbol name : _EndReadPulseModeIndustrial_R3@12
- Type : code
- Name type : ordinal
- Ordinal : 323
-
-Archive member name at 1A880: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 41 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002D
- DLL name : reader3.dll
- Symbol name : _EndReadPulseModeThreshold_R3@12
- Type : code
- Name type : ordinal
- Ordinal : 324
-
-Archive member name at 1A8FE: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 4B size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000037
- DLL name : reader3.dll
- Symbol name : _EndReadPulsedModeOverrangeThreshold_R3@12
- Type : code
- Name type : ordinal
- Ordinal : 325
-
-Archive member name at 1A986: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 37 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000023
- DLL name : reader3.dll
- Symbol name : _EndReadQualityData@12
- Type : code
- Name type : ordinal
- Ordinal : 326
-
-Archive member name at 1A9FA: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 42 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002E
- DLL name : reader3.dll
- Symbol name : _EndReadQuickAccessDisplays_R3@20
- Type : code
- Name type : ordinal
- Ordinal : 327
-
-Archive member name at 1AA78: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 2F size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000001B
- DLL name : reader3.dll
- Symbol name : _EndReadRTC@12
- Type : code
- Name type : ordinal
- Ordinal : 328
-
-Archive member name at 1AAE4: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 43 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002F
- DLL name : reader3.dll
- Symbol name : _EndReadRadioFirmwareVersion_R3@12
- Type : code
- Name type : ordinal
- Ordinal : 329
-
-Archive member name at 1AB64: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3D size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000029
- DLL name : reader3.dll
- Symbol name : _EndReadRateOffPercentage@20
- Type : code
- Name type : ordinal
- Ordinal : 330
-
-Archive member name at 1ABDE: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 31 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000001D
- DLL name : reader3.dll
- Symbol name : _EndReadRates@24
- Type : code
- Name type : ordinal
- Ordinal : 331
-
-Archive member name at 1AC4C: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 42 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002E
- DLL name : reader3.dll
- Symbol name : _EndReadResponderTriggerUtc_R3@12
- Type : code
- Name type : ordinal
- Ordinal : 332
-
-Archive member name at 1ACCA: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3D size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000029
- DLL name : reader3.dll
- Symbol name : _EndReadReturnForReadTime@12
- Type : code
- Name type : ordinal
- Ordinal : 333
-
-Archive member name at 1AD44: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 36 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000022
- DLL name : reader3.dll
- Symbol name : _EndReadRunTime_R3@12
- Type : code
- Name type : ordinal
- Ordinal : 334
-
-Archive member name at 1ADB6: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 36 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000022
- DLL name : reader3.dll
- Symbol name : _EndReadScratchpad@24
- Type : code
- Name type : ordinal
- Ordinal : 335
-
-Archive member name at 1AE28: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3A size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000026
- DLL name : reader3.dll
- Symbol name : _EndReadScratchpadSize@12
- Type : code
- Name type : ordinal
- Ordinal : 336
-
-Archive member name at 1AE9E: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3C size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000028
- DLL name : reader3.dll
- Symbol name : _EndReadSelfTestInterval@12
- Type : code
- Name type : ordinal
- Ordinal : 337
-
-Archive member name at 1AF16: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 39 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000025
- DLL name : reader3.dll
- Symbol name : _EndReadSensitivities@20
- Type : code
- Name type : ordinal
- Ordinal : 338
-
-Archive member name at 1AF8C: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3C size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000028
- DLL name : reader3.dll
- Symbol name : _EndReadSensitivities_R3@20
- Type : code
- Name type : ordinal
- Ordinal : 339
-
-Archive member name at 1B004: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 46 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000032
- DLL name : reader3.dll
- Symbol name : _EndReadSnapshotAlarmThresholds_R3@12
- Type : code
- Name type : ordinal
- Ordinal : 340
-
-Archive member name at 1B086: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3F size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002B
- DLL name : reader3.dll
- Symbol name : _EndReadSnapshotCounters_R3@12
- Type : code
- Name type : ordinal
- Ordinal : 341
-
-Archive member name at 1B102: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 43 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002F
- DLL name : reader3.dll
- Symbol name : _EndReadSnapshotMeasurements_R3@12
- Type : code
- Name type : ordinal
- Ordinal : 342
-
-Archive member name at 1B182: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3E size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002A
- DLL name : reader3.dll
- Symbol name : _EndReadSnapshotSummary_R3@12
- Type : code
- Name type : ordinal
- Ordinal : 343
-
-Archive member name at 1B1FC: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 32 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000001E
- DLL name : reader3.dll
- Symbol name : _EndReadStatus@12
- Type : code
- Name type : ordinal
- Ordinal : 344
-
-Archive member name at 1B26A: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 37 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000023
- DLL name : reader3.dll
- Symbol name : _EndReadStayTime_R3@12
- Type : code
- Name type : ordinal
- Ordinal : 345
-
-Archive member name at 1B2DE: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 41 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002D
- DLL name : reader3.dll
- Symbol name : _EndReadSwitchOnFromButton_R3@12
- Type : code
- Name type : ordinal
- Ordinal : 346
-
-Archive member name at 1B35C: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3D size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000029
- DLL name : reader3.dll
- Symbol name : _EndReadTaskDatabaseId_R3@12
- Type : code
- Name type : ordinal
- Ordinal : 347
-
-Archive member name at 1B3D6: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 35 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000021
- DLL name : reader3.dll
- Symbol name : _EndReadTaskId_R3@12
- Type : code
- Name type : ordinal
- Ordinal : 348
-
-Archive member name at 1B448: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 41 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002D
- DLL name : reader3.dll
- Symbol name : _EndReadTelemetryAdvConfig_R3@12
- Type : code
- Name type : ordinal
- Ordinal : 349
-
-Archive member name at 1B4C6: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 42 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002E
- DLL name : reader3.dll
- Symbol name : _EndReadTelemetryAdvContent_R3@16
- Type : code
- Name type : ordinal
- Ordinal : 350
-
-Archive member name at 1B544: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 41 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002D
- DLL name : reader3.dll
- Symbol name : _EndReadTelemetryCxnConfig_R3@12
- Type : code
- Name type : ordinal
- Ordinal : 351
-
-Archive member name at 1B5C2: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3E size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002A
- DLL name : reader3.dll
- Symbol name : _EndReadTelemetryEnable_R3@16
- Type : code
- Name type : ordinal
- Ordinal : 352
-
-Archive member name at 1B63C: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3C size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000028
- DLL name : reader3.dll
- Symbol name : _EndReadTelemetryMode_R2@12
- Type : code
- Name type : ordinal
- Ordinal : 353
-
-Archive member name at 1B6B4: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 46 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000032
- DLL name : reader3.dll
- Symbol name : _EndReadTelemetryReportInterval_R3@12
- Type : code
- Name type : ordinal
- Ordinal : 354
-
-Archive member name at 1B736: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3F size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002B
- DLL name : reader3.dll
- Symbol name : _EndReadTelemetryTxPower_R3@16
- Type : code
- Name type : ordinal
- Ordinal : 355
-
-Archive member name at 1B7B2: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 36 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000022
- DLL name : reader3.dll
- Symbol name : _EndReadTotalDoses@24
- Type : code
- Name type : ordinal
- Ordinal : 356
-
-Archive member name at 1B824: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3D size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000029
- DLL name : reader3.dll
- Symbol name : _EndReadTriggeredDoses_R3@24
- Type : code
- Name type : ordinal
- Ordinal : 357
-
-Archive member name at 1B89E: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 34 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000020
- DLL name : reader3.dll
- Symbol name : _EndReadVoltages@20
- Type : code
- Name type : ordinal
- Ordinal : 358
-
-Archive member name at 1B90E: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3F size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002B
- DLL name : reader3.dll
- Symbol name : _EndReadWearerDatabaseId_R3@12
- Type : code
- Name type : ordinal
- Ordinal : 359
-
-Archive member name at 1B98A: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 34 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000020
- DLL name : reader3.dll
- Symbol name : _EndReadWearerId@12
- Type : code
- Name type : ordinal
- Ordinal : 360
-
-Archive member name at 1B9FA: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3F size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002B
- DLL name : reader3.dll
- Symbol name : _EndReadZoneAccessPermitted@12
- Type : code
- Name type : ordinal
- Ordinal : 361
-
-Archive member name at 1BA76: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3A size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000026
- DLL name : reader3.dll
- Symbol name : _EndReadZoneControlMap@12
- Type : code
- Name type : ordinal
- Ordinal : 362
-
-Archive member name at 1BAEC: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3A size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000026
- DLL name : reader3.dll
- Symbol name : _EndSetBaselineCounters@8
- Type : code
- Name type : ordinal
- Ordinal : 363
-
-Archive member name at 1BB62: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 38 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000024
- DLL name : reader3.dll
- Symbol name : _EndStartDetectorTest@8
- Type : code
- Name type : ordinal
- Ordinal : 364
-
-Archive member name at 1BBD6: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3A size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000026
- DLL name : reader3.dll
- Symbol name : _EndTriggerBacklight_R3@8
- Type : code
- Name type : ordinal
- Ordinal : 365
-
-Archive member name at 1BC4C: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3E size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002A
- DLL name : reader3.dll
- Symbol name : _EndTriggerResponderMode_R3@8
- Type : code
- Name type : ordinal
- Ordinal : 366
-
-Archive member name at 1BCC6: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3E size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002A
- DLL name : reader3.dll
- Symbol name : _EndValidateEpdOwnerKey_R3@12
- Type : code
- Name type : ordinal
- Ordinal : 367
-
-Archive member name at 1BD40: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 35 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000021
- DLL name : reader3.dll
- Symbol name : _EndWriteAccessKey@8
- Type : code
- Name type : ordinal
- Ordinal : 368
-
-Archive member name at 1BDB2: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 37 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000023
- DLL name : reader3.dll
- Symbol name : _EndWriteAccessLevel@8
- Type : code
- Name type : ordinal
- Ordinal : 369
-
-Archive member name at 1BE26: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 48 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000034
- DLL name : reader3.dll
- Symbol name : _EndWriteAccessPermissionsForLevel_R3@8
- Type : code
- Name type : ordinal
- Ordinal : 370
-
-Archive member name at 1BEAA: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 45 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000031
- DLL name : reader3.dll
- Symbol name : _EndWriteAlarmConfigurationLock_R3@8
- Type : code
- Name type : ordinal
- Ordinal : 371
-
-Archive member name at 1BF2C: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 41 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002D
- DLL name : reader3.dll
- Symbol name : _EndWriteAlarmConfiguration_R3@8
- Type : code
- Name type : ordinal
- Ordinal : 372
-
-Archive member name at 1BFAA: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3B size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000027
- DLL name : reader3.dll
- Symbol name : _EndWriteAlarmThresholds@8
- Type : code
- Name type : ordinal
- Ordinal : 373
-
-Archive member name at 1C022: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 42 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002E
- DLL name : reader3.dll
- Symbol name : _EndWriteBacklightBrightness_R3@8
- Type : code
- Name type : ordinal
- Ordinal : 374
-
-Archive member name at 1C0A0: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3E size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002A
- DLL name : reader3.dll
- Symbol name : _EndWriteBacklightEnable_R3@8
- Type : code
- Name type : ordinal
- Ordinal : 375
-
-Archive member name at 1C11A: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3E size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002A
- DLL name : reader3.dll
- Symbol name : _EndWriteBacklightPeriod_R3@8
- Type : code
- Name type : ordinal
- Ordinal : 376
-
-Archive member name at 1C194: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 44 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000030
- DLL name : reader3.dll
- Symbol name : _EndWriteBatteryCriticalTiming_R3@8
- Type : code
- Name type : ordinal
- Ordinal : 377
-
-Archive member name at 1C214: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3F size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002B
- DLL name : reader3.dll
- Symbol name : _EndWriteBatteryLowThreshold@8
- Type : code
- Name type : ordinal
- Ordinal : 378
-
-Archive member name at 1C290: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3F size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002B
- DLL name : reader3.dll
- Symbol name : _EndWriteBatteryTestInterval@8
- Type : code
- Name type : ordinal
- Ordinal : 379
-
-Archive member name at 1C30C: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 42 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002E
- DLL name : reader3.dll
- Symbol name : _EndWriteBatteryTypeOverride_R3@8
- Type : code
- Name type : ordinal
- Ordinal : 380
-
-Archive member name at 1C38A: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 36 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000022
- DLL name : reader3.dll
- Symbol name : _EndWriteCalDueDate@8
- Type : code
- Name type : ordinal
- Ordinal : 381
-
-Archive member name at 1C3FC: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 39 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000025
- DLL name : reader3.dll
- Symbol name : _EndWriteCalDueDate_R3@8
- Type : code
- Name type : ordinal
- Ordinal : 382
-
-Archive member name at 1C472: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3B size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000027
- DLL name : reader3.dll
- Symbol name : _EndWriteCalReference_R3@8
- Type : code
- Name type : ordinal
- Ordinal : 383
-
-Archive member name at 1C4EA: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 42 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002E
- DLL name : reader3.dll
- Symbol name : _EndWriteCalibrationFacility_R3@8
- Type : code
- Name type : ordinal
- Ordinal : 384
-
-Archive member name at 1C568: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3B size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000027
- DLL name : reader3.dll
- Symbol name : _EndWriteCapabilities_R3@8
- Type : code
- Name type : ordinal
- Ordinal : 385
-
-Archive member name at 1C5E0: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3A size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000026
- DLL name : reader3.dll
- Symbol name : _EndWriteChirpEnable_R3@8
- Type : code
- Name type : ordinal
- Ordinal : 386
-
-Archive member name at 1C656: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3C size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000028
- DLL name : reader3.dll
- Symbol name : _EndWriteChirpSensitivity@8
- Type : code
- Name type : ordinal
- Ordinal : 387
-
-Archive member name at 1C6CE: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3F size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002B
- DLL name : reader3.dll
- Symbol name : _EndWriteClearDoseOnSwitchOn@8
- Type : code
- Name type : ordinal
- Ordinal : 388
-
-Archive member name at 1C74A: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3E size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002A
- DLL name : reader3.dll
- Symbol name : _EndWriteDeadTimeFactors_R3@8
- Type : code
- Name type : ordinal
- Ordinal : 389
-
-Archive member name at 1C7C4: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3C size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000028
- DLL name : reader3.dll
- Symbol name : _EndWriteDebugRegister_R3@8
- Type : code
- Name type : ordinal
- Ordinal : 390
-
-Archive member name at 1C83C: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 41 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002D
- DLL name : reader3.dll
- Symbol name : _EndWriteDetectorTestLimits_R3@8
- Type : code
- Name type : ordinal
- Ordinal : 391
-
-Archive member name at 1C8BA: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 41 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002D
- DLL name : reader3.dll
- Symbol name : _EndWriteDetectorThresholds_R2@8
- Type : code
- Name type : ordinal
- Ordinal : 392
-
-Archive member name at 1C938: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 41 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002D
- DLL name : reader3.dll
- Symbol name : _EndWriteDetectorThresholds_R3@8
- Type : code
- Name type : ordinal
- Ordinal : 393
-
-Archive member name at 1C9B6: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 47 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000033
- DLL name : reader3.dll
- Symbol name : _EndWriteDisplayEnablePermissions_R3@8
- Type : code
- Name type : ordinal
- Ordinal : 394
-
-Archive member name at 1CA3A: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3D size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000029
- DLL name : reader3.dll
- Symbol name : _EndWriteDisplayEnables_R3@8
- Type : code
- Name type : ordinal
- Ordinal : 395
-
-Archive member name at 1CAB4: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3A size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000026
- DLL name : reader3.dll
- Symbol name : _EndWriteDisplayOptions@8
- Type : code
- Name type : ordinal
- Ordinal : 396
-
-Archive member name at 1CB2A: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 41 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002D
- DLL name : reader3.dll
- Symbol name : _EndWriteDisplayOptionsLock_R3@8
- Type : code
- Name type : ordinal
- Ordinal : 397
-
-Archive member name at 1CBA8: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3A size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000026
- DLL name : reader3.dll
- Symbol name : _EndWriteDisplayTimeout@8
- Type : code
- Name type : ordinal
- Ordinal : 398
-
-Archive member name at 1CC1E: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 47 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000033
- DLL name : reader3.dll
- Symbol name : _EndWriteDoseProfileDoseIncrement_R3@8
- Type : code
- Name type : ordinal
- Ordinal : 399
-
-Archive member name at 1CCA2: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3F size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002B
- DLL name : reader3.dll
- Symbol name : _EndWriteDoseProfileInterval@8
- Type : code
- Name type : ordinal
- Ordinal : 400
-
-Archive member name at 1CD1E: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 44 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000030
- DLL name : reader3.dll
- Symbol name : _EndWriteDoseProfileMeasurands_R3@8
- Type : code
- Name type : ordinal
- Ordinal : 401
-
-Archive member name at 1CD9E: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3F size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002B
- DLL name : reader3.dll
- Symbol name : _EndWriteDoseSaveInterval_R3@8
- Type : code
- Name type : ordinal
- Ordinal : 402
-
-Archive member name at 1CE1A: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3C size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000028
- DLL name : reader3.dll
- Symbol name : _EndWriteDoseWritableFlag@8
- Type : code
- Name type : ordinal
- Ordinal : 403
-
-Archive member name at 1CE92: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 31 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000001D
- DLL name : reader3.dll
- Symbol name : _EndWriteDoses@8
- Type : code
- Name type : ordinal
- Ordinal : 404
-
-Archive member name at 1CF00: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 32 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000001E
- DLL name : reader3.dll
- Symbol name : _EndWriteEEProm@8
- Type : code
- Name type : ordinal
- Ordinal : 405
-
-Archive member name at 1CF6E: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3C size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000028
- DLL name : reader3.dll
- Symbol name : _EndWriteEpdPartNumber_R3@8
- Type : code
- Name type : ordinal
- Ordinal : 406
-
-Archive member name at 1CFE6: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3A size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000026
- DLL name : reader3.dll
- Symbol name : _EndWriteEpdRevision_R3@8
- Type : code
- Name type : ordinal
- Ordinal : 407
-
-Archive member name at 1D05C: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3B size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000027
- DLL name : reader3.dll
- Symbol name : _EndWriteEpdSerialNumber@8
- Type : code
- Name type : ordinal
- Ordinal : 408
-
-Archive member name at 1D0D4: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3C size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000028
- DLL name : reader3.dll
- Symbol name : _EndWriteEventLogLevel_R3@8
- Type : code
- Name type : ordinal
- Ordinal : 409
-
-Archive member name at 1D14C: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3A size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000026
- DLL name : reader3.dll
- Symbol name : _EndWriteFactoryCalDate@8
- Type : code
- Name type : ordinal
- Ordinal : 410
-
-Archive member name at 1D1C2: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3E size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002A
- DLL name : reader3.dll
- Symbol name : _EndWriteFemSerialNumber_R3@8
- Type : code
- Name type : ordinal
- Ordinal : 411
-
-Archive member name at 1D23C: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3B size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000027
- DLL name : reader3.dll
- Symbol name : _EndWriteGainableFlag_R3@8
- Type : code
- Name type : ordinal
- Ordinal : 412
-
-Archive member name at 1D2B4: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 34 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000020
- DLL name : reader3.dll
- Symbol name : _EndWriteGains_R3@8
- Type : code
- Name type : ordinal
- Ordinal : 413
-
-Archive member name at 1D324: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 39 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000025
- DLL name : reader3.dll
- Symbol name : _EndWriteGoldenFlag_R3@8
- Type : code
- Name type : ordinal
- Ordinal : 414
-
-Archive member name at 1D39A: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3C size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000028
- DLL name : reader3.dll
- Symbol name : _EndWriteGraphicBitmap_R3@8
- Type : code
- Name type : ordinal
- Ordinal : 415
-
-Archive member name at 1D412: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 45 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000031
- DLL name : reader3.dll
- Symbol name : _EndWriteLastCalibrationProcess_R3@8
- Type : code
- Name type : ordinal
- Ordinal : 416
-
-Archive member name at 1D494: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 39 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000025
- DLL name : reader3.dll
- Symbol name : _EndWriteMarkNumber_R3@8
- Type : code
- Name type : ordinal
- Ordinal : 417
-
-Archive member name at 1D50A: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 38 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000024
- DLL name : reader3.dll
- Symbol name : _EndWriteModelName_R3@8
- Type : code
- Name type : ordinal
- Ordinal : 418
-
-Archive member name at 1D57E: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 40 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002C
- DLL name : reader3.dll
- Symbol name : _EndWriteNotCalibratedFlag_R3@8
- Type : code
- Name type : ordinal
- Ordinal : 419
-
-Archive member name at 1D5FA: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 49 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000035
- DLL name : reader3.dll
- Symbol name : _EndWriteOffModeBatteryTestInterval_R3@8
- Type : code
- Name type : ordinal
- Ordinal : 420
-
-Archive member name at 1D680: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3D size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000029
- DLL name : reader3.dll
- Symbol name : _EndWriteOffModeDisplay_R3@8
- Type : code
- Name type : ordinal
- Ordinal : 421
-
-Archive member name at 1D6FA: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3C size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000028
- DLL name : reader3.dll
- Symbol name : _EndWritePcbPartNumber_R3@8
- Type : code
- Name type : ordinal
- Ordinal : 422
-
-Archive member name at 1D772: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3A size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000026
- DLL name : reader3.dll
- Symbol name : _EndWritePcbRevision_R3@8
- Type : code
- Name type : ordinal
- Ordinal : 423
-
-Archive member name at 1D7E8: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3E size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002A
- DLL name : reader3.dll
- Symbol name : _EndWritePcbSerialNumber_R3@8
- Type : code
- Name type : ordinal
- Ordinal : 424
-
-Archive member name at 1D862: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3E size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002A
- DLL name : reader3.dll
- Symbol name : _EndWritePulseModeEnable_R3@8
- Type : code
- Name type : ordinal
- Ordinal : 425
-
-Archive member name at 1D8DC: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 42 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002E
- DLL name : reader3.dll
- Symbol name : _EndWritePulseModeIndustrial_R3@8
- Type : code
- Name type : ordinal
- Ordinal : 426
-
-Archive member name at 1D95A: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 41 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002D
- DLL name : reader3.dll
- Symbol name : _EndWritePulseModeThreshold_R3@8
- Type : code
- Name type : ordinal
- Ordinal : 427
-
-Archive member name at 1D9D8: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 4B size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000037
- DLL name : reader3.dll
- Symbol name : _EndWritePulsedModeOverrangeThreshold_R3@8
- Type : code
- Name type : ordinal
- Ordinal : 428
-
-Archive member name at 1DA60: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 42 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002E
- DLL name : reader3.dll
- Symbol name : _EndWriteQuickAccessDisplays_R3@8
- Type : code
- Name type : ordinal
- Ordinal : 429
-
-Archive member name at 1DADE: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 32 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000001E
- DLL name : reader3.dll
- Symbol name : _EndWriteRTC_R3@8
- Type : code
- Name type : ordinal
- Ordinal : 430
-
-Archive member name at 1DB4C: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3D size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000029
- DLL name : reader3.dll
- Symbol name : _EndWriteRateOffPercentage@8
- Type : code
- Name type : ordinal
- Ordinal : 431
-
-Archive member name at 1DBC6: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3D size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000029
- DLL name : reader3.dll
- Symbol name : _EndWriteReturnForReadTime@8
- Type : code
- Name type : ordinal
- Ordinal : 432
-
-Archive member name at 1DC40: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 36 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000022
- DLL name : reader3.dll
- Symbol name : _EndWriteScratchpad@8
- Type : code
- Name type : ordinal
- Ordinal : 433
-
-Archive member name at 1DCB2: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3C size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000028
- DLL name : reader3.dll
- Symbol name : _EndWriteSelfTestInterval@8
- Type : code
- Name type : ordinal
- Ordinal : 434
-
-Archive member name at 1DD2A: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3C size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000028
- DLL name : reader3.dll
- Symbol name : _EndWriteSensitivities_R2@8
- Type : code
- Name type : ordinal
- Ordinal : 435
-
-Archive member name at 1DDA2: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3C size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000028
- DLL name : reader3.dll
- Symbol name : _EndWriteSensitivities_R3@8
- Type : code
- Name type : ordinal
- Ordinal : 436
-
-Archive member name at 1DE1A: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 37 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000023
- DLL name : reader3.dll
- Symbol name : _EndWriteStayTime_R3@8
- Type : code
- Name type : ordinal
- Ordinal : 437
-
-Archive member name at 1DE8E: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 41 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002D
- DLL name : reader3.dll
- Symbol name : _EndWriteSwitchOnFromButton_R3@8
- Type : code
- Name type : ordinal
- Ordinal : 438
-
-Archive member name at 1DF0C: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3D size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000029
- DLL name : reader3.dll
- Symbol name : _EndWriteTaskDatabaseId_R3@8
- Type : code
- Name type : ordinal
- Ordinal : 439
-
-Archive member name at 1DF86: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 35 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000021
- DLL name : reader3.dll
- Symbol name : _EndWriteTaskId_R3@8
- Type : code
- Name type : ordinal
- Ordinal : 440
-
-Archive member name at 1DFF8: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 41 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002D
- DLL name : reader3.dll
- Symbol name : _EndWriteTelemetryAdvConfig_R3@8
- Type : code
- Name type : ordinal
- Ordinal : 441
-
-Archive member name at 1E076: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 42 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002E
- DLL name : reader3.dll
- Symbol name : _EndWriteTelemetryAdvContent_R3@8
- Type : code
- Name type : ordinal
- Ordinal : 442
-
-Archive member name at 1E0F4: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 41 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002D
- DLL name : reader3.dll
- Symbol name : _EndWriteTelemetryCxnConfig_R3@8
- Type : code
- Name type : ordinal
- Ordinal : 443
-
-Archive member name at 1E172: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3E size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002A
- DLL name : reader3.dll
- Symbol name : _EndWriteTelemetryEnable_R3@8
- Type : code
- Name type : ordinal
- Ordinal : 444
-
-Archive member name at 1E1EC: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3C size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000028
- DLL name : reader3.dll
- Symbol name : _EndWriteTelemetryMode_R2@8
- Type : code
- Name type : ordinal
- Ordinal : 445
-
-Archive member name at 1E264: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 46 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000032
- DLL name : reader3.dll
- Symbol name : _EndWriteTelemetryReportInterval_R3@8
- Type : code
- Name type : ordinal
- Ordinal : 446
-
-Archive member name at 1E2E6: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3F size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002B
- DLL name : reader3.dll
- Symbol name : _EndWriteTelemetryTxPower_R3@8
- Type : code
- Name type : ordinal
- Ordinal : 447
-
-Archive member name at 1E362: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 36 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000022
- DLL name : reader3.dll
- Symbol name : _EndWriteTotalDoses@8
- Type : code
- Name type : ordinal
- Ordinal : 448
-
-Archive member name at 1E3D4: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3D size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000029
- DLL name : reader3.dll
- Symbol name : _EndWriteTriggeredDoses_R3@8
- Type : code
- Name type : ordinal
- Ordinal : 449
-
-Archive member name at 1E44E: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3F size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002B
- DLL name : reader3.dll
- Symbol name : _EndWriteWearerDatabaseId_R3@8
- Type : code
- Name type : ordinal
- Ordinal : 450
-
-Archive member name at 1E4CA: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 34 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000020
- DLL name : reader3.dll
- Symbol name : _EndWriteWearerId@8
- Type : code
- Name type : ordinal
- Ordinal : 451
-
-Archive member name at 1E53A: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3A size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000026
- DLL name : reader3.dll
- Symbol name : _EndWriteZoneControlMap@8
- Type : code
- Name type : ordinal
- Ordinal : 452
-
-Archive member name at 1E5B0: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 36 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000022
- DLL name : reader3.dll
- Symbol name : _GetDiscoveredEpds@16
- Type : code
- Name type : ordinal
- Ordinal : 453
-
-Archive member name at 1E622: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 37 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000023
- DLL name : reader3.dll
- Symbol name : _GetDiscoveryTimeout@8
- Type : code
- Name type : ordinal
- Ordinal : 454
-
-Archive member name at 1E696: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 39 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000025
- DLL name : reader3.dll
- Symbol name : _GetDiscoveryTimeslots@8
- Type : code
- Name type : ordinal
- Ordinal : 455
-
-Archive member name at 1E70C: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 32 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000001E
- DLL name : reader3.dll
- Symbol name : _GetDllLogLevel@8
- Type : code
- Name type : ordinal
- Ordinal : 456
-
-Archive member name at 1E77A: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 30 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000001C
- DLL name : reader3.dll
- Symbol name : _GetErrorCode@0
- Type : code
- Name type : ordinal
- Ordinal : 457
-
-Archive member name at 1E7E6: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3C size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000028
- DLL name : reader3.dll
- Symbol name : _GetMultipleDiscoveryMode@8
- Type : code
- Name type : ordinal
- Ordinal : 458
-
-Archive member name at 1E85E: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 36 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000022
- DLL name : reader3.dll
- Symbol name : _GetResponseTimeout@8
- Type : code
- Name type : ordinal
- Ordinal : 459
-
-Archive member name at 1E8D0: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 31 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000001D
- DLL name : reader3.dll
- Symbol name : _GetRetryCount@8
- Type : code
- Name type : ordinal
- Ordinal : 460
-
-Archive member name at 1E93E: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 2E size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000001A
- DLL name : reader3.dll
- Symbol name : _OpenReader@8
- Type : code
- Name type : ordinal
- Ordinal : 461
-
-Archive member name at 1E9A8: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 36 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000022
- DLL name : reader3.dll
- Symbol name : _SetConnectCallback@8
- Type : code
- Name type : ordinal
- Ordinal : 462
-
-Archive member name at 1EA1A: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 39 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000025
- DLL name : reader3.dll
- Symbol name : _SetDisconnectCallback@8
- Type : code
- Name type : ordinal
- Ordinal : 463
-
-Archive member name at 1EA90: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3C size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000028
- DLL name : reader3.dll
- Symbol name : _SetDiscoveryCacheTimeout@8
- Type : code
- Name type : ordinal
- Ordinal : 464
-
-Archive member name at 1EB08: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 39 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000025
- DLL name : reader3.dll
- Symbol name : _SetDiscoveryTimeslots@8
- Type : code
- Name type : ordinal
- Ordinal : 465
-
-Archive member name at 1EB7E: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 32 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000001E
- DLL name : reader3.dll
- Symbol name : _SetDllLogLevel@8
- Type : code
- Name type : ordinal
- Ordinal : 466
-
-Archive member name at 1EBEC: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3C size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000028
- DLL name : reader3.dll
- Symbol name : _SetMultipleDiscoveryMode@8
- Type : code
- Name type : ordinal
- Ordinal : 467
-
-Archive member name at 1EC64: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 36 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000022
- DLL name : reader3.dll
- Symbol name : _SetRemovedCallback@8
- Type : code
- Name type : ordinal
- Ordinal : 468
-
-Archive member name at 1ECD6: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 36 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000022
- DLL name : reader3.dll
- Symbol name : _SetResponseTimeout@8
- Type : code
- Name type : ordinal
- Ordinal : 469
-
-Archive member name at 1ED48: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 31 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000001D
- DLL name : reader3.dll
- Symbol name : _SetRetryCount@8
- Type : code
- Name type : ordinal
- Ordinal : 470
-
-Archive member name at 1EDB6: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 32 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000001E
- DLL name : reader3.dll
- Symbol name : _StartDiscovery@8
- Type : code
- Name type : ordinal
- Ordinal : 471
-
-Archive member name at 1EE24: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 31 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000001D
- DLL name : reader3.dll
- Symbol name : _StopDiscovery@4
- Type : code
- Name type : ordinal
- Ordinal : 472
-
- Exports
-
- ordinal name
-
- 1 _AwaitRemoval@20
- 2 _BeginClearAllStatus@8
- 3 _BeginClearDose@8
- 4 _BeginClearDoseProfile_R3@8
- 5 _BeginClearEEPROM_R3@8
- 6 _BeginClearFaultStatus@8
- 7 _BeginClearGraphic_R3@12
- 8 _BeginClearLatchedAlarms@8
- 9 _BeginClearPeakRates@8
- 10 _BeginClearScratchPad@12
- 11 _BeginClearTotalDose@8
- 12 _BeginClearWearerOrTaskId_R3@16
- 13 _BeginDeissueEPD@8
- 14 _BeginEnableCovertMode_R3@12
- 15 _BeginEnableDeepSleep_R3@12
- 16 _BeginEnableManufacturerLockout_R3@12
- 17 _BeginEnableProtectedSession_R3@12
- 18 _BeginEnableResponderMode_R3@12
- 19 _BeginEpdOnOff@12
- 20 _BeginInitiateFirmwareUpdate_R3@8
- 21 _BeginIssueEPD@8
- 22 _BeginReadAccessPermissionsForLevel_R3@12
- 23 _BeginReadAlarmConfiguration@16
- 24 _BeginReadAlarmConfigurationLock_R3@8
- 25 _BeginReadAlarmConfiguration_R3@16
- 26 _BeginReadAlarmThresholds@20
- 27 _BeginReadBacklightBrightness_R3@8
- 28 _BeginReadBacklightEnable_R3@8
- 29 _BeginReadBacklightPeriod_R3@8
- 30 _BeginReadBaselineCounts@8
- 31 _BeginReadBatteryCriticalTiming_R3@8
- 32 _BeginReadBatteryLowThreshold@12
- 33 _BeginReadBatteryTestInterval@8
- 34 _BeginReadBatteryTypeFitted_R3@8
- 35 _BeginReadBatteryTypeOverride_R3@8
- 36 _BeginReadCalDueDate@8
- 37 _BeginReadCalDueDate_R3@8
- 38 _BeginReadCalReference_R3@8
- 39 _BeginReadCalibrationData_R2@8
- 40 _BeginReadCalibrationFacility_R3@8
- 41 _BeginReadCapabilities@8
- 42 _BeginReadChirpEnable_R3@8
- 43 _BeginReadChirpSensitivity@8
- 44 _BeginReadCounts@16
- 45 _BeginReadCurrentAccessLevel@8
- 46 _BeginReadDeadTimeFactors_R3@16
- 47 _BeginReadDebugRegister_R3@12
- 48 _BeginReadDetectorTestLimits_R3@16
- 49 _BeginReadDetectorThresholdLimits_R3@16
- 50 _BeginReadDetectorThresholds@16
- 51 _BeginReadDetectorThresholds_R3@16
- 52 _BeginReadDisplayCapability_R3@12
- 53 _BeginReadDisplayEnablePermissions_R3@12
- 54 _BeginReadDisplayEnables_R3@16
- 55 _BeginReadDisplayOptions@8
- 56 _BeginReadDisplayOptionsLock_R3@8
- 57 _BeginReadDisplayTimeout@8
- 58 _BeginReadDoseProfileByIndex_R3@16
- 59 _BeginReadDoseProfileByTime@16
- 60 _BeginReadDoseProfileConfiguration_R3@8
- 61 _BeginReadDoseProfileInterval@8
- 62 _BeginReadDoseSaveInterval_R3@8
- 63 _BeginReadDoses@16
- 64 _BeginReadEEProm@16
- 65 _BeginReadEpdIdentities@8
- 66 _BeginReadEpdPartNumber_R3@8
- 67 _BeginReadEpdRevision_R3@8
- 68 _BeginReadEpdSerialNum@8
- 69 _BeginReadEpdType@8
- 70 _BeginReadEventLogLevel_R3@8
- 71 _BeginReadEventsByIndex@16
- 72 _BeginReadFactoryCalDate@8
- 73 _BeginReadFemSerialNum_R3@8
- 74 _BeginReadFirmwarePartNumber_R3@8
- 75 _BeginReadFirmwareVersion@8
- 76 _BeginReadFlashTestCounts_R3@16
- 77 _BeginReadFpgaVersion_R3@8
- 78 _BeginReadGains@16
- 79 _BeginReadGains_R3@16
- 80 _BeginReadGraphicData_R3@12
- 81 _BeginReadGraphicSize_R3@12
- 82 _BeginReadLastCalibrationProcess_R3@8
- 83 _BeginReadMarkNumber@8
- 84 _BeginReadMeasurandIds_R3@8
- 85 _BeginReadModelName_R3@8
- 86 _BeginReadOffModeBatteryTestInterval_R3@8
- 87 _BeginReadOffModeDisplay_R3@8
- 88 _BeginReadPcbPartNumber_R3@8
- 89 _BeginReadPcbRevision_R3@8
- 90 _BeginReadPcbSerialNum_R3@8
- 91 _BeginReadPeakRates@16
- 92 _BeginReadPulseModeEnable_R3@8
- 93 _BeginReadPulseModeIndustrial_R3@8
- 94 _BeginReadPulseModeThreshold_R3@8
- 95 _BeginReadPulsedModeOverrangeThreshold_R3@8
- 96 _BeginReadQualityData@8
- 97 _BeginReadQuickAccessDisplays_R3@16
- 98 _BeginReadRTC@8
- 99 _BeginReadRadioFirmwareVersion_R3@8
- 100 _BeginReadRateOffPercentage@16
- 101 _BeginReadRates@16
- 102 _BeginReadResponderTriggerUtc_R3@8
- 103 _BeginReadReturnForReadTime@8
- 104 _BeginReadRunTime_R3@8
- 105 _BeginReadScratchPad@16
- 106 _BeginReadScratchpadSize@8
- 107 _BeginReadSelfTestInterval@8
- 108 _BeginReadSensitivities@16
- 109 _BeginReadSensitivities_R3@16
- 110 _BeginReadSnapshotAlarmThresholds_R3@12
- 111 _BeginReadSnapshotCounters_R3@12
- 112 _BeginReadSnapshotMeasurements_R3@12
- 113 _BeginReadSnapshotSummary_R3@12
- 114 _BeginReadStatus@8
- 115 _BeginReadStayTime_R3@8
- 116 _BeginReadSwitchOnFromButton_R3@8
- 117 _BeginReadTaskDatabaseId_R3@8
- 118 _BeginReadTaskId_R3@12
- 119 _BeginReadTelemetryAdvConfig_R3@12
- 120 _BeginReadTelemetryAdvContent_R3@12
- 121 _BeginReadTelemetryCxnConfig_R3@8
- 122 _BeginReadTelemetryEnable_R3@12
- 123 _BeginReadTelemetryMode_R2@8
- 124 _BeginReadTelemetryReportInterval_R3@8
- 125 _BeginReadTelemetryTxPower_R3@12
- 126 _BeginReadTotalDoses@16
- 127 _BeginReadTriggeredDoses_R3@16
- 128 _BeginReadVoltages@8
- 129 _BeginReadWearerDatabaseId_R3@8
- 130 _BeginReadWearerId@12
- 131 _BeginReadZoneAccessPermitted@12
- 132 _BeginReadZoneControlMap@8
- 133 _BeginSetBaselineCounters@8
- 134 _BeginStartDetectorTest@8
- 135 _BeginTriggerBacklight_R3@8
- 136 _BeginTriggerResponderMode_R3@8
- 137 _BeginValidateEpdOwnerKey_R3@12
- 138 _BeginWriteAccessKey@20
- 139 _BeginWriteAccessLevel@20
- 140 _BeginWriteAccessPermissionsForLevel_R3@20
- 141 _BeginWriteAlarmConfigurationLock_R3@16
- 142 _BeginWriteAlarmConfiguration_R3@16
- 143 _BeginWriteAlarmThresholds@20
- 144 _BeginWriteBacklightBrightness_R3@12
- 145 _BeginWriteBacklightEnable_R3@12
- 146 _BeginWriteBacklightPeriod_R3@12
- 147 _BeginWriteBatteryCriticalTiming_R3@16
- 148 _BeginWriteBatteryLowThreshold@16
- 149 _BeginWriteBatteryTestInterval@12
- 150 _BeginWriteBatteryTypeOverride_R3@12
- 151 _BeginWriteCalDueDate@12
- 152 _BeginWriteCalDueDate_R3@12
- 153 _BeginWriteCalReference_R3@12
- 154 _BeginWriteCalibrationFacility_R3@16
- 155 _BeginWriteCapabilities_R3@12
- 156 _BeginWriteChirpEnable_R3@12
- 157 _BeginWriteChirpSensitivity@12
- 158 _BeginWriteClearDoseOnSwitchOn@12
- 159 _BeginWriteDeadTimeFactors_R3@16
- 160 _BeginWriteDebugRegister_R3@16
- 161 _BeginWriteDetectorTestLimits_R3@16
- 162 _BeginWriteDetectorThresholds_R2@24
- 163 _BeginWriteDetectorThresholds_R3@16
- 164 _BeginWriteDisplayEnablePermissions_R3@20
- 165 _BeginWriteDisplayEnables_R3@16
- 166 _BeginWriteDisplayOptions@16
- 167 _BeginWriteDisplayOptionsLock_R3@16
- 168 _BeginWriteDisplayTimeout@12
- 169 _BeginWriteDoseProfileDoseIncrement_R3@12
- 170 _BeginWriteDoseProfileInterval@12
- 171 _BeginWriteDoseProfileMeasurands_R3@16
- 172 _BeginWriteDoseSaveInterval_R3@12
- 173 _BeginWriteDoseWritableFlag@12
- 174 _BeginWriteDoses@16
- 175 _BeginWriteEEProm@20
- 176 _BeginWriteEpdPartNumber_R3@12
- 177 _BeginWriteEpdRevision_R3@12
- 178 _BeginWriteEpdSerialNumber@12
- 179 _BeginWriteEventLogLevel_R3@12
- 180 _BeginWriteFactoryCalDate@12
- 181 _BeginWriteFemSerialNumber_R3@12
- 182 _BeginWriteGainableFlag_R3@12
- 183 _BeginWriteGains_R3@16
- 184 _BeginWriteGoldenFlag_R3@12
- 185 _BeginWriteGraphicBitmap_R3@352
- 186 _BeginWriteLastCalibrationProcess_R3@20
- 187 _BeginWriteMarkNumber_R3@12
- 188 _BeginWriteModelName_R3@40
- 189 _BeginWriteNotCalibratedFlag_R3@12
- 190 _BeginWriteOffModeBatteryTestInterval_R3@12
- 191 _BeginWriteOffModeDisplay_R3@16
- 192 _BeginWritePcbPartNumber_R3@12
- 193 _BeginWritePcbRevision_R3@12
- 194 _BeginWritePcbSerialNumber_R3@12
- 195 _BeginWritePulseModeEnable_R3@12
- 196 _BeginWritePulseModeIndustrial_R3@12
- 197 _BeginWritePulseModeThreshold_R3@12
- 198 _BeginWritePulsedModeOverrangeThreshold_R3@12
- 199 _BeginWriteQuickAccessDisplays_R3@16
- 200 _BeginWriteRTC_R3@12
- 201 _BeginWriteRateOffPercentage@16
- 202 _BeginWriteReturnForReadTime@12
- 203 _BeginWriteScratchPad@20
- 204 _BeginWriteSelfTestInterval@12
- 205 _BeginWriteSensitivities_R2@32
- 206 _BeginWriteSensitivities_R3@16
- 207 _BeginWriteStayTime_R3@12
- 208 _BeginWriteSwitchOnFromButton_R3@12
- 209 _BeginWriteTaskDatabaseId_R3@24
- 210 _BeginWriteTaskId_R3@76
- 211 _BeginWriteTelemetryAdvConfig_R3@12
- 212 _BeginWriteTelemetryAdvContent_R3@16
- 213 _BeginWriteTelemetryCxnConfig_R3@12
- 214 _BeginWriteTelemetryEnable_R3@16
- 215 _BeginWriteTelemetryMode_R2@12
- 216 _BeginWriteTelemetryReportInterval_R3@12
- 217 _BeginWriteTelemetryTxPower_R3@16
- 218 _BeginWriteTotalDoses@16
- 219 _BeginWriteTriggeredDoses_R3@16
- 220 _BeginWriteWearerDatabaseId_R3@24
- 221 _BeginWriteWearerId@76
- 222 _BeginWriteZoneControlMap@16
- 223 _CleanUpReadDoseProfile@4
- 224 _CleanUpReadEventLog@4
- 225 _CloseReader@4
- 226 _Commit@4
- 227 _Connect@20
- 228 _CreateReaderInterface@0
- 229 _DestroyReaderInterface@4
- 230 _Disconnect@4
- 231 _DisconnectAndNotify@12
- 232 _EndClearAllStatus@8
- 233 _EndClearDose@8
- 234 _EndClearDoseProfile_R3@8
- 235 _EndClearEEPROM_R3@8
- 236 _EndClearFaultStatus@8
- 237 _EndClearGraphic_R3@8
- 238 _EndClearLatchedAlarms@8
- 239 _EndClearPeakRates@8
- 240 _EndClearScratchpad@8
- 241 _EndClearTotalDose@8
- 242 _EndClearWearerOrTaskId_R3@8
- 243 _EndDeissueEPD@8
- 244 _EndEnableCovertMode_R3@8
- 245 _EndEnableDeepSleep_R3@8
- 246 _EndEnableManufacturerLockout_R3@8
- 247 _EndEnableProtectedSession_R3@8
- 248 _EndEnableResponderMode_R3@8
- 249 _EndEpdOnOff@8
- 250 _EndInitiateFirmwareUpdate_R3@8
- 251 _EndIssueEPD@8
- 252 _EndReadAccessPermissionsForLevel_R3@20
- 253 _EndReadAlarmConfiguration@20
- 254 _EndReadAlarmConfigurationLock_R3@20
- 255 _EndReadAlarmConfiguration_R3@20
- 256 _EndReadAlarmThresholds@12
- 257 _EndReadBacklightBrightness_R3@12
- 258 _EndReadBacklightEnable_R3@12
- 259 _EndReadBacklightPeriod_R3@12
- 260 _EndReadBaselineCounts@24
- 261 _EndReadBatteryCriticalTiming_R3@16
- 262 _EndReadBatteryLowThreshold@16
- 263 _EndReadBatteryTestInterval@12
- 264 _EndReadBatteryTypeFitted_R3@12
- 265 _EndReadBatteryTypeOverride_R3@12
- 266 _EndReadCalDueDate@12
- 267 _EndReadCalDueDate_R3@12
- 268 _EndReadCalReference_R3@12
- 269 _EndReadCalibrationData_R2@48
- 270 _EndReadCalibrationFacility_R3@12
- 271 _EndReadCapabilities@12
- 272 _EndReadChirpEnable_R3@12
- 273 _EndReadChirpSensitivity@12
- 274 _EndReadCounts@28
- 275 _EndReadCurrentAccessLevel@12
- 276 _EndReadDeadTimeFactors_R3@20
- 277 _EndReadDebugRegister_R3@16
- 278 _EndReadDetectorTestLimits_R3@20
- 279 _EndReadDetectorThresholdLimits_R3@20
- 280 _EndReadDetectorThresholds@20
- 281 _EndReadDetectorThresholds_R3@20
- 282 _EndReadDisplayCapability_R3@24
- 283 _EndReadDisplayEnablePermissions_R3@24
- 284 _EndReadDisplayEnables_R3@20
- 285 _EndReadDisplayOptions@12
- 286 _EndReadDisplayOptionsLock_R3@12
- 287 _EndReadDisplayTimeout@12
- 288 _EndReadDoseProfileByIndex_R3@24
- 289 _EndReadDoseProfileByTime@16
- 290 _EndReadDoseProfileConfiguration_R3@12
- 291 _EndReadDoseProfileInterval@12
- 292 _EndReadDoseSaveInterval_R3@12
- 293 _EndReadDoses@24
- 294 _EndReadEEProm@24
- 295 _EndReadEpdIdentities@36
- 296 _EndReadEpdPartNumber_R3@12
- 297 _EndReadEpdRevision_R3@12
- 298 _EndReadEpdSerialNum@12
- 299 _EndReadEpdType@12
- 300 _EndReadEventLogLevel_R3@12
- 301 _EndReadEventsByIndex@16
- 302 _EndReadFactoryCalDate@12
- 303 _EndReadFemSerialNum_R3@12
- 304 _EndReadFirmwarePartNumber_R3@12
- 305 _EndReadFirmwareVersion@12
- 306 _EndReadFlashTestCounts_R3@24
- 307 _EndReadFpgaVersion_R3@16
- 308 _EndReadGains@20
- 309 _EndReadGains_R3@20
- 310 _EndReadGraphicData_R3@12
- 311 _EndReadGraphicSize_R3@12
- 312 _EndReadLastCalibrationProcess_R3@12
- 313 _EndReadMarkNumber@12
- 314 _EndReadMeasurandIds_R3@20
- 315 _EndReadModelName_R3@12
- 316 _EndReadOffModeBatteryTestInterval_R3@12
- 317 _EndReadOffModeDisplay_R3@16
- 318 _EndReadPcbPartNumber_R3@12
- 319 _EndReadPcbRevision_R3@12
- 320 _EndReadPcbSerialNum_R3@12
- 321 _EndReadPeakRates@20
- 322 _EndReadPulseModeEnable_R3@12
- 323 _EndReadPulseModeIndustrial_R3@12
- 324 _EndReadPulseModeThreshold_R3@12
- 325 _EndReadPulsedModeOverrangeThreshold_R3@12
- 326 _EndReadQualityData@12
- 327 _EndReadQuickAccessDisplays_R3@20
- 328 _EndReadRTC@12
- 329 _EndReadRadioFirmwareVersion_R3@12
- 330 _EndReadRateOffPercentage@20
- 331 _EndReadRates@24
- 332 _EndReadResponderTriggerUtc_R3@12
- 333 _EndReadReturnForReadTime@12
- 334 _EndReadRunTime_R3@12
- 335 _EndReadScratchpad@24
- 336 _EndReadScratchpadSize@12
- 337 _EndReadSelfTestInterval@12
- 338 _EndReadSensitivities@20
- 339 _EndReadSensitivities_R3@20
- 340 _EndReadSnapshotAlarmThresholds_R3@12
- 341 _EndReadSnapshotCounters_R3@12
- 342 _EndReadSnapshotMeasurements_R3@12
- 343 _EndReadSnapshotSummary_R3@12
- 344 _EndReadStatus@12
- 345 _EndReadStayTime_R3@12
- 346 _EndReadSwitchOnFromButton_R3@12
- 347 _EndReadTaskDatabaseId_R3@12
- 348 _EndReadTaskId_R3@12
- 349 _EndReadTelemetryAdvConfig_R3@12
- 350 _EndReadTelemetryAdvContent_R3@16
- 351 _EndReadTelemetryCxnConfig_R3@12
- 352 _EndReadTelemetryEnable_R3@16
- 353 _EndReadTelemetryMode_R2@12
- 354 _EndReadTelemetryReportInterval_R3@12
- 355 _EndReadTelemetryTxPower_R3@16
- 356 _EndReadTotalDoses@24
- 357 _EndReadTriggeredDoses_R3@24
- 358 _EndReadVoltages@20
- 359 _EndReadWearerDatabaseId_R3@12
- 360 _EndReadWearerId@12
- 361 _EndReadZoneAccessPermitted@12
- 362 _EndReadZoneControlMap@12
- 363 _EndSetBaselineCounters@8
- 364 _EndStartDetectorTest@8
- 365 _EndTriggerBacklight_R3@8
- 366 _EndTriggerResponderMode_R3@8
- 367 _EndValidateEpdOwnerKey_R3@12
- 368 _EndWriteAccessKey@8
- 369 _EndWriteAccessLevel@8
- 370 _EndWriteAccessPermissionsForLevel_R3@8
- 371 _EndWriteAlarmConfigurationLock_R3@8
- 372 _EndWriteAlarmConfiguration_R3@8
- 373 _EndWriteAlarmThresholds@8
- 374 _EndWriteBacklightBrightness_R3@8
- 375 _EndWriteBacklightEnable_R3@8
- 376 _EndWriteBacklightPeriod_R3@8
- 377 _EndWriteBatteryCriticalTiming_R3@8
- 378 _EndWriteBatteryLowThreshold@8
- 379 _EndWriteBatteryTestInterval@8
- 380 _EndWriteBatteryTypeOverride_R3@8
- 381 _EndWriteCalDueDate@8
- 382 _EndWriteCalDueDate_R3@8
- 383 _EndWriteCalReference_R3@8
- 384 _EndWriteCalibrationFacility_R3@8
- 385 _EndWriteCapabilities_R3@8
- 386 _EndWriteChirpEnable_R3@8
- 387 _EndWriteChirpSensitivity@8
- 388 _EndWriteClearDoseOnSwitchOn@8
- 389 _EndWriteDeadTimeFactors_R3@8
- 390 _EndWriteDebugRegister_R3@8
- 391 _EndWriteDetectorTestLimits_R3@8
- 392 _EndWriteDetectorThresholds_R2@8
- 393 _EndWriteDetectorThresholds_R3@8
- 394 _EndWriteDisplayEnablePermissions_R3@8
- 395 _EndWriteDisplayEnables_R3@8
- 396 _EndWriteDisplayOptions@8
- 397 _EndWriteDisplayOptionsLock_R3@8
- 398 _EndWriteDisplayTimeout@8
- 399 _EndWriteDoseProfileDoseIncrement_R3@8
- 400 _EndWriteDoseProfileInterval@8
- 401 _EndWriteDoseProfileMeasurands_R3@8
- 402 _EndWriteDoseSaveInterval_R3@8
- 403 _EndWriteDoseWritableFlag@8
- 404 _EndWriteDoses@8
- 405 _EndWriteEEProm@8
- 406 _EndWriteEpdPartNumber_R3@8
- 407 _EndWriteEpdRevision_R3@8
- 408 _EndWriteEpdSerialNumber@8
- 409 _EndWriteEventLogLevel_R3@8
- 410 _EndWriteFactoryCalDate@8
- 411 _EndWriteFemSerialNumber_R3@8
- 412 _EndWriteGainableFlag_R3@8
- 413 _EndWriteGains_R3@8
- 414 _EndWriteGoldenFlag_R3@8
- 415 _EndWriteGraphicBitmap_R3@8
- 416 _EndWriteLastCalibrationProcess_R3@8
- 417 _EndWriteMarkNumber_R3@8
- 418 _EndWriteModelName_R3@8
- 419 _EndWriteNotCalibratedFlag_R3@8
- 420 _EndWriteOffModeBatteryTestInterval_R3@8
- 421 _EndWriteOffModeDisplay_R3@8
- 422 _EndWritePcbPartNumber_R3@8
- 423 _EndWritePcbRevision_R3@8
- 424 _EndWritePcbSerialNumber_R3@8
- 425 _EndWritePulseModeEnable_R3@8
- 426 _EndWritePulseModeIndustrial_R3@8
- 427 _EndWritePulseModeThreshold_R3@8
- 428 _EndWritePulsedModeOverrangeThreshold_R3@8
- 429 _EndWriteQuickAccessDisplays_R3@8
- 430 _EndWriteRTC_R3@8
- 431 _EndWriteRateOffPercentage@8
- 432 _EndWriteReturnForReadTime@8
- 433 _EndWriteScratchpad@8
- 434 _EndWriteSelfTestInterval@8
- 435 _EndWriteSensitivities_R2@8
- 436 _EndWriteSensitivities_R3@8
- 437 _EndWriteStayTime_R3@8
- 438 _EndWriteSwitchOnFromButton_R3@8
- 439 _EndWriteTaskDatabaseId_R3@8
- 440 _EndWriteTaskId_R3@8
- 441 _EndWriteTelemetryAdvConfig_R3@8
- 442 _EndWriteTelemetryAdvContent_R3@8
- 443 _EndWriteTelemetryCxnConfig_R3@8
- 444 _EndWriteTelemetryEnable_R3@8
- 445 _EndWriteTelemetryMode_R2@8
- 446 _EndWriteTelemetryReportInterval_R3@8
- 447 _EndWriteTelemetryTxPower_R3@8
- 448 _EndWriteTotalDoses@8
- 449 _EndWriteTriggeredDoses_R3@8
- 450 _EndWriteWearerDatabaseId_R3@8
- 451 _EndWriteWearerId@8
- 452 _EndWriteZoneControlMap@8
- 453 _GetDiscoveredEpds@16
- 454 _GetDiscoveryTimeout@8
- 455 _GetDiscoveryTimeslots@8
- 456 _GetDllLogLevel@8
- 457 _GetErrorCode@0
- 458 _GetMultipleDiscoveryMode@8
- 459 _GetResponseTimeout@8
- 460 _GetRetryCount@8
- 461 _OpenReader@8
- 462 _SetConnectCallback@8
- 463 _SetDisconnectCallback@8
- 464 _SetDiscoveryCacheTimeout@8
- 465 _SetDiscoveryTimeslots@8
- 466 _SetDllLogLevel@8
- 467 _SetMultipleDiscoveryMode@8
- 468 _SetRemovedCallback@8
- 469 _SetResponseTimeout@8
- 470 _SetRetryCount@8
- 471 _StartDiscovery@8
- 472 _StopDiscovery@4
-
- Summary
-
- C3 .debug$S
- 14 .idata$2
- 14 .idata$3
- 4 .idata$4
- 4 .idata$5
- C .idata$6
diff --git a/TestMK3/x.yxy b/TestMK3/x.yxy
deleted file mode 100644
index cb67fae..0000000
--- a/TestMK3/x.yxy
+++ /dev/null
@@ -1,11630 +0,0 @@
-Microsoft (R) COFF/PE Dumper Version 14.28.29914.0
-Copyright (C) Microsoft Corporation. All rights reserved.
-
-
-Dump of file reader3.lib
-
-File Type: LIBRARY
-
-Archive member name at 8: /
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 84C2 size
-correct header end
-
- 947 public symbols
-
- 10A0E __IMPORT_DESCRIPTOR_reader3
- 10C38 __NULL_IMPORT_DESCRIPTOR
- 10D6E reader3_NULL_THUNK_DATA
- 10EC0 _AwaitRemoval@20
- 10EC0 __imp__AwaitRemoval@20
- 10F2E _BeginClearAllStatus@8
- 10F2E __imp__BeginClearAllStatus@8
- 10FA2 _BeginClearDose@8
- 10FA2 __imp__BeginClearDose@8
- 11010 _BeginClearDoseProfile_R3@8
- 11010 __imp__BeginClearDoseProfile_R3@8
- 11088 _BeginClearEEPROM_R3@8
- 11088 __imp__BeginClearEEPROM_R3@8
- 110FC _BeginClearFaultStatus@8
- 110FC __imp__BeginClearFaultStatus@8
- 11172 _BeginClearGraphic_R3@12
- 11172 __imp__BeginClearGraphic_R3@12
- 111E8 _BeginClearLatchedAlarms@8
- 111E8 __imp__BeginClearLatchedAlarms@8
- 11260 _BeginClearPeakRates@8
- 11260 __imp__BeginClearPeakRates@8
- 112D4 _BeginClearScratchPad@12
- 112D4 __imp__BeginClearScratchPad@12
- 1134A _BeginClearTotalDose@8
- 1134A __imp__BeginClearTotalDose@8
- 113BE _BeginClearWearerOrTaskId_R3@16
- 113BE __imp__BeginClearWearerOrTaskId_R3@16
- 1143A _BeginDeissueEPD@8
- 1143A __imp__BeginDeissueEPD@8
- 114AA _BeginEnableCovertMode_R3@12
- 114AA __imp__BeginEnableCovertMode_R3@12
- 11524 _BeginEnableDeepSleep_R3@12
- 11524 __imp__BeginEnableDeepSleep_R3@12
- 1159C _BeginEnableManufacturerLockout_R3@12
- 1159C __imp__BeginEnableManufacturerLockout_R3@12
- 1161E _BeginEnableProtectedSession_R3@12
- 1161E __imp__BeginEnableProtectedSession_R3@12
- 1169E _BeginEnableResponderMode_R3@12
- 1169E __imp__BeginEnableResponderMode_R3@12
- 1171A _BeginEpdOnOff@12
- 1171A __imp__BeginEpdOnOff@12
- 11788 _BeginInitiateFirmwareUpdate_R3@8
- 11788 __imp__BeginInitiateFirmwareUpdate_R3@8
- 11806 _BeginIssueEPD@8
- 11806 __imp__BeginIssueEPD@8
- 11874 _BeginReadAccessPermissionsForLevel_R3@12
- 11874 __imp__BeginReadAccessPermissionsForLevel_R3@12
- 118FA _BeginReadAlarmConfiguration@16
- 118FA __imp__BeginReadAlarmConfiguration@16
- 11976 _BeginReadAlarmConfigurationLock_R3@8
- 11976 __imp__BeginReadAlarmConfigurationLock_R3@8
- 119F8 _BeginReadAlarmConfiguration_R3@16
- 119F8 __imp__BeginReadAlarmConfiguration_R3@16
- 11A78 _BeginReadAlarmThresholds@20
- 11A78 __imp__BeginReadAlarmThresholds@20
- 11AF2 _BeginReadBacklightBrightness_R3@8
- 11AF2 __imp__BeginReadBacklightBrightness_R3@8
- 11B72 _BeginReadBacklightEnable_R3@8
- 11B72 __imp__BeginReadBacklightEnable_R3@8
- 11BEE _BeginReadBacklightPeriod_R3@8
- 11BEE __imp__BeginReadBacklightPeriod_R3@8
- 11C6A _BeginReadBaselineCounts@8
- 11C6A __imp__BeginReadBaselineCounts@8
- 11CE2 _BeginReadBatteryCriticalTiming_R3@8
- 11CE2 __imp__BeginReadBatteryCriticalTiming_R3@8
- 11D64 _BeginReadBatteryLowThreshold@12
- 11D64 __imp__BeginReadBatteryLowThreshold@12
- 11DE2 _BeginReadBatteryTestInterval@8
- 11DE2 __imp__BeginReadBatteryTestInterval@8
- 11E5E _BeginReadBatteryTypeFitted_R3@8
- 11E5E __imp__BeginReadBatteryTypeFitted_R3@8
- 11EDC _BeginReadBatteryTypeOverride_R3@8
- 11EDC __imp__BeginReadBatteryTypeOverride_R3@8
- 11F5C _BeginReadCalDueDate@8
- 11F5C __imp__BeginReadCalDueDate@8
- 11FD0 _BeginReadCalDueDate_R3@8
- 11FD0 __imp__BeginReadCalDueDate_R3@8
- 12046 _BeginReadCalReference_R3@8
- 12046 __imp__BeginReadCalReference_R3@8
- 120BE _BeginReadCalibrationData_R2@8
- 120BE __imp__BeginReadCalibrationData_R2@8
- 1213A _BeginReadCalibrationFacility_R3@8
- 1213A __imp__BeginReadCalibrationFacility_R3@8
- 121BA _BeginReadCapabilities@8
- 121BA __imp__BeginReadCapabilities@8
- 12230 _BeginReadChirpEnable_R3@8
- 12230 __imp__BeginReadChirpEnable_R3@8
- 122A8 _BeginReadChirpSensitivity@8
- 122A8 __imp__BeginReadChirpSensitivity@8
- 12322 _BeginReadCounts@16
- 12322 __imp__BeginReadCounts@16
- 12392 _BeginReadCurrentAccessLevel@8
- 12392 __imp__BeginReadCurrentAccessLevel@8
- 1240E _BeginReadDeadTimeFactors_R3@16
- 1240E __imp__BeginReadDeadTimeFactors_R3@16
- 1248A _BeginReadDebugRegister_R3@12
- 1248A __imp__BeginReadDebugRegister_R3@12
- 12504 _BeginReadDetectorTestLimits_R3@16
- 12504 __imp__BeginReadDetectorTestLimits_R3@16
- 12584 _BeginReadDetectorThresholdLimits_R3@16
- 12584 __imp__BeginReadDetectorThresholdLimits_R3@16
- 12608 _BeginReadDetectorThresholds@16
- 12608 __imp__BeginReadDetectorThresholds@16
- 12684 _BeginReadDetectorThresholds_R3@16
- 12684 __imp__BeginReadDetectorThresholds_R3@16
- 12704 _BeginReadDisplayCapability_R3@12
- 12704 __imp__BeginReadDisplayCapability_R3@12
- 12782 _BeginReadDisplayEnablePermissions_R3@12
- 12782 __imp__BeginReadDisplayEnablePermissions_R3@12
- 12808 _BeginReadDisplayEnables_R3@16
- 12808 __imp__BeginReadDisplayEnables_R3@16
- 12884 _BeginReadDisplayOptions@8
- 12884 __imp__BeginReadDisplayOptions@8
- 128FC _BeginReadDisplayOptionsLock_R3@8
- 128FC __imp__BeginReadDisplayOptionsLock_R3@8
- 1297A _BeginReadDisplayTimeout@8
- 1297A __imp__BeginReadDisplayTimeout@8
- 129F2 _BeginReadDoseProfileByIndex_R3@16
- 129F2 __imp__BeginReadDoseProfileByIndex_R3@16
- 12A72 _BeginReadDoseProfileByTime@16
- 12A72 __imp__BeginReadDoseProfileByTime@16
- 12AEE _BeginReadDoseProfileConfiguration_R3@8
- 12AEE __imp__BeginReadDoseProfileConfiguration_R3@8
- 12B72 _BeginReadDoseProfileInterval@8
- 12B72 __imp__BeginReadDoseProfileInterval@8
- 12BEE _BeginReadDoseSaveInterval_R3@8
- 12BEE __imp__BeginReadDoseSaveInterval_R3@8
- 12C6A _BeginReadDoses@16
- 12C6A __imp__BeginReadDoses@16
- 12CDA _BeginReadEEProm@16
- 12CDA __imp__BeginReadEEProm@16
- 12D4A _BeginReadEpdIdentities@8
- 12D4A __imp__BeginReadEpdIdentities@8
- 12DC0 _BeginReadEpdPartNumber_R3@8
- 12DC0 __imp__BeginReadEpdPartNumber_R3@8
- 12E3A _BeginReadEpdRevision_R3@8
- 12E3A __imp__BeginReadEpdRevision_R3@8
- 12EB2 _BeginReadEpdSerialNum@8
- 12EB2 __imp__BeginReadEpdSerialNum@8
- 12F28 _BeginReadEpdType@8
- 12F28 __imp__BeginReadEpdType@8
- 12F98 _BeginReadEventLogLevel_R3@8
- 12F98 __imp__BeginReadEventLogLevel_R3@8
- 13012 _BeginReadEventsByIndex@16
- 13012 __imp__BeginReadEventsByIndex@16
- 1308A _BeginReadFactoryCalDate@8
- 1308A __imp__BeginReadFactoryCalDate@8
- 13102 _BeginReadFemSerialNum_R3@8
- 13102 __imp__BeginReadFemSerialNum_R3@8
- 1317A _BeginReadFirmwarePartNumber_R3@8
- 1317A __imp__BeginReadFirmwarePartNumber_R3@8
- 131F8 _BeginReadFirmwareVersion@8
- 131F8 __imp__BeginReadFirmwareVersion@8
- 13270 _BeginReadFlashTestCounts_R3@16
- 13270 __imp__BeginReadFlashTestCounts_R3@16
- 132EC _BeginReadFpgaVersion_R3@8
- 132EC __imp__BeginReadFpgaVersion_R3@8
- 13364 _BeginReadGains@16
- 13364 __imp__BeginReadGains@16
- 133D4 _BeginReadGains_R3@16
- 133D4 __imp__BeginReadGains_R3@16
- 13446 _BeginReadGraphicData_R3@12
- 13446 __imp__BeginReadGraphicData_R3@12
- 134BE _BeginReadGraphicSize_R3@12
- 134BE __imp__BeginReadGraphicSize_R3@12
- 13536 _BeginReadLastCalibrationProcess_R3@8
- 13536 __imp__BeginReadLastCalibrationProcess_R3@8
- 135B8 _BeginReadMarkNumber@8
- 135B8 __imp__BeginReadMarkNumber@8
- 1362C _BeginReadMeasurandIds_R3@8
- 1362C __imp__BeginReadMeasurandIds_R3@8
- 136A4 _BeginReadModelName_R3@8
- 136A4 __imp__BeginReadModelName_R3@8
- 1371A _BeginReadOffModeBatteryTestInterval_R3@8
- 1371A __imp__BeginReadOffModeBatteryTestInterval_R3@8
- 137A0 _BeginReadOffModeDisplay_R3@8
- 137A0 __imp__BeginReadOffModeDisplay_R3@8
- 1381A _BeginReadPcbPartNumber_R3@8
- 1381A __imp__BeginReadPcbPartNumber_R3@8
- 13894 _BeginReadPcbRevision_R3@8
- 13894 __imp__BeginReadPcbRevision_R3@8
- 1390C _BeginReadPcbSerialNum_R3@8
- 1390C __imp__BeginReadPcbSerialNum_R3@8
- 13984 _BeginReadPeakRates@16
- 13984 __imp__BeginReadPeakRates@16
- 139F8 _BeginReadPulseModeEnable_R3@8
- 139F8 __imp__BeginReadPulseModeEnable_R3@8
- 13A74 _BeginReadPulseModeIndustrial_R3@8
- 13A74 __imp__BeginReadPulseModeIndustrial_R3@8
- 13AF4 _BeginReadPulseModeThreshold_R3@8
- 13AF4 __imp__BeginReadPulseModeThreshold_R3@8
- 13B72 _BeginReadPulsedModeOverrangeThreshold_R3@8
- 13B72 __imp__BeginReadPulsedModeOverrangeThreshold_R3@8
- 13BFA _BeginReadQualityData@8
- 13BFA __imp__BeginReadQualityData@8
- 13C6E _BeginReadQuickAccessDisplays_R3@16
- 13C6E __imp__BeginReadQuickAccessDisplays_R3@16
- 13CEE _BeginReadRTC@8
- 13CEE __imp__BeginReadRTC@8
- 13D5A _BeginReadRadioFirmwareVersion_R3@8
- 13D5A __imp__BeginReadRadioFirmwareVersion_R3@8
- 13DDA _BeginReadRateOffPercentage@16
- 13DDA __imp__BeginReadRateOffPercentage@16
- 13E56 _BeginReadRates@16
- 13E56 __imp__BeginReadRates@16
- 13EC6 _BeginReadResponderTriggerUtc_R3@8
- 13EC6 __imp__BeginReadResponderTriggerUtc_R3@8
- 13F46 _BeginReadReturnForReadTime@8
- 13F46 __imp__BeginReadReturnForReadTime@8
- 13FC0 _BeginReadRunTime_R3@8
- 13FC0 __imp__BeginReadRunTime_R3@8
- 14034 _BeginReadScratchPad@16
- 14034 __imp__BeginReadScratchPad@16
- 140A8 _BeginReadScratchpadSize@8
- 140A8 __imp__BeginReadScratchpadSize@8
- 14120 _BeginReadSelfTestInterval@8
- 14120 __imp__BeginReadSelfTestInterval@8
- 1419A _BeginReadSensitivities@16
- 1419A __imp__BeginReadSensitivities@16
- 14212 _BeginReadSensitivities_R3@16
- 14212 __imp__BeginReadSensitivities_R3@16
- 1428C _BeginReadSnapshotAlarmThresholds_R3@12
- 1428C __imp__BeginReadSnapshotAlarmThresholds_R3@12
- 14310 _BeginReadSnapshotCounters_R3@12
- 14310 __imp__BeginReadSnapshotCounters_R3@12
- 1438E _BeginReadSnapshotMeasurements_R3@12
- 1438E __imp__BeginReadSnapshotMeasurements_R3@12
- 14410 _BeginReadSnapshotSummary_R3@12
- 14410 __imp__BeginReadSnapshotSummary_R3@12
- 1448C _BeginReadStatus@8
- 1448C __imp__BeginReadStatus@8
- 144FC _BeginReadStayTime_R3@8
- 144FC __imp__BeginReadStayTime_R3@8
- 14570 _BeginReadSwitchOnFromButton_R3@8
- 14570 __imp__BeginReadSwitchOnFromButton_R3@8
- 145EE _BeginReadTaskDatabaseId_R3@8
- 145EE __imp__BeginReadTaskDatabaseId_R3@8
- 14668 _BeginReadTaskId_R3@12
- 14668 __imp__BeginReadTaskId_R3@12
- 146DC _BeginReadTelemetryAdvConfig_R3@12
- 146DC __imp__BeginReadTelemetryAdvConfig_R3@12
- 1475C _BeginReadTelemetryAdvContent_R3@12
- 1475C __imp__BeginReadTelemetryAdvContent_R3@12
- 147DC _BeginReadTelemetryCxnConfig_R3@8
- 147DC __imp__BeginReadTelemetryCxnConfig_R3@8
- 1485A _BeginReadTelemetryEnable_R3@12
- 1485A __imp__BeginReadTelemetryEnable_R3@12
- 148D6 _BeginReadTelemetryMode_R2@8
- 148D6 __imp__BeginReadTelemetryMode_R2@8
- 14950 _BeginReadTelemetryReportInterval_R3@8
- 14950 __imp__BeginReadTelemetryReportInterval_R3@8
- 149D4 _BeginReadTelemetryTxPower_R3@12
- 149D4 __imp__BeginReadTelemetryTxPower_R3@12
- 14A52 _BeginReadTotalDoses@16
- 14A52 __imp__BeginReadTotalDoses@16
- 14AC6 _BeginReadTriggeredDoses_R3@16
- 14AC6 __imp__BeginReadTriggeredDoses_R3@16
- 14B42 _BeginReadVoltages@8
- 14B42 __imp__BeginReadVoltages@8
- 14BB4 _BeginReadWearerDatabaseId_R3@8
- 14BB4 __imp__BeginReadWearerDatabaseId_R3@8
- 14C30 _BeginReadWearerId@12
- 14C30 __imp__BeginReadWearerId@12
- 14CA2 _BeginReadZoneAccessPermitted@12
- 14CA2 __imp__BeginReadZoneAccessPermitted@12
- 14D20 _BeginReadZoneControlMap@8
- 14D20 __imp__BeginReadZoneControlMap@8
- 14D98 _BeginSetBaselineCounters@8
- 14D98 __imp__BeginSetBaselineCounters@8
- 14E10 _BeginStartDetectorTest@8
- 14E10 __imp__BeginStartDetectorTest@8
- 14E86 _BeginTriggerBacklight_R3@8
- 14E86 __imp__BeginTriggerBacklight_R3@8
- 14EFE _BeginTriggerResponderMode_R3@8
- 14EFE __imp__BeginTriggerResponderMode_R3@8
- 14F7A _BeginValidateEpdOwnerKey_R3@12
- 14F7A __imp__BeginValidateEpdOwnerKey_R3@12
- 14FF6 _BeginWriteAccessKey@20
- 14FF6 __imp__BeginWriteAccessKey@20
- 1506A _BeginWriteAccessLevel@20
- 1506A __imp__BeginWriteAccessLevel@20
- 150E0 _BeginWriteAccessPermissionsForLevel_R3@20
- 150E0 __imp__BeginWriteAccessPermissionsForLevel_R3@20
- 15168 _BeginWriteAlarmConfigurationLock_R3@16
- 15168 __imp__BeginWriteAlarmConfigurationLock_R3@16
- 151EC _BeginWriteAlarmConfiguration_R3@16
- 151EC __imp__BeginWriteAlarmConfiguration_R3@16
- 1526C _BeginWriteAlarmThresholds@20
- 1526C __imp__BeginWriteAlarmThresholds@20
- 152E6 _BeginWriteBacklightBrightness_R3@12
- 152E6 __imp__BeginWriteBacklightBrightness_R3@12
- 15368 _BeginWriteBacklightEnable_R3@12
- 15368 __imp__BeginWriteBacklightEnable_R3@12
- 153E6 _BeginWriteBacklightPeriod_R3@12
- 153E6 __imp__BeginWriteBacklightPeriod_R3@12
- 15464 _BeginWriteBatteryCriticalTiming_R3@16
- 15464 __imp__BeginWriteBatteryCriticalTiming_R3@16
- 154E8 _BeginWriteBatteryLowThreshold@16
- 154E8 __imp__BeginWriteBatteryLowThreshold@16
- 15566 _BeginWriteBatteryTestInterval@12
- 15566 __imp__BeginWriteBatteryTestInterval@12
- 155E4 _BeginWriteBatteryTypeOverride_R3@12
- 155E4 __imp__BeginWriteBatteryTypeOverride_R3@12
- 15666 _BeginWriteCalDueDate@12
- 15666 __imp__BeginWriteCalDueDate@12
- 156DC _BeginWriteCalDueDate_R3@12
- 156DC __imp__BeginWriteCalDueDate_R3@12
- 15754 _BeginWriteCalReference_R3@12
- 15754 __imp__BeginWriteCalReference_R3@12
- 157CE _BeginWriteCalibrationFacility_R3@16
- 157CE __imp__BeginWriteCalibrationFacility_R3@16
- 15850 _BeginWriteCapabilities_R3@12
- 15850 __imp__BeginWriteCapabilities_R3@12
- 158CA _BeginWriteChirpEnable_R3@12
- 158CA __imp__BeginWriteChirpEnable_R3@12
- 15944 _BeginWriteChirpSensitivity@12
- 15944 __imp__BeginWriteChirpSensitivity@12
- 159C0 _BeginWriteClearDoseOnSwitchOn@12
- 159C0 __imp__BeginWriteClearDoseOnSwitchOn@12
- 15A3E _BeginWriteDeadTimeFactors_R3@16
- 15A3E __imp__BeginWriteDeadTimeFactors_R3@16
- 15ABC _BeginWriteDebugRegister_R3@16
- 15ABC __imp__BeginWriteDebugRegister_R3@16
- 15B38 _BeginWriteDetectorTestLimits_R3@16
- 15B38 __imp__BeginWriteDetectorTestLimits_R3@16
- 15BB8 _BeginWriteDetectorThresholds_R2@24
- 15BB8 __imp__BeginWriteDetectorThresholds_R2@24
- 15C38 _BeginWriteDetectorThresholds_R3@16
- 15C38 __imp__BeginWriteDetectorThresholds_R3@16
- 15CB8 _BeginWriteDisplayEnablePermissions_R3@20
- 15CB8 __imp__BeginWriteDisplayEnablePermissions_R3@20
- 15D3E _BeginWriteDisplayEnables_R3@16
- 15D3E __imp__BeginWriteDisplayEnables_R3@16
- 15DBA _BeginWriteDisplayOptions@16
- 15DBA __imp__BeginWriteDisplayOptions@16
- 15E34 _BeginWriteDisplayOptionsLock_R3@16
- 15E34 __imp__BeginWriteDisplayOptionsLock_R3@16
- 15EB4 _BeginWriteDisplayTimeout@12
- 15EB4 __imp__BeginWriteDisplayTimeout@12
- 15F2E _BeginWriteDoseProfileDoseIncrement_R3@12
- 15F2E __imp__BeginWriteDoseProfileDoseIncrement_R3@12
- 15FB4 _BeginWriteDoseProfileInterval@12
- 15FB4 __imp__BeginWriteDoseProfileInterval@12
- 16032 _BeginWriteDoseProfileMeasurands_R3@16
- 16032 __imp__BeginWriteDoseProfileMeasurands_R3@16
- 160B6 _BeginWriteDoseSaveInterval_R3@12
- 160B6 __imp__BeginWriteDoseSaveInterval_R3@12
- 16134 _BeginWriteDoseWritableFlag@12
- 16134 __imp__BeginWriteDoseWritableFlag@12
- 161B0 _BeginWriteDoses@16
- 161B0 __imp__BeginWriteDoses@16
- 16220 _BeginWriteEEProm@20
- 16220 __imp__BeginWriteEEProm@20
- 16292 _BeginWriteEpdPartNumber_R3@12
- 16292 __imp__BeginWriteEpdPartNumber_R3@12
- 1630E _BeginWriteEpdRevision_R3@12
- 1630E __imp__BeginWriteEpdRevision_R3@12
- 16388 _BeginWriteEpdSerialNumber@12
- 16388 __imp__BeginWriteEpdSerialNumber@12
- 16402 _BeginWriteEventLogLevel_R3@12
- 16402 __imp__BeginWriteEventLogLevel_R3@12
- 1647E _BeginWriteFactoryCalDate@12
- 1647E __imp__BeginWriteFactoryCalDate@12
- 164F8 _BeginWriteFemSerialNumber_R3@12
- 164F8 __imp__BeginWriteFemSerialNumber_R3@12
- 16576 _BeginWriteGainableFlag_R3@12
- 16576 __imp__BeginWriteGainableFlag_R3@12
- 165F0 _BeginWriteGains_R3@16
- 165F0 __imp__BeginWriteGains_R3@16
- 16664 _BeginWriteGoldenFlag_R3@12
- 16664 __imp__BeginWriteGoldenFlag_R3@12
- 166DC _BeginWriteGraphicBitmap_R3@352
- 166DC __imp__BeginWriteGraphicBitmap_R3@352
- 16758 _BeginWriteLastCalibrationProcess_R3@20
- 16758 __imp__BeginWriteLastCalibrationProcess_R3@20
- 167DC _BeginWriteMarkNumber_R3@12
- 167DC __imp__BeginWriteMarkNumber_R3@12
- 16854 _BeginWriteModelName_R3@40
- 16854 __imp__BeginWriteModelName_R3@40
- 168CC _BeginWriteNotCalibratedFlag_R3@12
- 168CC __imp__BeginWriteNotCalibratedFlag_R3@12
- 1694C _BeginWriteOffModeBatteryTestInterval_R3@12
- 1694C __imp__BeginWriteOffModeBatteryTestInterval_R3@12
- 169D4 _BeginWriteOffModeDisplay_R3@16
- 169D4 __imp__BeginWriteOffModeDisplay_R3@16
- 16A50 _BeginWritePcbPartNumber_R3@12
- 16A50 __imp__BeginWritePcbPartNumber_R3@12
- 16ACC _BeginWritePcbRevision_R3@12
- 16ACC __imp__BeginWritePcbRevision_R3@12
- 16B46 _BeginWritePcbSerialNumber_R3@12
- 16B46 __imp__BeginWritePcbSerialNumber_R3@12
- 16BC4 _BeginWritePulseModeEnable_R3@12
- 16BC4 __imp__BeginWritePulseModeEnable_R3@12
- 16C42 _BeginWritePulseModeIndustrial_R3@12
- 16C42 __imp__BeginWritePulseModeIndustrial_R3@12
- 16CC4 _BeginWritePulseModeThreshold_R3@12
- 16CC4 __imp__BeginWritePulseModeThreshold_R3@12
- 16D44 _BeginWritePulsedModeOverrangeThreshold_R3@12
- 16D44 __imp__BeginWritePulsedModeOverrangeThreshold_R3@12
- 16DCE _BeginWriteQuickAccessDisplays_R3@16
- 16DCE __imp__BeginWriteQuickAccessDisplays_R3@16
- 16E50 _BeginWriteRTC_R3@12
- 16E50 __imp__BeginWriteRTC_R3@12
- 16EC2 _BeginWriteRateOffPercentage@16
- 16EC2 __imp__BeginWriteRateOffPercentage@16
- 16F3E _BeginWriteReturnForReadTime@12
- 16F3E __imp__BeginWriteReturnForReadTime@12
- 16FBA _BeginWriteScratchPad@20
- 16FBA __imp__BeginWriteScratchPad@20
- 17030 _BeginWriteSelfTestInterval@12
- 17030 __imp__BeginWriteSelfTestInterval@12
- 170AC _BeginWriteSensitivities_R2@32
- 170AC __imp__BeginWriteSensitivities_R2@32
- 17128 _BeginWriteSensitivities_R3@16
- 17128 __imp__BeginWriteSensitivities_R3@16
- 171A4 _BeginWriteStayTime_R3@12
- 171A4 __imp__BeginWriteStayTime_R3@12
- 1721A _BeginWriteSwitchOnFromButton_R3@12
- 1721A __imp__BeginWriteSwitchOnFromButton_R3@12
- 1729A _BeginWriteTaskDatabaseId_R3@24
- 1729A __imp__BeginWriteTaskDatabaseId_R3@24
- 17316 _BeginWriteTaskId_R3@76
- 17316 __imp__BeginWriteTaskId_R3@76
- 1738A _BeginWriteTelemetryAdvConfig_R3@12
- 1738A __imp__BeginWriteTelemetryAdvConfig_R3@12
- 1740A _BeginWriteTelemetryAdvContent_R3@16
- 1740A __imp__BeginWriteTelemetryAdvContent_R3@16
- 1748C _BeginWriteTelemetryCxnConfig_R3@12
- 1748C __imp__BeginWriteTelemetryCxnConfig_R3@12
- 1750C _BeginWriteTelemetryEnable_R3@16
- 1750C __imp__BeginWriteTelemetryEnable_R3@16
- 1758A _BeginWriteTelemetryMode_R2@12
- 1758A __imp__BeginWriteTelemetryMode_R2@12
- 17606 _BeginWriteTelemetryReportInterval_R3@12
- 17606 __imp__BeginWriteTelemetryReportInterval_R3@12
- 1768C _BeginWriteTelemetryTxPower_R3@16
- 1768C __imp__BeginWriteTelemetryTxPower_R3@16
- 1770A _BeginWriteTotalDoses@16
- 1770A __imp__BeginWriteTotalDoses@16
- 17780 _BeginWriteTriggeredDoses_R3@16
- 17780 __imp__BeginWriteTriggeredDoses_R3@16
- 177FC _BeginWriteWearerDatabaseId_R3@24
- 177FC __imp__BeginWriteWearerDatabaseId_R3@24
- 1787A _BeginWriteWearerId@76
- 1787A __imp__BeginWriteWearerId@76
- 178EE _BeginWriteZoneControlMap@16
- 178EE __imp__BeginWriteZoneControlMap@16
- 17968 _CleanUpReadDoseProfile@4
- 17968 __imp__CleanUpReadDoseProfile@4
- 179DE _CleanUpReadEventLog@4
- 179DE __imp__CleanUpReadEventLog@4
- 17A52 _CloseReader@4
- 17A52 __imp__CloseReader@4
- 17ABE _Commit@4
- 17ABE __imp__Commit@4
- 17B24 _Connect@20
- 17B24 __imp__Connect@20
- 17B8C _CreateReaderInterface@0
- 17B8C __imp__CreateReaderInterface@0
- 17C02 _DestroyReaderInterface@4
- 17C02 __imp__DestroyReaderInterface@4
- 17C78 _Disconnect@4
- 17C78 __imp__Disconnect@4
- 17CE2 _DisconnectAndNotify@12
- 17CE2 __imp__DisconnectAndNotify@12
- 17D56 _EndClearAllStatus@8
- 17D56 __imp__EndClearAllStatus@8
- 17DC8 _EndClearDose@8
- 17DC8 __imp__EndClearDose@8
- 17E34 _EndClearDoseProfile_R3@8
- 17E34 __imp__EndClearDoseProfile_R3@8
- 17EAA _EndClearEEPROM_R3@8
- 17EAA __imp__EndClearEEPROM_R3@8
- 17F1C _EndClearFaultStatus@8
- 17F1C __imp__EndClearFaultStatus@8
- 17F90 _EndClearGraphic_R3@8
- 17F90 __imp__EndClearGraphic_R3@8
- 18002 _EndClearLatchedAlarms@8
- 18002 __imp__EndClearLatchedAlarms@8
- 18078 _EndClearPeakRates@8
- 18078 __imp__EndClearPeakRates@8
- 180EA _EndClearScratchpad@8
- 180EA __imp__EndClearScratchpad@8
- 1815C _EndClearTotalDose@8
- 1815C __imp__EndClearTotalDose@8
- 181CE _EndClearWearerOrTaskId_R3@8
- 181CE __imp__EndClearWearerOrTaskId_R3@8
- 18248 _EndDeissueEPD@8
- 18248 __imp__EndDeissueEPD@8
- 182B6 _EndEnableCovertMode_R3@8
- 182B6 __imp__EndEnableCovertMode_R3@8
- 1832C _EndEnableDeepSleep_R3@8
- 1832C __imp__EndEnableDeepSleep_R3@8
- 183A2 _EndEnableManufacturerLockout_R3@8
- 183A2 __imp__EndEnableManufacturerLockout_R3@8
- 18422 _EndEnableProtectedSession_R3@8
- 18422 __imp__EndEnableProtectedSession_R3@8
- 1849E _EndEnableResponderMode_R3@8
- 1849E __imp__EndEnableResponderMode_R3@8
- 18518 _EndEpdOnOff@8
- 18518 __imp__EndEpdOnOff@8
- 18584 _EndInitiateFirmwareUpdate_R3@8
- 18584 __imp__EndInitiateFirmwareUpdate_R3@8
- 18600 _EndIssueEPD@8
- 18600 __imp__EndIssueEPD@8
- 1866C _EndReadAccessPermissionsForLevel_R3@20
- 1866C __imp__EndReadAccessPermissionsForLevel_R3@20
- 186F0 _EndReadAlarmConfiguration@20
- 186F0 __imp__EndReadAlarmConfiguration@20
- 1876A _EndReadAlarmConfigurationLock_R3@20
- 1876A __imp__EndReadAlarmConfigurationLock_R3@20
- 187EC _EndReadAlarmConfiguration_R3@20
- 187EC __imp__EndReadAlarmConfiguration_R3@20
- 1886A _EndReadAlarmThresholds@12
- 1886A __imp__EndReadAlarmThresholds@12
- 188E2 _EndReadBacklightBrightness_R3@12
- 188E2 __imp__EndReadBacklightBrightness_R3@12
- 18960 _EndReadBacklightEnable_R3@12
- 18960 __imp__EndReadBacklightEnable_R3@12
- 189DA _EndReadBacklightPeriod_R3@12
- 189DA __imp__EndReadBacklightPeriod_R3@12
- 18A54 _EndReadBaselineCounts@24
- 18A54 __imp__EndReadBaselineCounts@24
- 18ACA _EndReadBatteryCriticalTiming_R3@16
- 18ACA __imp__EndReadBatteryCriticalTiming_R3@16
- 18B4A _EndReadBatteryLowThreshold@16
- 18B4A __imp__EndReadBatteryLowThreshold@16
- 18BC6 _EndReadBatteryTestInterval@12
- 18BC6 __imp__EndReadBatteryTestInterval@12
- 18C42 _EndReadBatteryTypeFitted_R3@12
- 18C42 __imp__EndReadBatteryTypeFitted_R3@12
- 18CBE _EndReadBatteryTypeOverride_R3@12
- 18CBE __imp__EndReadBatteryTypeOverride_R3@12
- 18D3C _EndReadCalDueDate@12
- 18D3C __imp__EndReadCalDueDate@12
- 18DAE _EndReadCalDueDate_R3@12
- 18DAE __imp__EndReadCalDueDate_R3@12
- 18E24 _EndReadCalReference_R3@12
- 18E24 __imp__EndReadCalReference_R3@12
- 18E9C _EndReadCalibrationData_R2@48
- 18E9C __imp__EndReadCalibrationData_R2@48
- 18F16 _EndReadCalibrationFacility_R3@12
- 18F16 __imp__EndReadCalibrationFacility_R3@12
- 18F94 _EndReadCapabilities@12
- 18F94 __imp__EndReadCapabilities@12
- 19008 _EndReadChirpEnable_R3@12
- 19008 __imp__EndReadChirpEnable_R3@12
- 1907E _EndReadChirpSensitivity@12
- 1907E __imp__EndReadChirpSensitivity@12
- 190F6 _EndReadCounts@28
- 190F6 __imp__EndReadCounts@28
- 19164 _EndReadCurrentAccessLevel@12
- 19164 __imp__EndReadCurrentAccessLevel@12
- 191DE _EndReadDeadTimeFactors_R3@20
- 191DE __imp__EndReadDeadTimeFactors_R3@20
- 19258 _EndReadDebugRegister_R3@16
- 19258 __imp__EndReadDebugRegister_R3@16
- 192D0 _EndReadDetectorTestLimits_R3@20
- 192D0 __imp__EndReadDetectorTestLimits_R3@20
- 1934E _EndReadDetectorThresholdLimits_R3@20
- 1934E __imp__EndReadDetectorThresholdLimits_R3@20
- 193D0 _EndReadDetectorThresholds@20
- 193D0 __imp__EndReadDetectorThresholds@20
- 1944A _EndReadDetectorThresholds_R3@20
- 1944A __imp__EndReadDetectorThresholds_R3@20
- 194C8 _EndReadDisplayCapability_R3@24
- 194C8 __imp__EndReadDisplayCapability_R3@24
- 19544 _EndReadDisplayEnablePermissions_R3@24
- 19544 __imp__EndReadDisplayEnablePermissions_R3@24
- 195C8 _EndReadDisplayEnables_R3@20
- 195C8 __imp__EndReadDisplayEnables_R3@20
- 19642 _EndReadDisplayOptions@12
- 19642 __imp__EndReadDisplayOptions@12
- 196B8 _EndReadDisplayOptionsLock_R3@12
- 196B8 __imp__EndReadDisplayOptionsLock_R3@12
- 19736 _EndReadDisplayTimeout@12
- 19736 __imp__EndReadDisplayTimeout@12
- 197AC _EndReadDoseProfileByIndex_R3@24
- 197AC __imp__EndReadDoseProfileByIndex_R3@24
- 1982A _EndReadDoseProfileByTime@16
- 1982A __imp__EndReadDoseProfileByTime@16
- 198A4 _EndReadDoseProfileConfiguration_R3@12
- 198A4 __imp__EndReadDoseProfileConfiguration_R3@12
- 19928 _EndReadDoseProfileInterval@12
- 19928 __imp__EndReadDoseProfileInterval@12
- 199A4 _EndReadDoseSaveInterval_R3@12
- 199A4 __imp__EndReadDoseSaveInterval_R3@12
- 19A20 _EndReadDoses@24
- 19A20 __imp__EndReadDoses@24
- 19A8E _EndReadEEProm@24
- 19A8E __imp__EndReadEEProm@24
- 19AFC _EndReadEpdIdentities@36
- 19AFC __imp__EndReadEpdIdentities@36
- 19B72 _EndReadEpdPartNumber_R3@12
- 19B72 __imp__EndReadEpdPartNumber_R3@12
- 19BEA _EndReadEpdRevision_R3@12
- 19BEA __imp__EndReadEpdRevision_R3@12
- 19C60 _EndReadEpdSerialNum@12
- 19C60 __imp__EndReadEpdSerialNum@12
- 19CD4 _EndReadEpdType@12
- 19CD4 __imp__EndReadEpdType@12
- 19D44 _EndReadEventLogLevel_R3@12
- 19D44 __imp__EndReadEventLogLevel_R3@12
- 19DBC _EndReadEventsByIndex@16
- 19DBC __imp__EndReadEventsByIndex@16
- 19E32 _EndReadFactoryCalDate@12
- 19E32 __imp__EndReadFactoryCalDate@12
- 19EA8 _EndReadFemSerialNum_R3@12
- 19EA8 __imp__EndReadFemSerialNum_R3@12
- 19F20 _EndReadFirmwarePartNumber_R3@12
- 19F20 __imp__EndReadFirmwarePartNumber_R3@12
- 19F9E _EndReadFirmwareVersion@12
- 19F9E __imp__EndReadFirmwareVersion@12
- 1A016 _EndReadFlashTestCounts_R3@24
- 1A016 __imp__EndReadFlashTestCounts_R3@24
- 1A090 _EndReadFpgaVersion_R3@16
- 1A090 __imp__EndReadFpgaVersion_R3@16
- 1A106 _EndReadGains@20
- 1A106 __imp__EndReadGains@20
- 1A174 _EndReadGains_R3@20
- 1A174 __imp__EndReadGains_R3@20
- 1A1E4 _EndReadGraphicData_R3@12
- 1A1E4 __imp__EndReadGraphicData_R3@12
- 1A25A _EndReadGraphicSize_R3@12
- 1A25A __imp__EndReadGraphicSize_R3@12
- 1A2D0 _EndReadLastCalibrationProcess_R3@12
- 1A2D0 __imp__EndReadLastCalibrationProcess_R3@12
- 1A352 _EndReadMarkNumber@12
- 1A352 __imp__EndReadMarkNumber@12
- 1A3C4 _EndReadMeasurandIds_R3@20
- 1A3C4 __imp__EndReadMeasurandIds_R3@20
- 1A43C _EndReadModelName_R3@12
- 1A43C __imp__EndReadModelName_R3@12
- 1A4B0 _EndReadOffModeBatteryTestInterval_R3@12
- 1A4B0 __imp__EndReadOffModeBatteryTestInterval_R3@12
- 1A536 _EndReadOffModeDisplay_R3@16
- 1A536 __imp__EndReadOffModeDisplay_R3@16
- 1A5B0 _EndReadPcbPartNumber_R3@12
- 1A5B0 __imp__EndReadPcbPartNumber_R3@12
- 1A628 _EndReadPcbRevision_R3@12
- 1A628 __imp__EndReadPcbRevision_R3@12
- 1A69E _EndReadPcbSerialNum_R3@12
- 1A69E __imp__EndReadPcbSerialNum_R3@12
- 1A716 _EndReadPeakRates@20
- 1A716 __imp__EndReadPeakRates@20
- 1A788 _EndReadPulseModeEnable_R3@12
- 1A788 __imp__EndReadPulseModeEnable_R3@12
- 1A802 _EndReadPulseModeIndustrial_R3@12
- 1A802 __imp__EndReadPulseModeIndustrial_R3@12
- 1A880 _EndReadPulseModeThreshold_R3@12
- 1A880 __imp__EndReadPulseModeThreshold_R3@12
- 1A8FE _EndReadPulsedModeOverrangeThreshold_R3@12
- 1A8FE __imp__EndReadPulsedModeOverrangeThreshold_R3@12
- 1A986 _EndReadQualityData@12
- 1A986 __imp__EndReadQualityData@12
- 1A9FA _EndReadQuickAccessDisplays_R3@20
- 1A9FA __imp__EndReadQuickAccessDisplays_R3@20
- 1AA78 _EndReadRTC@12
- 1AA78 __imp__EndReadRTC@12
- 1AAE4 _EndReadRadioFirmwareVersion_R3@12
- 1AAE4 __imp__EndReadRadioFirmwareVersion_R3@12
- 1AB64 _EndReadRateOffPercentage@20
- 1AB64 __imp__EndReadRateOffPercentage@20
- 1ABDE _EndReadRates@24
- 1ABDE __imp__EndReadRates@24
- 1AC4C _EndReadResponderTriggerUtc_R3@12
- 1AC4C __imp__EndReadResponderTriggerUtc_R3@12
- 1ACCA _EndReadReturnForReadTime@12
- 1ACCA __imp__EndReadReturnForReadTime@12
- 1AD44 _EndReadRunTime_R3@12
- 1AD44 __imp__EndReadRunTime_R3@12
- 1ADB6 _EndReadScratchpad@24
- 1ADB6 __imp__EndReadScratchpad@24
- 1AE28 _EndReadScratchpadSize@12
- 1AE28 __imp__EndReadScratchpadSize@12
- 1AE9E _EndReadSelfTestInterval@12
- 1AE9E __imp__EndReadSelfTestInterval@12
- 1AF16 _EndReadSensitivities@20
- 1AF16 __imp__EndReadSensitivities@20
- 1AF8C _EndReadSensitivities_R3@20
- 1AF8C __imp__EndReadSensitivities_R3@20
- 1B004 _EndReadSnapshotAlarmThresholds_R3@12
- 1B004 __imp__EndReadSnapshotAlarmThresholds_R3@12
- 1B086 _EndReadSnapshotCounters_R3@12
- 1B086 __imp__EndReadSnapshotCounters_R3@12
- 1B102 _EndReadSnapshotMeasurements_R3@12
- 1B102 __imp__EndReadSnapshotMeasurements_R3@12
- 1B182 _EndReadSnapshotSummary_R3@12
- 1B182 __imp__EndReadSnapshotSummary_R3@12
- 1B1FC _EndReadStatus@12
- 1B1FC __imp__EndReadStatus@12
- 1B26A _EndReadStayTime_R3@12
- 1B26A __imp__EndReadStayTime_R3@12
- 1B2DE _EndReadSwitchOnFromButton_R3@12
- 1B2DE __imp__EndReadSwitchOnFromButton_R3@12
- 1B35C _EndReadTaskDatabaseId_R3@12
- 1B35C __imp__EndReadTaskDatabaseId_R3@12
- 1B3D6 _EndReadTaskId_R3@12
- 1B3D6 __imp__EndReadTaskId_R3@12
- 1B448 _EndReadTelemetryAdvConfig_R3@12
- 1B448 __imp__EndReadTelemetryAdvConfig_R3@12
- 1B4C6 _EndReadTelemetryAdvContent_R3@16
- 1B4C6 __imp__EndReadTelemetryAdvContent_R3@16
- 1B544 _EndReadTelemetryCxnConfig_R3@12
- 1B544 __imp__EndReadTelemetryCxnConfig_R3@12
- 1B5C2 _EndReadTelemetryEnable_R3@16
- 1B5C2 __imp__EndReadTelemetryEnable_R3@16
- 1B63C _EndReadTelemetryMode_R2@12
- 1B63C __imp__EndReadTelemetryMode_R2@12
- 1B6B4 _EndReadTelemetryReportInterval_R3@12
- 1B6B4 __imp__EndReadTelemetryReportInterval_R3@12
- 1B736 _EndReadTelemetryTxPower_R3@16
- 1B736 __imp__EndReadTelemetryTxPower_R3@16
- 1B7B2 _EndReadTotalDoses@24
- 1B7B2 __imp__EndReadTotalDoses@24
- 1B824 _EndReadTriggeredDoses_R3@24
- 1B824 __imp__EndReadTriggeredDoses_R3@24
- 1B89E _EndReadVoltages@20
- 1B89E __imp__EndReadVoltages@20
- 1B90E _EndReadWearerDatabaseId_R3@12
- 1B90E __imp__EndReadWearerDatabaseId_R3@12
- 1B98A _EndReadWearerId@12
- 1B98A __imp__EndReadWearerId@12
- 1B9FA _EndReadZoneAccessPermitted@12
- 1B9FA __imp__EndReadZoneAccessPermitted@12
- 1BA76 _EndReadZoneControlMap@12
- 1BA76 __imp__EndReadZoneControlMap@12
- 1BAEC _EndSetBaselineCounters@8
- 1BAEC __imp__EndSetBaselineCounters@8
- 1BB62 _EndStartDetectorTest@8
- 1BB62 __imp__EndStartDetectorTest@8
- 1BBD6 _EndTriggerBacklight_R3@8
- 1BBD6 __imp__EndTriggerBacklight_R3@8
- 1BC4C _EndTriggerResponderMode_R3@8
- 1BC4C __imp__EndTriggerResponderMode_R3@8
- 1BCC6 _EndValidateEpdOwnerKey_R3@12
- 1BCC6 __imp__EndValidateEpdOwnerKey_R3@12
- 1BD40 _EndWriteAccessKey@8
- 1BD40 __imp__EndWriteAccessKey@8
- 1BDB2 _EndWriteAccessLevel@8
- 1BDB2 __imp__EndWriteAccessLevel@8
- 1BE26 _EndWriteAccessPermissionsForLevel_R3@8
- 1BE26 __imp__EndWriteAccessPermissionsForLevel_R3@8
- 1BEAA _EndWriteAlarmConfigurationLock_R3@8
- 1BEAA __imp__EndWriteAlarmConfigurationLock_R3@8
- 1BF2C _EndWriteAlarmConfiguration_R3@8
- 1BF2C __imp__EndWriteAlarmConfiguration_R3@8
- 1BFAA _EndWriteAlarmThresholds@8
- 1BFAA __imp__EndWriteAlarmThresholds@8
- 1C022 _EndWriteBacklightBrightness_R3@8
- 1C022 __imp__EndWriteBacklightBrightness_R3@8
- 1C0A0 _EndWriteBacklightEnable_R3@8
- 1C0A0 __imp__EndWriteBacklightEnable_R3@8
- 1C11A _EndWriteBacklightPeriod_R3@8
- 1C11A __imp__EndWriteBacklightPeriod_R3@8
- 1C194 _EndWriteBatteryCriticalTiming_R3@8
- 1C194 __imp__EndWriteBatteryCriticalTiming_R3@8
- 1C214 _EndWriteBatteryLowThreshold@8
- 1C214 __imp__EndWriteBatteryLowThreshold@8
- 1C290 _EndWriteBatteryTestInterval@8
- 1C290 __imp__EndWriteBatteryTestInterval@8
- 1C30C _EndWriteBatteryTypeOverride_R3@8
- 1C30C __imp__EndWriteBatteryTypeOverride_R3@8
- 1C38A _EndWriteCalDueDate@8
- 1C38A __imp__EndWriteCalDueDate@8
- 1C3FC _EndWriteCalDueDate_R3@8
- 1C3FC __imp__EndWriteCalDueDate_R3@8
- 1C472 _EndWriteCalReference_R3@8
- 1C472 __imp__EndWriteCalReference_R3@8
- 1C4EA _EndWriteCalibrationFacility_R3@8
- 1C4EA __imp__EndWriteCalibrationFacility_R3@8
- 1C568 _EndWriteCapabilities_R3@8
- 1C568 __imp__EndWriteCapabilities_R3@8
- 1C5E0 _EndWriteChirpEnable_R3@8
- 1C5E0 __imp__EndWriteChirpEnable_R3@8
- 1C656 _EndWriteChirpSensitivity@8
- 1C656 __imp__EndWriteChirpSensitivity@8
- 1C6CE _EndWriteClearDoseOnSwitchOn@8
- 1C6CE __imp__EndWriteClearDoseOnSwitchOn@8
- 1C74A _EndWriteDeadTimeFactors_R3@8
- 1C74A __imp__EndWriteDeadTimeFactors_R3@8
- 1C7C4 _EndWriteDebugRegister_R3@8
- 1C7C4 __imp__EndWriteDebugRegister_R3@8
- 1C83C _EndWriteDetectorTestLimits_R3@8
- 1C83C __imp__EndWriteDetectorTestLimits_R3@8
- 1C8BA _EndWriteDetectorThresholds_R2@8
- 1C8BA __imp__EndWriteDetectorThresholds_R2@8
- 1C938 _EndWriteDetectorThresholds_R3@8
- 1C938 __imp__EndWriteDetectorThresholds_R3@8
- 1C9B6 _EndWriteDisplayEnablePermissions_R3@8
- 1C9B6 __imp__EndWriteDisplayEnablePermissions_R3@8
- 1CA3A _EndWriteDisplayEnables_R3@8
- 1CA3A __imp__EndWriteDisplayEnables_R3@8
- 1CAB4 _EndWriteDisplayOptions@8
- 1CAB4 __imp__EndWriteDisplayOptions@8
- 1CB2A _EndWriteDisplayOptionsLock_R3@8
- 1CB2A __imp__EndWriteDisplayOptionsLock_R3@8
- 1CBA8 _EndWriteDisplayTimeout@8
- 1CBA8 __imp__EndWriteDisplayTimeout@8
- 1CC1E _EndWriteDoseProfileDoseIncrement_R3@8
- 1CC1E __imp__EndWriteDoseProfileDoseIncrement_R3@8
- 1CCA2 _EndWriteDoseProfileInterval@8
- 1CCA2 __imp__EndWriteDoseProfileInterval@8
- 1CD1E _EndWriteDoseProfileMeasurands_R3@8
- 1CD1E __imp__EndWriteDoseProfileMeasurands_R3@8
- 1CD9E _EndWriteDoseSaveInterval_R3@8
- 1CD9E __imp__EndWriteDoseSaveInterval_R3@8
- 1CE1A _EndWriteDoseWritableFlag@8
- 1CE1A __imp__EndWriteDoseWritableFlag@8
- 1CE92 _EndWriteDoses@8
- 1CE92 __imp__EndWriteDoses@8
- 1CF00 _EndWriteEEProm@8
- 1CF00 __imp__EndWriteEEProm@8
- 1CF6E _EndWriteEpdPartNumber_R3@8
- 1CF6E __imp__EndWriteEpdPartNumber_R3@8
- 1CFE6 _EndWriteEpdRevision_R3@8
- 1CFE6 __imp__EndWriteEpdRevision_R3@8
- 1D05C _EndWriteEpdSerialNumber@8
- 1D05C __imp__EndWriteEpdSerialNumber@8
- 1D0D4 _EndWriteEventLogLevel_R3@8
- 1D0D4 __imp__EndWriteEventLogLevel_R3@8
- 1D14C _EndWriteFactoryCalDate@8
- 1D14C __imp__EndWriteFactoryCalDate@8
- 1D1C2 _EndWriteFemSerialNumber_R3@8
- 1D1C2 __imp__EndWriteFemSerialNumber_R3@8
- 1D23C _EndWriteGainableFlag_R3@8
- 1D23C __imp__EndWriteGainableFlag_R3@8
- 1D2B4 _EndWriteGains_R3@8
- 1D2B4 __imp__EndWriteGains_R3@8
- 1D324 _EndWriteGoldenFlag_R3@8
- 1D324 __imp__EndWriteGoldenFlag_R3@8
- 1D39A _EndWriteGraphicBitmap_R3@8
- 1D39A __imp__EndWriteGraphicBitmap_R3@8
- 1D412 _EndWriteLastCalibrationProcess_R3@8
- 1D412 __imp__EndWriteLastCalibrationProcess_R3@8
- 1D494 _EndWriteMarkNumber_R3@8
- 1D494 __imp__EndWriteMarkNumber_R3@8
- 1D50A _EndWriteModelName_R3@8
- 1D50A __imp__EndWriteModelName_R3@8
- 1D57E _EndWriteNotCalibratedFlag_R3@8
- 1D57E __imp__EndWriteNotCalibratedFlag_R3@8
- 1D5FA _EndWriteOffModeBatteryTestInterval_R3@8
- 1D5FA __imp__EndWriteOffModeBatteryTestInterval_R3@8
- 1D680 _EndWriteOffModeDisplay_R3@8
- 1D680 __imp__EndWriteOffModeDisplay_R3@8
- 1D6FA _EndWritePcbPartNumber_R3@8
- 1D6FA __imp__EndWritePcbPartNumber_R3@8
- 1D772 _EndWritePcbRevision_R3@8
- 1D772 __imp__EndWritePcbRevision_R3@8
- 1D7E8 _EndWritePcbSerialNumber_R3@8
- 1D7E8 __imp__EndWritePcbSerialNumber_R3@8
- 1D862 _EndWritePulseModeEnable_R3@8
- 1D862 __imp__EndWritePulseModeEnable_R3@8
- 1D8DC _EndWritePulseModeIndustrial_R3@8
- 1D8DC __imp__EndWritePulseModeIndustrial_R3@8
- 1D95A _EndWritePulseModeThreshold_R3@8
- 1D95A __imp__EndWritePulseModeThreshold_R3@8
- 1D9D8 _EndWritePulsedModeOverrangeThreshold_R3@8
- 1D9D8 __imp__EndWritePulsedModeOverrangeThreshold_R3@8
- 1DA60 _EndWriteQuickAccessDisplays_R3@8
- 1DA60 __imp__EndWriteQuickAccessDisplays_R3@8
- 1DADE _EndWriteRTC_R3@8
- 1DADE __imp__EndWriteRTC_R3@8
- 1DB4C _EndWriteRateOffPercentage@8
- 1DB4C __imp__EndWriteRateOffPercentage@8
- 1DBC6 _EndWriteReturnForReadTime@8
- 1DBC6 __imp__EndWriteReturnForReadTime@8
- 1DC40 _EndWriteScratchpad@8
- 1DC40 __imp__EndWriteScratchpad@8
- 1DCB2 _EndWriteSelfTestInterval@8
- 1DCB2 __imp__EndWriteSelfTestInterval@8
- 1DD2A _EndWriteSensitivities_R2@8
- 1DD2A __imp__EndWriteSensitivities_R2@8
- 1DDA2 _EndWriteSensitivities_R3@8
- 1DDA2 __imp__EndWriteSensitivities_R3@8
- 1DE1A _EndWriteStayTime_R3@8
- 1DE1A __imp__EndWriteStayTime_R3@8
- 1DE8E _EndWriteSwitchOnFromButton_R3@8
- 1DE8E __imp__EndWriteSwitchOnFromButton_R3@8
- 1DF0C _EndWriteTaskDatabaseId_R3@8
- 1DF0C __imp__EndWriteTaskDatabaseId_R3@8
- 1DF86 _EndWriteTaskId_R3@8
- 1DF86 __imp__EndWriteTaskId_R3@8
- 1DFF8 _EndWriteTelemetryAdvConfig_R3@8
- 1DFF8 __imp__EndWriteTelemetryAdvConfig_R3@8
- 1E076 _EndWriteTelemetryAdvContent_R3@8
- 1E076 __imp__EndWriteTelemetryAdvContent_R3@8
- 1E0F4 _EndWriteTelemetryCxnConfig_R3@8
- 1E0F4 __imp__EndWriteTelemetryCxnConfig_R3@8
- 1E172 _EndWriteTelemetryEnable_R3@8
- 1E172 __imp__EndWriteTelemetryEnable_R3@8
- 1E1EC _EndWriteTelemetryMode_R2@8
- 1E1EC __imp__EndWriteTelemetryMode_R2@8
- 1E264 _EndWriteTelemetryReportInterval_R3@8
- 1E264 __imp__EndWriteTelemetryReportInterval_R3@8
- 1E2E6 _EndWriteTelemetryTxPower_R3@8
- 1E2E6 __imp__EndWriteTelemetryTxPower_R3@8
- 1E362 _EndWriteTotalDoses@8
- 1E362 __imp__EndWriteTotalDoses@8
- 1E3D4 _EndWriteTriggeredDoses_R3@8
- 1E3D4 __imp__EndWriteTriggeredDoses_R3@8
- 1E44E _EndWriteWearerDatabaseId_R3@8
- 1E44E __imp__EndWriteWearerDatabaseId_R3@8
- 1E4CA _EndWriteWearerId@8
- 1E4CA __imp__EndWriteWearerId@8
- 1E53A _EndWriteZoneControlMap@8
- 1E53A __imp__EndWriteZoneControlMap@8
- 1E5B0 _GetDiscoveredEpds@16
- 1E5B0 __imp__GetDiscoveredEpds@16
- 1E622 _GetDiscoveryTimeout@8
- 1E622 __imp__GetDiscoveryTimeout@8
- 1E696 _GetDiscoveryTimeslots@8
- 1E696 __imp__GetDiscoveryTimeslots@8
- 1E70C _GetDllLogLevel@8
- 1E70C __imp__GetDllLogLevel@8
- 1E77A _GetErrorCode@0
- 1E77A __imp__GetErrorCode@0
- 1E7E6 _GetMultipleDiscoveryMode@8
- 1E7E6 __imp__GetMultipleDiscoveryMode@8
- 1E85E _GetResponseTimeout@8
- 1E85E __imp__GetResponseTimeout@8
- 1E8D0 _GetRetryCount@8
- 1E8D0 __imp__GetRetryCount@8
- 1E93E _OpenReader@8
- 1E93E __imp__OpenReader@8
- 1E9A8 _SetConnectCallback@8
- 1E9A8 __imp__SetConnectCallback@8
- 1EA1A _SetDisconnectCallback@8
- 1EA1A __imp__SetDisconnectCallback@8
- 1EA90 _SetDiscoveryCacheTimeout@8
- 1EA90 __imp__SetDiscoveryCacheTimeout@8
- 1EB08 _SetDiscoveryTimeslots@8
- 1EB08 __imp__SetDiscoveryTimeslots@8
- 1EB7E _SetDllLogLevel@8
- 1EB7E __imp__SetDllLogLevel@8
- 1EBEC _SetMultipleDiscoveryMode@8
- 1EBEC __imp__SetMultipleDiscoveryMode@8
- 1EC64 _SetRemovedCallback@8
- 1EC64 __imp__SetRemovedCallback@8
- 1ECD6 _SetResponseTimeout@8
- 1ECD6 __imp__SetResponseTimeout@8
- 1ED48 _SetRetryCount@8
- 1ED48 __imp__SetRetryCount@8
- 1EDB6 _StartDiscovery@8
- 1EDB6 __imp__StartDiscovery@8
- 1EE24 _StopDiscovery@4
- 1EE24 __imp__StopDiscovery@4
-
-Archive member name at 8506: /
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 84CC size
-correct header end
-
- 475 offsets
-
- 1 10A0E
- 2 10C38
- 3 10D6E
- 4 10EC0
- 5 10F2E
- 6 10FA2
- 7 11010
- 8 11088
- 9 110FC
- A 11172
- B 111E8
- C 11260
- D 112D4
- E 1134A
- F 113BE
- 10 1143A
- 11 114AA
- 12 11524
- 13 1159C
- 14 1161E
- 15 1169E
- 16 1171A
- 17 11788
- 18 11806
- 19 11874
- 1A 118FA
- 1B 11976
- 1C 119F8
- 1D 11A78
- 1E 11AF2
- 1F 11B72
- 20 11BEE
- 21 11C6A
- 22 11CE2
- 23 11D64
- 24 11DE2
- 25 11E5E
- 26 11EDC
- 27 11F5C
- 28 11FD0
- 29 12046
- 2A 120BE
- 2B 1213A
- 2C 121BA
- 2D 12230
- 2E 122A8
- 2F 12322
- 30 12392
- 31 1240E
- 32 1248A
- 33 12504
- 34 12584
- 35 12608
- 36 12684
- 37 12704
- 38 12782
- 39 12808
- 3A 12884
- 3B 128FC
- 3C 1297A
- 3D 129F2
- 3E 12A72
- 3F 12AEE
- 40 12B72
- 41 12BEE
- 42 12C6A
- 43 12CDA
- 44 12D4A
- 45 12DC0
- 46 12E3A
- 47 12EB2
- 48 12F28
- 49 12F98
- 4A 13012
- 4B 1308A
- 4C 13102
- 4D 1317A
- 4E 131F8
- 4F 13270
- 50 132EC
- 51 13364
- 52 133D4
- 53 13446
- 54 134BE
- 55 13536
- 56 135B8
- 57 1362C
- 58 136A4
- 59 1371A
- 5A 137A0
- 5B 1381A
- 5C 13894
- 5D 1390C
- 5E 13984
- 5F 139F8
- 60 13A74
- 61 13AF4
- 62 13B72
- 63 13BFA
- 64 13C6E
- 65 13CEE
- 66 13D5A
- 67 13DDA
- 68 13E56
- 69 13EC6
- 6A 13F46
- 6B 13FC0
- 6C 14034
- 6D 140A8
- 6E 14120
- 6F 1419A
- 70 14212
- 71 1428C
- 72 14310
- 73 1438E
- 74 14410
- 75 1448C
- 76 144FC
- 77 14570
- 78 145EE
- 79 14668
- 7A 146DC
- 7B 1475C
- 7C 147DC
- 7D 1485A
- 7E 148D6
- 7F 14950
- 80 149D4
- 81 14A52
- 82 14AC6
- 83 14B42
- 84 14BB4
- 85 14C30
- 86 14CA2
- 87 14D20
- 88 14D98
- 89 14E10
- 8A 14E86
- 8B 14EFE
- 8C 14F7A
- 8D 14FF6
- 8E 1506A
- 8F 150E0
- 90 15168
- 91 151EC
- 92 1526C
- 93 152E6
- 94 15368
- 95 153E6
- 96 15464
- 97 154E8
- 98 15566
- 99 155E4
- 9A 15666
- 9B 156DC
- 9C 15754
- 9D 157CE
- 9E 15850
- 9F 158CA
- A0 15944
- A1 159C0
- A2 15A3E
- A3 15ABC
- A4 15B38
- A5 15BB8
- A6 15C38
- A7 15CB8
- A8 15D3E
- A9 15DBA
- AA 15E34
- AB 15EB4
- AC 15F2E
- AD 15FB4
- AE 16032
- AF 160B6
- B0 16134
- B1 161B0
- B2 16220
- B3 16292
- B4 1630E
- B5 16388
- B6 16402
- B7 1647E
- B8 164F8
- B9 16576
- BA 165F0
- BB 16664
- BC 166DC
- BD 16758
- BE 167DC
- BF 16854
- C0 168CC
- C1 1694C
- C2 169D4
- C3 16A50
- C4 16ACC
- C5 16B46
- C6 16BC4
- C7 16C42
- C8 16CC4
- C9 16D44
- CA 16DCE
- CB 16E50
- CC 16EC2
- CD 16F3E
- CE 16FBA
- CF 17030
- D0 170AC
- D1 17128
- D2 171A4
- D3 1721A
- D4 1729A
- D5 17316
- D6 1738A
- D7 1740A
- D8 1748C
- D9 1750C
- DA 1758A
- DB 17606
- DC 1768C
- DD 1770A
- DE 17780
- DF 177FC
- E0 1787A
- E1 178EE
- E2 17968
- E3 179DE
- E4 17A52
- E5 17ABE
- E6 17B24
- E7 17B8C
- E8 17C02
- E9 17C78
- EA 17CE2
- EB 17D56
- EC 17DC8
- ED 17E34
- EE 17EAA
- EF 17F1C
- F0 17F90
- F1 18002
- F2 18078
- F3 180EA
- F4 1815C
- F5 181CE
- F6 18248
- F7 182B6
- F8 1832C
- F9 183A2
- FA 18422
- FB 1849E
- FC 18518
- FD 18584
- FE 18600
- FF 1866C
- 100 186F0
- 101 1876A
- 102 187EC
- 103 1886A
- 104 188E2
- 105 18960
- 106 189DA
- 107 18A54
- 108 18ACA
- 109 18B4A
- 10A 18BC6
- 10B 18C42
- 10C 18CBE
- 10D 18D3C
- 10E 18DAE
- 10F 18E24
- 110 18E9C
- 111 18F16
- 112 18F94
- 113 19008
- 114 1907E
- 115 190F6
- 116 19164
- 117 191DE
- 118 19258
- 119 192D0
- 11A 1934E
- 11B 193D0
- 11C 1944A
- 11D 194C8
- 11E 19544
- 11F 195C8
- 120 19642
- 121 196B8
- 122 19736
- 123 197AC
- 124 1982A
- 125 198A4
- 126 19928
- 127 199A4
- 128 19A20
- 129 19A8E
- 12A 19AFC
- 12B 19B72
- 12C 19BEA
- 12D 19C60
- 12E 19CD4
- 12F 19D44
- 130 19DBC
- 131 19E32
- 132 19EA8
- 133 19F20
- 134 19F9E
- 135 1A016
- 136 1A090
- 137 1A106
- 138 1A174
- 139 1A1E4
- 13A 1A25A
- 13B 1A2D0
- 13C 1A352
- 13D 1A3C4
- 13E 1A43C
- 13F 1A4B0
- 140 1A536
- 141 1A5B0
- 142 1A628
- 143 1A69E
- 144 1A716
- 145 1A788
- 146 1A802
- 147 1A880
- 148 1A8FE
- 149 1A986
- 14A 1A9FA
- 14B 1AA78
- 14C 1AAE4
- 14D 1AB64
- 14E 1ABDE
- 14F 1AC4C
- 150 1ACCA
- 151 1AD44
- 152 1ADB6
- 153 1AE28
- 154 1AE9E
- 155 1AF16
- 156 1AF8C
- 157 1B004
- 158 1B086
- 159 1B102
- 15A 1B182
- 15B 1B1FC
- 15C 1B26A
- 15D 1B2DE
- 15E 1B35C
- 15F 1B3D6
- 160 1B448
- 161 1B4C6
- 162 1B544
- 163 1B5C2
- 164 1B63C
- 165 1B6B4
- 166 1B736
- 167 1B7B2
- 168 1B824
- 169 1B89E
- 16A 1B90E
- 16B 1B98A
- 16C 1B9FA
- 16D 1BA76
- 16E 1BAEC
- 16F 1BB62
- 170 1BBD6
- 171 1BC4C
- 172 1BCC6
- 173 1BD40
- 174 1BDB2
- 175 1BE26
- 176 1BEAA
- 177 1BF2C
- 178 1BFAA
- 179 1C022
- 17A 1C0A0
- 17B 1C11A
- 17C 1C194
- 17D 1C214
- 17E 1C290
- 17F 1C30C
- 180 1C38A
- 181 1C3FC
- 182 1C472
- 183 1C4EA
- 184 1C568
- 185 1C5E0
- 186 1C656
- 187 1C6CE
- 188 1C74A
- 189 1C7C4
- 18A 1C83C
- 18B 1C8BA
- 18C 1C938
- 18D 1C9B6
- 18E 1CA3A
- 18F 1CAB4
- 190 1CB2A
- 191 1CBA8
- 192 1CC1E
- 193 1CCA2
- 194 1CD1E
- 195 1CD9E
- 196 1CE1A
- 197 1CE92
- 198 1CF00
- 199 1CF6E
- 19A 1CFE6
- 19B 1D05C
- 19C 1D0D4
- 19D 1D14C
- 19E 1D1C2
- 19F 1D23C
- 1A0 1D2B4
- 1A1 1D324
- 1A2 1D39A
- 1A3 1D412
- 1A4 1D494
- 1A5 1D50A
- 1A6 1D57E
- 1A7 1D5FA
- 1A8 1D680
- 1A9 1D6FA
- 1AA 1D772
- 1AB 1D7E8
- 1AC 1D862
- 1AD 1D8DC
- 1AE 1D95A
- 1AF 1D9D8
- 1B0 1DA60
- 1B1 1DADE
- 1B2 1DB4C
- 1B3 1DBC6
- 1B4 1DC40
- 1B5 1DCB2
- 1B6 1DD2A
- 1B7 1DDA2
- 1B8 1DE1A
- 1B9 1DE8E
- 1BA 1DF0C
- 1BB 1DF86
- 1BC 1DFF8
- 1BD 1E076
- 1BE 1E0F4
- 1BF 1E172
- 1C0 1E1EC
- 1C1 1E264
- 1C2 1E2E6
- 1C3 1E362
- 1C4 1E3D4
- 1C5 1E44E
- 1C6 1E4CA
- 1C7 1E53A
- 1C8 1E5B0
- 1C9 1E622
- 1CA 1E696
- 1CB 1E70C
- 1CC 1E77A
- 1CD 1E7E6
- 1CE 1E85E
- 1CF 1E8D0
- 1D0 1E93E
- 1D1 1E9A8
- 1D2 1EA1A
- 1D3 1EA90
- 1D4 1EB08
- 1D5 1EB7E
- 1D6 1EBEC
- 1D7 1EC64
- 1D8 1ECD6
- 1D9 1ED48
- 1DA 1EDB6
- 1DB 1EE24
-
- 947 public symbols
-
- 4 _AwaitRemoval@20
- 5 _BeginClearAllStatus@8
- 6 _BeginClearDose@8
- 7 _BeginClearDoseProfile_R3@8
- 8 _BeginClearEEPROM_R3@8
- 9 _BeginClearFaultStatus@8
- A _BeginClearGraphic_R3@12
- B _BeginClearLatchedAlarms@8
- C _BeginClearPeakRates@8
- D _BeginClearScratchPad@12
- E _BeginClearTotalDose@8
- F _BeginClearWearerOrTaskId_R3@16
- 10 _BeginDeissueEPD@8
- 11 _BeginEnableCovertMode_R3@12
- 12 _BeginEnableDeepSleep_R3@12
- 13 _BeginEnableManufacturerLockout_R3@12
- 14 _BeginEnableProtectedSession_R3@12
- 15 _BeginEnableResponderMode_R3@12
- 16 _BeginEpdOnOff@12
- 17 _BeginInitiateFirmwareUpdate_R3@8
- 18 _BeginIssueEPD@8
- 19 _BeginReadAccessPermissionsForLevel_R3@12
- 1A _BeginReadAlarmConfiguration@16
- 1B _BeginReadAlarmConfigurationLock_R3@8
- 1C _BeginReadAlarmConfiguration_R3@16
- 1D _BeginReadAlarmThresholds@20
- 1E _BeginReadBacklightBrightness_R3@8
- 1F _BeginReadBacklightEnable_R3@8
- 20 _BeginReadBacklightPeriod_R3@8
- 21 _BeginReadBaselineCounts@8
- 22 _BeginReadBatteryCriticalTiming_R3@8
- 23 _BeginReadBatteryLowThreshold@12
- 24 _BeginReadBatteryTestInterval@8
- 25 _BeginReadBatteryTypeFitted_R3@8
- 26 _BeginReadBatteryTypeOverride_R3@8
- 27 _BeginReadCalDueDate@8
- 28 _BeginReadCalDueDate_R3@8
- 29 _BeginReadCalReference_R3@8
- 2A _BeginReadCalibrationData_R2@8
- 2B _BeginReadCalibrationFacility_R3@8
- 2C _BeginReadCapabilities@8
- 2D _BeginReadChirpEnable_R3@8
- 2E _BeginReadChirpSensitivity@8
- 2F _BeginReadCounts@16
- 30 _BeginReadCurrentAccessLevel@8
- 31 _BeginReadDeadTimeFactors_R3@16
- 32 _BeginReadDebugRegister_R3@12
- 33 _BeginReadDetectorTestLimits_R3@16
- 34 _BeginReadDetectorThresholdLimits_R3@16
- 35 _BeginReadDetectorThresholds@16
- 36 _BeginReadDetectorThresholds_R3@16
- 37 _BeginReadDisplayCapability_R3@12
- 38 _BeginReadDisplayEnablePermissions_R3@12
- 39 _BeginReadDisplayEnables_R3@16
- 3A _BeginReadDisplayOptions@8
- 3B _BeginReadDisplayOptionsLock_R3@8
- 3C _BeginReadDisplayTimeout@8
- 3D _BeginReadDoseProfileByIndex_R3@16
- 3E _BeginReadDoseProfileByTime@16
- 3F _BeginReadDoseProfileConfiguration_R3@8
- 40 _BeginReadDoseProfileInterval@8
- 41 _BeginReadDoseSaveInterval_R3@8
- 42 _BeginReadDoses@16
- 43 _BeginReadEEProm@16
- 44 _BeginReadEpdIdentities@8
- 45 _BeginReadEpdPartNumber_R3@8
- 46 _BeginReadEpdRevision_R3@8
- 47 _BeginReadEpdSerialNum@8
- 48 _BeginReadEpdType@8
- 49 _BeginReadEventLogLevel_R3@8
- 4A _BeginReadEventsByIndex@16
- 4B _BeginReadFactoryCalDate@8
- 4C _BeginReadFemSerialNum_R3@8
- 4D _BeginReadFirmwarePartNumber_R3@8
- 4E _BeginReadFirmwareVersion@8
- 4F _BeginReadFlashTestCounts_R3@16
- 50 _BeginReadFpgaVersion_R3@8
- 51 _BeginReadGains@16
- 52 _BeginReadGains_R3@16
- 53 _BeginReadGraphicData_R3@12
- 54 _BeginReadGraphicSize_R3@12
- 55 _BeginReadLastCalibrationProcess_R3@8
- 56 _BeginReadMarkNumber@8
- 57 _BeginReadMeasurandIds_R3@8
- 58 _BeginReadModelName_R3@8
- 59 _BeginReadOffModeBatteryTestInterval_R3@8
- 5A _BeginReadOffModeDisplay_R3@8
- 5B _BeginReadPcbPartNumber_R3@8
- 5C _BeginReadPcbRevision_R3@8
- 5D _BeginReadPcbSerialNum_R3@8
- 5E _BeginReadPeakRates@16
- 5F _BeginReadPulseModeEnable_R3@8
- 60 _BeginReadPulseModeIndustrial_R3@8
- 61 _BeginReadPulseModeThreshold_R3@8
- 62 _BeginReadPulsedModeOverrangeThreshold_R3@8
- 63 _BeginReadQualityData@8
- 64 _BeginReadQuickAccessDisplays_R3@16
- 65 _BeginReadRTC@8
- 66 _BeginReadRadioFirmwareVersion_R3@8
- 67 _BeginReadRateOffPercentage@16
- 68 _BeginReadRates@16
- 69 _BeginReadResponderTriggerUtc_R3@8
- 6A _BeginReadReturnForReadTime@8
- 6B _BeginReadRunTime_R3@8
- 6C _BeginReadScratchPad@16
- 6D _BeginReadScratchpadSize@8
- 6E _BeginReadSelfTestInterval@8
- 6F _BeginReadSensitivities@16
- 70 _BeginReadSensitivities_R3@16
- 71 _BeginReadSnapshotAlarmThresholds_R3@12
- 72 _BeginReadSnapshotCounters_R3@12
- 73 _BeginReadSnapshotMeasurements_R3@12
- 74 _BeginReadSnapshotSummary_R3@12
- 75 _BeginReadStatus@8
- 76 _BeginReadStayTime_R3@8
- 77 _BeginReadSwitchOnFromButton_R3@8
- 78 _BeginReadTaskDatabaseId_R3@8
- 79 _BeginReadTaskId_R3@12
- 7A _BeginReadTelemetryAdvConfig_R3@12
- 7B _BeginReadTelemetryAdvContent_R3@12
- 7C _BeginReadTelemetryCxnConfig_R3@8
- 7D _BeginReadTelemetryEnable_R3@12
- 7E _BeginReadTelemetryMode_R2@8
- 7F _BeginReadTelemetryReportInterval_R3@8
- 80 _BeginReadTelemetryTxPower_R3@12
- 81 _BeginReadTotalDoses@16
- 82 _BeginReadTriggeredDoses_R3@16
- 83 _BeginReadVoltages@8
- 84 _BeginReadWearerDatabaseId_R3@8
- 85 _BeginReadWearerId@12
- 86 _BeginReadZoneAccessPermitted@12
- 87 _BeginReadZoneControlMap@8
- 88 _BeginSetBaselineCounters@8
- 89 _BeginStartDetectorTest@8
- 8A _BeginTriggerBacklight_R3@8
- 8B _BeginTriggerResponderMode_R3@8
- 8C _BeginValidateEpdOwnerKey_R3@12
- 8D _BeginWriteAccessKey@20
- 8E _BeginWriteAccessLevel@20
- 8F _BeginWriteAccessPermissionsForLevel_R3@20
- 90 _BeginWriteAlarmConfigurationLock_R3@16
- 91 _BeginWriteAlarmConfiguration_R3@16
- 92 _BeginWriteAlarmThresholds@20
- 93 _BeginWriteBacklightBrightness_R3@12
- 94 _BeginWriteBacklightEnable_R3@12
- 95 _BeginWriteBacklightPeriod_R3@12
- 96 _BeginWriteBatteryCriticalTiming_R3@16
- 97 _BeginWriteBatteryLowThreshold@16
- 98 _BeginWriteBatteryTestInterval@12
- 99 _BeginWriteBatteryTypeOverride_R3@12
- 9A _BeginWriteCalDueDate@12
- 9B _BeginWriteCalDueDate_R3@12
- 9C _BeginWriteCalReference_R3@12
- 9D _BeginWriteCalibrationFacility_R3@16
- 9E _BeginWriteCapabilities_R3@12
- 9F _BeginWriteChirpEnable_R3@12
- A0 _BeginWriteChirpSensitivity@12
- A1 _BeginWriteClearDoseOnSwitchOn@12
- A2 _BeginWriteDeadTimeFactors_R3@16
- A3 _BeginWriteDebugRegister_R3@16
- A4 _BeginWriteDetectorTestLimits_R3@16
- A5 _BeginWriteDetectorThresholds_R2@24
- A6 _BeginWriteDetectorThresholds_R3@16
- A7 _BeginWriteDisplayEnablePermissions_R3@20
- A8 _BeginWriteDisplayEnables_R3@16
- A9 _BeginWriteDisplayOptions@16
- AA _BeginWriteDisplayOptionsLock_R3@16
- AB _BeginWriteDisplayTimeout@12
- AC _BeginWriteDoseProfileDoseIncrement_R3@12
- AD _BeginWriteDoseProfileInterval@12
- AE _BeginWriteDoseProfileMeasurands_R3@16
- AF _BeginWriteDoseSaveInterval_R3@12
- B0 _BeginWriteDoseWritableFlag@12
- B1 _BeginWriteDoses@16
- B2 _BeginWriteEEProm@20
- B3 _BeginWriteEpdPartNumber_R3@12
- B4 _BeginWriteEpdRevision_R3@12
- B5 _BeginWriteEpdSerialNumber@12
- B6 _BeginWriteEventLogLevel_R3@12
- B7 _BeginWriteFactoryCalDate@12
- B8 _BeginWriteFemSerialNumber_R3@12
- B9 _BeginWriteGainableFlag_R3@12
- BA _BeginWriteGains_R3@16
- BB _BeginWriteGoldenFlag_R3@12
- BC _BeginWriteGraphicBitmap_R3@352
- BD _BeginWriteLastCalibrationProcess_R3@20
- BE _BeginWriteMarkNumber_R3@12
- BF _BeginWriteModelName_R3@40
- C0 _BeginWriteNotCalibratedFlag_R3@12
- C1 _BeginWriteOffModeBatteryTestInterval_R3@12
- C2 _BeginWriteOffModeDisplay_R3@16
- C3 _BeginWritePcbPartNumber_R3@12
- C4 _BeginWritePcbRevision_R3@12
- C5 _BeginWritePcbSerialNumber_R3@12
- C6 _BeginWritePulseModeEnable_R3@12
- C7 _BeginWritePulseModeIndustrial_R3@12
- C8 _BeginWritePulseModeThreshold_R3@12
- C9 _BeginWritePulsedModeOverrangeThreshold_R3@12
- CA _BeginWriteQuickAccessDisplays_R3@16
- CB _BeginWriteRTC_R3@12
- CC _BeginWriteRateOffPercentage@16
- CD _BeginWriteReturnForReadTime@12
- CE _BeginWriteScratchPad@20
- CF _BeginWriteSelfTestInterval@12
- D0 _BeginWriteSensitivities_R2@32
- D1 _BeginWriteSensitivities_R3@16
- D2 _BeginWriteStayTime_R3@12
- D3 _BeginWriteSwitchOnFromButton_R3@12
- D4 _BeginWriteTaskDatabaseId_R3@24
- D5 _BeginWriteTaskId_R3@76
- D6 _BeginWriteTelemetryAdvConfig_R3@12
- D7 _BeginWriteTelemetryAdvContent_R3@16
- D8 _BeginWriteTelemetryCxnConfig_R3@12
- D9 _BeginWriteTelemetryEnable_R3@16
- DA _BeginWriteTelemetryMode_R2@12
- DB _BeginWriteTelemetryReportInterval_R3@12
- DC _BeginWriteTelemetryTxPower_R3@16
- DD _BeginWriteTotalDoses@16
- DE _BeginWriteTriggeredDoses_R3@16
- DF _BeginWriteWearerDatabaseId_R3@24
- E0 _BeginWriteWearerId@76
- E1 _BeginWriteZoneControlMap@16
- E2 _CleanUpReadDoseProfile@4
- E3 _CleanUpReadEventLog@4
- E4 _CloseReader@4
- E5 _Commit@4
- E6 _Connect@20
- E7 _CreateReaderInterface@0
- E8 _DestroyReaderInterface@4
- E9 _Disconnect@4
- EA _DisconnectAndNotify@12
- EB _EndClearAllStatus@8
- EC _EndClearDose@8
- ED _EndClearDoseProfile_R3@8
- EE _EndClearEEPROM_R3@8
- EF _EndClearFaultStatus@8
- F0 _EndClearGraphic_R3@8
- F1 _EndClearLatchedAlarms@8
- F2 _EndClearPeakRates@8
- F3 _EndClearScratchpad@8
- F4 _EndClearTotalDose@8
- F5 _EndClearWearerOrTaskId_R3@8
- F6 _EndDeissueEPD@8
- F7 _EndEnableCovertMode_R3@8
- F8 _EndEnableDeepSleep_R3@8
- F9 _EndEnableManufacturerLockout_R3@8
- FA _EndEnableProtectedSession_R3@8
- FB _EndEnableResponderMode_R3@8
- FC _EndEpdOnOff@8
- FD _EndInitiateFirmwareUpdate_R3@8
- FE _EndIssueEPD@8
- FF _EndReadAccessPermissionsForLevel_R3@20
- 100 _EndReadAlarmConfiguration@20
- 101 _EndReadAlarmConfigurationLock_R3@20
- 102 _EndReadAlarmConfiguration_R3@20
- 103 _EndReadAlarmThresholds@12
- 104 _EndReadBacklightBrightness_R3@12
- 105 _EndReadBacklightEnable_R3@12
- 106 _EndReadBacklightPeriod_R3@12
- 107 _EndReadBaselineCounts@24
- 108 _EndReadBatteryCriticalTiming_R3@16
- 109 _EndReadBatteryLowThreshold@16
- 10A _EndReadBatteryTestInterval@12
- 10B _EndReadBatteryTypeFitted_R3@12
- 10C _EndReadBatteryTypeOverride_R3@12
- 10D _EndReadCalDueDate@12
- 10E _EndReadCalDueDate_R3@12
- 10F _EndReadCalReference_R3@12
- 110 _EndReadCalibrationData_R2@48
- 111 _EndReadCalibrationFacility_R3@12
- 112 _EndReadCapabilities@12
- 113 _EndReadChirpEnable_R3@12
- 114 _EndReadChirpSensitivity@12
- 115 _EndReadCounts@28
- 116 _EndReadCurrentAccessLevel@12
- 117 _EndReadDeadTimeFactors_R3@20
- 118 _EndReadDebugRegister_R3@16
- 119 _EndReadDetectorTestLimits_R3@20
- 11A _EndReadDetectorThresholdLimits_R3@20
- 11B _EndReadDetectorThresholds@20
- 11C _EndReadDetectorThresholds_R3@20
- 11D _EndReadDisplayCapability_R3@24
- 11E _EndReadDisplayEnablePermissions_R3@24
- 11F _EndReadDisplayEnables_R3@20
- 120 _EndReadDisplayOptions@12
- 121 _EndReadDisplayOptionsLock_R3@12
- 122 _EndReadDisplayTimeout@12
- 123 _EndReadDoseProfileByIndex_R3@24
- 124 _EndReadDoseProfileByTime@16
- 125 _EndReadDoseProfileConfiguration_R3@12
- 126 _EndReadDoseProfileInterval@12
- 127 _EndReadDoseSaveInterval_R3@12
- 128 _EndReadDoses@24
- 129 _EndReadEEProm@24
- 12A _EndReadEpdIdentities@36
- 12B _EndReadEpdPartNumber_R3@12
- 12C _EndReadEpdRevision_R3@12
- 12D _EndReadEpdSerialNum@12
- 12E _EndReadEpdType@12
- 12F _EndReadEventLogLevel_R3@12
- 130 _EndReadEventsByIndex@16
- 131 _EndReadFactoryCalDate@12
- 132 _EndReadFemSerialNum_R3@12
- 133 _EndReadFirmwarePartNumber_R3@12
- 134 _EndReadFirmwareVersion@12
- 135 _EndReadFlashTestCounts_R3@24
- 136 _EndReadFpgaVersion_R3@16
- 137 _EndReadGains@20
- 138 _EndReadGains_R3@20
- 139 _EndReadGraphicData_R3@12
- 13A _EndReadGraphicSize_R3@12
- 13B _EndReadLastCalibrationProcess_R3@12
- 13C _EndReadMarkNumber@12
- 13D _EndReadMeasurandIds_R3@20
- 13E _EndReadModelName_R3@12
- 13F _EndReadOffModeBatteryTestInterval_R3@12
- 140 _EndReadOffModeDisplay_R3@16
- 141 _EndReadPcbPartNumber_R3@12
- 142 _EndReadPcbRevision_R3@12
- 143 _EndReadPcbSerialNum_R3@12
- 144 _EndReadPeakRates@20
- 145 _EndReadPulseModeEnable_R3@12
- 146 _EndReadPulseModeIndustrial_R3@12
- 147 _EndReadPulseModeThreshold_R3@12
- 148 _EndReadPulsedModeOverrangeThreshold_R3@12
- 149 _EndReadQualityData@12
- 14A _EndReadQuickAccessDisplays_R3@20
- 14B _EndReadRTC@12
- 14C _EndReadRadioFirmwareVersion_R3@12
- 14D _EndReadRateOffPercentage@20
- 14E _EndReadRates@24
- 14F _EndReadResponderTriggerUtc_R3@12
- 150 _EndReadReturnForReadTime@12
- 151 _EndReadRunTime_R3@12
- 152 _EndReadScratchpad@24
- 153 _EndReadScratchpadSize@12
- 154 _EndReadSelfTestInterval@12
- 155 _EndReadSensitivities@20
- 156 _EndReadSensitivities_R3@20
- 157 _EndReadSnapshotAlarmThresholds_R3@12
- 158 _EndReadSnapshotCounters_R3@12
- 159 _EndReadSnapshotMeasurements_R3@12
- 15A _EndReadSnapshotSummary_R3@12
- 15B _EndReadStatus@12
- 15C _EndReadStayTime_R3@12
- 15D _EndReadSwitchOnFromButton_R3@12
- 15E _EndReadTaskDatabaseId_R3@12
- 15F _EndReadTaskId_R3@12
- 160 _EndReadTelemetryAdvConfig_R3@12
- 161 _EndReadTelemetryAdvContent_R3@16
- 162 _EndReadTelemetryCxnConfig_R3@12
- 163 _EndReadTelemetryEnable_R3@16
- 164 _EndReadTelemetryMode_R2@12
- 165 _EndReadTelemetryReportInterval_R3@12
- 166 _EndReadTelemetryTxPower_R3@16
- 167 _EndReadTotalDoses@24
- 168 _EndReadTriggeredDoses_R3@24
- 169 _EndReadVoltages@20
- 16A _EndReadWearerDatabaseId_R3@12
- 16B _EndReadWearerId@12
- 16C _EndReadZoneAccessPermitted@12
- 16D _EndReadZoneControlMap@12
- 16E _EndSetBaselineCounters@8
- 16F _EndStartDetectorTest@8
- 170 _EndTriggerBacklight_R3@8
- 171 _EndTriggerResponderMode_R3@8
- 172 _EndValidateEpdOwnerKey_R3@12
- 173 _EndWriteAccessKey@8
- 174 _EndWriteAccessLevel@8
- 175 _EndWriteAccessPermissionsForLevel_R3@8
- 176 _EndWriteAlarmConfigurationLock_R3@8
- 177 _EndWriteAlarmConfiguration_R3@8
- 178 _EndWriteAlarmThresholds@8
- 179 _EndWriteBacklightBrightness_R3@8
- 17A _EndWriteBacklightEnable_R3@8
- 17B _EndWriteBacklightPeriod_R3@8
- 17C _EndWriteBatteryCriticalTiming_R3@8
- 17D _EndWriteBatteryLowThreshold@8
- 17E _EndWriteBatteryTestInterval@8
- 17F _EndWriteBatteryTypeOverride_R3@8
- 180 _EndWriteCalDueDate@8
- 181 _EndWriteCalDueDate_R3@8
- 182 _EndWriteCalReference_R3@8
- 183 _EndWriteCalibrationFacility_R3@8
- 184 _EndWriteCapabilities_R3@8
- 185 _EndWriteChirpEnable_R3@8
- 186 _EndWriteChirpSensitivity@8
- 187 _EndWriteClearDoseOnSwitchOn@8
- 188 _EndWriteDeadTimeFactors_R3@8
- 189 _EndWriteDebugRegister_R3@8
- 18A _EndWriteDetectorTestLimits_R3@8
- 18B _EndWriteDetectorThresholds_R2@8
- 18C _EndWriteDetectorThresholds_R3@8
- 18D _EndWriteDisplayEnablePermissions_R3@8
- 18E _EndWriteDisplayEnables_R3@8
- 18F _EndWriteDisplayOptions@8
- 190 _EndWriteDisplayOptionsLock_R3@8
- 191 _EndWriteDisplayTimeout@8
- 192 _EndWriteDoseProfileDoseIncrement_R3@8
- 193 _EndWriteDoseProfileInterval@8
- 194 _EndWriteDoseProfileMeasurands_R3@8
- 195 _EndWriteDoseSaveInterval_R3@8
- 196 _EndWriteDoseWritableFlag@8
- 197 _EndWriteDoses@8
- 198 _EndWriteEEProm@8
- 199 _EndWriteEpdPartNumber_R3@8
- 19A _EndWriteEpdRevision_R3@8
- 19B _EndWriteEpdSerialNumber@8
- 19C _EndWriteEventLogLevel_R3@8
- 19D _EndWriteFactoryCalDate@8
- 19E _EndWriteFemSerialNumber_R3@8
- 19F _EndWriteGainableFlag_R3@8
- 1A0 _EndWriteGains_R3@8
- 1A1 _EndWriteGoldenFlag_R3@8
- 1A2 _EndWriteGraphicBitmap_R3@8
- 1A3 _EndWriteLastCalibrationProcess_R3@8
- 1A4 _EndWriteMarkNumber_R3@8
- 1A5 _EndWriteModelName_R3@8
- 1A6 _EndWriteNotCalibratedFlag_R3@8
- 1A7 _EndWriteOffModeBatteryTestInterval_R3@8
- 1A8 _EndWriteOffModeDisplay_R3@8
- 1A9 _EndWritePcbPartNumber_R3@8
- 1AA _EndWritePcbRevision_R3@8
- 1AB _EndWritePcbSerialNumber_R3@8
- 1AC _EndWritePulseModeEnable_R3@8
- 1AD _EndWritePulseModeIndustrial_R3@8
- 1AE _EndWritePulseModeThreshold_R3@8
- 1AF _EndWritePulsedModeOverrangeThreshold_R3@8
- 1B0 _EndWriteQuickAccessDisplays_R3@8
- 1B1 _EndWriteRTC_R3@8
- 1B2 _EndWriteRateOffPercentage@8
- 1B3 _EndWriteReturnForReadTime@8
- 1B4 _EndWriteScratchpad@8
- 1B5 _EndWriteSelfTestInterval@8
- 1B6 _EndWriteSensitivities_R2@8
- 1B7 _EndWriteSensitivities_R3@8
- 1B8 _EndWriteStayTime_R3@8
- 1B9 _EndWriteSwitchOnFromButton_R3@8
- 1BA _EndWriteTaskDatabaseId_R3@8
- 1BB _EndWriteTaskId_R3@8
- 1BC _EndWriteTelemetryAdvConfig_R3@8
- 1BD _EndWriteTelemetryAdvContent_R3@8
- 1BE _EndWriteTelemetryCxnConfig_R3@8
- 1BF _EndWriteTelemetryEnable_R3@8
- 1C0 _EndWriteTelemetryMode_R2@8
- 1C1 _EndWriteTelemetryReportInterval_R3@8
- 1C2 _EndWriteTelemetryTxPower_R3@8
- 1C3 _EndWriteTotalDoses@8
- 1C4 _EndWriteTriggeredDoses_R3@8
- 1C5 _EndWriteWearerDatabaseId_R3@8
- 1C6 _EndWriteWearerId@8
- 1C7 _EndWriteZoneControlMap@8
- 1C8 _GetDiscoveredEpds@16
- 1C9 _GetDiscoveryTimeout@8
- 1CA _GetDiscoveryTimeslots@8
- 1CB _GetDllLogLevel@8
- 1CC _GetErrorCode@0
- 1CD _GetMultipleDiscoveryMode@8
- 1CE _GetResponseTimeout@8
- 1CF _GetRetryCount@8
- 1D0 _OpenReader@8
- 1D1 _SetConnectCallback@8
- 1D2 _SetDisconnectCallback@8
- 1D3 _SetDiscoveryCacheTimeout@8
- 1D4 _SetDiscoveryTimeslots@8
- 1D5 _SetDllLogLevel@8
- 1D6 _SetMultipleDiscoveryMode@8
- 1D7 _SetRemovedCallback@8
- 1D8 _SetResponseTimeout@8
- 1D9 _SetRetryCount@8
- 1DA _StartDiscovery@8
- 1DB _StopDiscovery@4
- 1 __IMPORT_DESCRIPTOR_reader3
- 2 __NULL_IMPORT_DESCRIPTOR
- 4 __imp__AwaitRemoval@20
- 5 __imp__BeginClearAllStatus@8
- 6 __imp__BeginClearDose@8
- 7 __imp__BeginClearDoseProfile_R3@8
- 8 __imp__BeginClearEEPROM_R3@8
- 9 __imp__BeginClearFaultStatus@8
- A __imp__BeginClearGraphic_R3@12
- B __imp__BeginClearLatchedAlarms@8
- C __imp__BeginClearPeakRates@8
- D __imp__BeginClearScratchPad@12
- E __imp__BeginClearTotalDose@8
- F __imp__BeginClearWearerOrTaskId_R3@16
- 10 __imp__BeginDeissueEPD@8
- 11 __imp__BeginEnableCovertMode_R3@12
- 12 __imp__BeginEnableDeepSleep_R3@12
- 13 __imp__BeginEnableManufacturerLockout_R3@12
- 14 __imp__BeginEnableProtectedSession_R3@12
- 15 __imp__BeginEnableResponderMode_R3@12
- 16 __imp__BeginEpdOnOff@12
- 17 __imp__BeginInitiateFirmwareUpdate_R3@8
- 18 __imp__BeginIssueEPD@8
- 19 __imp__BeginReadAccessPermissionsForLevel_R3@12
- 1A __imp__BeginReadAlarmConfiguration@16
- 1B __imp__BeginReadAlarmConfigurationLock_R3@8
- 1C __imp__BeginReadAlarmConfiguration_R3@16
- 1D __imp__BeginReadAlarmThresholds@20
- 1E __imp__BeginReadBacklightBrightness_R3@8
- 1F __imp__BeginReadBacklightEnable_R3@8
- 20 __imp__BeginReadBacklightPeriod_R3@8
- 21 __imp__BeginReadBaselineCounts@8
- 22 __imp__BeginReadBatteryCriticalTiming_R3@8
- 23 __imp__BeginReadBatteryLowThreshold@12
- 24 __imp__BeginReadBatteryTestInterval@8
- 25 __imp__BeginReadBatteryTypeFitted_R3@8
- 26 __imp__BeginReadBatteryTypeOverride_R3@8
- 27 __imp__BeginReadCalDueDate@8
- 28 __imp__BeginReadCalDueDate_R3@8
- 29 __imp__BeginReadCalReference_R3@8
- 2A __imp__BeginReadCalibrationData_R2@8
- 2B __imp__BeginReadCalibrationFacility_R3@8
- 2C __imp__BeginReadCapabilities@8
- 2D __imp__BeginReadChirpEnable_R3@8
- 2E __imp__BeginReadChirpSensitivity@8
- 2F __imp__BeginReadCounts@16
- 30 __imp__BeginReadCurrentAccessLevel@8
- 31 __imp__BeginReadDeadTimeFactors_R3@16
- 32 __imp__BeginReadDebugRegister_R3@12
- 33 __imp__BeginReadDetectorTestLimits_R3@16
- 34 __imp__BeginReadDetectorThresholdLimits_R3@16
- 35 __imp__BeginReadDetectorThresholds@16
- 36 __imp__BeginReadDetectorThresholds_R3@16
- 37 __imp__BeginReadDisplayCapability_R3@12
- 38 __imp__BeginReadDisplayEnablePermissions_R3@12
- 39 __imp__BeginReadDisplayEnables_R3@16
- 3A __imp__BeginReadDisplayOptions@8
- 3B __imp__BeginReadDisplayOptionsLock_R3@8
- 3C __imp__BeginReadDisplayTimeout@8
- 3D __imp__BeginReadDoseProfileByIndex_R3@16
- 3E __imp__BeginReadDoseProfileByTime@16
- 3F __imp__BeginReadDoseProfileConfiguration_R3@8
- 40 __imp__BeginReadDoseProfileInterval@8
- 41 __imp__BeginReadDoseSaveInterval_R3@8
- 42 __imp__BeginReadDoses@16
- 43 __imp__BeginReadEEProm@16
- 44 __imp__BeginReadEpdIdentities@8
- 45 __imp__BeginReadEpdPartNumber_R3@8
- 46 __imp__BeginReadEpdRevision_R3@8
- 47 __imp__BeginReadEpdSerialNum@8
- 48 __imp__BeginReadEpdType@8
- 49 __imp__BeginReadEventLogLevel_R3@8
- 4A __imp__BeginReadEventsByIndex@16
- 4B __imp__BeginReadFactoryCalDate@8
- 4C __imp__BeginReadFemSerialNum_R3@8
- 4D __imp__BeginReadFirmwarePartNumber_R3@8
- 4E __imp__BeginReadFirmwareVersion@8
- 4F __imp__BeginReadFlashTestCounts_R3@16
- 50 __imp__BeginReadFpgaVersion_R3@8
- 51 __imp__BeginReadGains@16
- 52 __imp__BeginReadGains_R3@16
- 53 __imp__BeginReadGraphicData_R3@12
- 54 __imp__BeginReadGraphicSize_R3@12
- 55 __imp__BeginReadLastCalibrationProcess_R3@8
- 56 __imp__BeginReadMarkNumber@8
- 57 __imp__BeginReadMeasurandIds_R3@8
- 58 __imp__BeginReadModelName_R3@8
- 59 __imp__BeginReadOffModeBatteryTestInterval_R3@8
- 5A __imp__BeginReadOffModeDisplay_R3@8
- 5B __imp__BeginReadPcbPartNumber_R3@8
- 5C __imp__BeginReadPcbRevision_R3@8
- 5D __imp__BeginReadPcbSerialNum_R3@8
- 5E __imp__BeginReadPeakRates@16
- 5F __imp__BeginReadPulseModeEnable_R3@8
- 60 __imp__BeginReadPulseModeIndustrial_R3@8
- 61 __imp__BeginReadPulseModeThreshold_R3@8
- 62 __imp__BeginReadPulsedModeOverrangeThreshold_R3@8
- 63 __imp__BeginReadQualityData@8
- 64 __imp__BeginReadQuickAccessDisplays_R3@16
- 65 __imp__BeginReadRTC@8
- 66 __imp__BeginReadRadioFirmwareVersion_R3@8
- 67 __imp__BeginReadRateOffPercentage@16
- 68 __imp__BeginReadRates@16
- 69 __imp__BeginReadResponderTriggerUtc_R3@8
- 6A __imp__BeginReadReturnForReadTime@8
- 6B __imp__BeginReadRunTime_R3@8
- 6C __imp__BeginReadScratchPad@16
- 6D __imp__BeginReadScratchpadSize@8
- 6E __imp__BeginReadSelfTestInterval@8
- 6F __imp__BeginReadSensitivities@16
- 70 __imp__BeginReadSensitivities_R3@16
- 71 __imp__BeginReadSnapshotAlarmThresholds_R3@12
- 72 __imp__BeginReadSnapshotCounters_R3@12
- 73 __imp__BeginReadSnapshotMeasurements_R3@12
- 74 __imp__BeginReadSnapshotSummary_R3@12
- 75 __imp__BeginReadStatus@8
- 76 __imp__BeginReadStayTime_R3@8
- 77 __imp__BeginReadSwitchOnFromButton_R3@8
- 78 __imp__BeginReadTaskDatabaseId_R3@8
- 79 __imp__BeginReadTaskId_R3@12
- 7A __imp__BeginReadTelemetryAdvConfig_R3@12
- 7B __imp__BeginReadTelemetryAdvContent_R3@12
- 7C __imp__BeginReadTelemetryCxnConfig_R3@8
- 7D __imp__BeginReadTelemetryEnable_R3@12
- 7E __imp__BeginReadTelemetryMode_R2@8
- 7F __imp__BeginReadTelemetryReportInterval_R3@8
- 80 __imp__BeginReadTelemetryTxPower_R3@12
- 81 __imp__BeginReadTotalDoses@16
- 82 __imp__BeginReadTriggeredDoses_R3@16
- 83 __imp__BeginReadVoltages@8
- 84 __imp__BeginReadWearerDatabaseId_R3@8
- 85 __imp__BeginReadWearerId@12
- 86 __imp__BeginReadZoneAccessPermitted@12
- 87 __imp__BeginReadZoneControlMap@8
- 88 __imp__BeginSetBaselineCounters@8
- 89 __imp__BeginStartDetectorTest@8
- 8A __imp__BeginTriggerBacklight_R3@8
- 8B __imp__BeginTriggerResponderMode_R3@8
- 8C __imp__BeginValidateEpdOwnerKey_R3@12
- 8D __imp__BeginWriteAccessKey@20
- 8E __imp__BeginWriteAccessLevel@20
- 8F __imp__BeginWriteAccessPermissionsForLevel_R3@20
- 90 __imp__BeginWriteAlarmConfigurationLock_R3@16
- 91 __imp__BeginWriteAlarmConfiguration_R3@16
- 92 __imp__BeginWriteAlarmThresholds@20
- 93 __imp__BeginWriteBacklightBrightness_R3@12
- 94 __imp__BeginWriteBacklightEnable_R3@12
- 95 __imp__BeginWriteBacklightPeriod_R3@12
- 96 __imp__BeginWriteBatteryCriticalTiming_R3@16
- 97 __imp__BeginWriteBatteryLowThreshold@16
- 98 __imp__BeginWriteBatteryTestInterval@12
- 99 __imp__BeginWriteBatteryTypeOverride_R3@12
- 9A __imp__BeginWriteCalDueDate@12
- 9B __imp__BeginWriteCalDueDate_R3@12
- 9C __imp__BeginWriteCalReference_R3@12
- 9D __imp__BeginWriteCalibrationFacility_R3@16
- 9E __imp__BeginWriteCapabilities_R3@12
- 9F __imp__BeginWriteChirpEnable_R3@12
- A0 __imp__BeginWriteChirpSensitivity@12
- A1 __imp__BeginWriteClearDoseOnSwitchOn@12
- A2 __imp__BeginWriteDeadTimeFactors_R3@16
- A3 __imp__BeginWriteDebugRegister_R3@16
- A4 __imp__BeginWriteDetectorTestLimits_R3@16
- A5 __imp__BeginWriteDetectorThresholds_R2@24
- A6 __imp__BeginWriteDetectorThresholds_R3@16
- A7 __imp__BeginWriteDisplayEnablePermissions_R3@20
- A8 __imp__BeginWriteDisplayEnables_R3@16
- A9 __imp__BeginWriteDisplayOptions@16
- AA __imp__BeginWriteDisplayOptionsLock_R3@16
- AB __imp__BeginWriteDisplayTimeout@12
- AC __imp__BeginWriteDoseProfileDoseIncrement_R3@12
- AD __imp__BeginWriteDoseProfileInterval@12
- AE __imp__BeginWriteDoseProfileMeasurands_R3@16
- AF __imp__BeginWriteDoseSaveInterval_R3@12
- B0 __imp__BeginWriteDoseWritableFlag@12
- B1 __imp__BeginWriteDoses@16
- B2 __imp__BeginWriteEEProm@20
- B3 __imp__BeginWriteEpdPartNumber_R3@12
- B4 __imp__BeginWriteEpdRevision_R3@12
- B5 __imp__BeginWriteEpdSerialNumber@12
- B6 __imp__BeginWriteEventLogLevel_R3@12
- B7 __imp__BeginWriteFactoryCalDate@12
- B8 __imp__BeginWriteFemSerialNumber_R3@12
- B9 __imp__BeginWriteGainableFlag_R3@12
- BA __imp__BeginWriteGains_R3@16
- BB __imp__BeginWriteGoldenFlag_R3@12
- BC __imp__BeginWriteGraphicBitmap_R3@352
- BD __imp__BeginWriteLastCalibrationProcess_R3@20
- BE __imp__BeginWriteMarkNumber_R3@12
- BF __imp__BeginWriteModelName_R3@40
- C0 __imp__BeginWriteNotCalibratedFlag_R3@12
- C1 __imp__BeginWriteOffModeBatteryTestInterval_R3@12
- C2 __imp__BeginWriteOffModeDisplay_R3@16
- C3 __imp__BeginWritePcbPartNumber_R3@12
- C4 __imp__BeginWritePcbRevision_R3@12
- C5 __imp__BeginWritePcbSerialNumber_R3@12
- C6 __imp__BeginWritePulseModeEnable_R3@12
- C7 __imp__BeginWritePulseModeIndustrial_R3@12
- C8 __imp__BeginWritePulseModeThreshold_R3@12
- C9 __imp__BeginWritePulsedModeOverrangeThreshold_R3@12
- CA __imp__BeginWriteQuickAccessDisplays_R3@16
- CB __imp__BeginWriteRTC_R3@12
- CC __imp__BeginWriteRateOffPercentage@16
- CD __imp__BeginWriteReturnForReadTime@12
- CE __imp__BeginWriteScratchPad@20
- CF __imp__BeginWriteSelfTestInterval@12
- D0 __imp__BeginWriteSensitivities_R2@32
- D1 __imp__BeginWriteSensitivities_R3@16
- D2 __imp__BeginWriteStayTime_R3@12
- D3 __imp__BeginWriteSwitchOnFromButton_R3@12
- D4 __imp__BeginWriteTaskDatabaseId_R3@24
- D5 __imp__BeginWriteTaskId_R3@76
- D6 __imp__BeginWriteTelemetryAdvConfig_R3@12
- D7 __imp__BeginWriteTelemetryAdvContent_R3@16
- D8 __imp__BeginWriteTelemetryCxnConfig_R3@12
- D9 __imp__BeginWriteTelemetryEnable_R3@16
- DA __imp__BeginWriteTelemetryMode_R2@12
- DB __imp__BeginWriteTelemetryReportInterval_R3@12
- DC __imp__BeginWriteTelemetryTxPower_R3@16
- DD __imp__BeginWriteTotalDoses@16
- DE __imp__BeginWriteTriggeredDoses_R3@16
- DF __imp__BeginWriteWearerDatabaseId_R3@24
- E0 __imp__BeginWriteWearerId@76
- E1 __imp__BeginWriteZoneControlMap@16
- E2 __imp__CleanUpReadDoseProfile@4
- E3 __imp__CleanUpReadEventLog@4
- E4 __imp__CloseReader@4
- E5 __imp__Commit@4
- E6 __imp__Connect@20
- E7 __imp__CreateReaderInterface@0
- E8 __imp__DestroyReaderInterface@4
- E9 __imp__Disconnect@4
- EA __imp__DisconnectAndNotify@12
- EB __imp__EndClearAllStatus@8
- EC __imp__EndClearDose@8
- ED __imp__EndClearDoseProfile_R3@8
- EE __imp__EndClearEEPROM_R3@8
- EF __imp__EndClearFaultStatus@8
- F0 __imp__EndClearGraphic_R3@8
- F1 __imp__EndClearLatchedAlarms@8
- F2 __imp__EndClearPeakRates@8
- F3 __imp__EndClearScratchpad@8
- F4 __imp__EndClearTotalDose@8
- F5 __imp__EndClearWearerOrTaskId_R3@8
- F6 __imp__EndDeissueEPD@8
- F7 __imp__EndEnableCovertMode_R3@8
- F8 __imp__EndEnableDeepSleep_R3@8
- F9 __imp__EndEnableManufacturerLockout_R3@8
- FA __imp__EndEnableProtectedSession_R3@8
- FB __imp__EndEnableResponderMode_R3@8
- FC __imp__EndEpdOnOff@8
- FD __imp__EndInitiateFirmwareUpdate_R3@8
- FE __imp__EndIssueEPD@8
- FF __imp__EndReadAccessPermissionsForLevel_R3@20
- 100 __imp__EndReadAlarmConfiguration@20
- 101 __imp__EndReadAlarmConfigurationLock_R3@20
- 102 __imp__EndReadAlarmConfiguration_R3@20
- 103 __imp__EndReadAlarmThresholds@12
- 104 __imp__EndReadBacklightBrightness_R3@12
- 105 __imp__EndReadBacklightEnable_R3@12
- 106 __imp__EndReadBacklightPeriod_R3@12
- 107 __imp__EndReadBaselineCounts@24
- 108 __imp__EndReadBatteryCriticalTiming_R3@16
- 109 __imp__EndReadBatteryLowThreshold@16
- 10A __imp__EndReadBatteryTestInterval@12
- 10B __imp__EndReadBatteryTypeFitted_R3@12
- 10C __imp__EndReadBatteryTypeOverride_R3@12
- 10D __imp__EndReadCalDueDate@12
- 10E __imp__EndReadCalDueDate_R3@12
- 10F __imp__EndReadCalReference_R3@12
- 110 __imp__EndReadCalibrationData_R2@48
- 111 __imp__EndReadCalibrationFacility_R3@12
- 112 __imp__EndReadCapabilities@12
- 113 __imp__EndReadChirpEnable_R3@12
- 114 __imp__EndReadChirpSensitivity@12
- 115 __imp__EndReadCounts@28
- 116 __imp__EndReadCurrentAccessLevel@12
- 117 __imp__EndReadDeadTimeFactors_R3@20
- 118 __imp__EndReadDebugRegister_R3@16
- 119 __imp__EndReadDetectorTestLimits_R3@20
- 11A __imp__EndReadDetectorThresholdLimits_R3@20
- 11B __imp__EndReadDetectorThresholds@20
- 11C __imp__EndReadDetectorThresholds_R3@20
- 11D __imp__EndReadDisplayCapability_R3@24
- 11E __imp__EndReadDisplayEnablePermissions_R3@24
- 11F __imp__EndReadDisplayEnables_R3@20
- 120 __imp__EndReadDisplayOptions@12
- 121 __imp__EndReadDisplayOptionsLock_R3@12
- 122 __imp__EndReadDisplayTimeout@12
- 123 __imp__EndReadDoseProfileByIndex_R3@24
- 124 __imp__EndReadDoseProfileByTime@16
- 125 __imp__EndReadDoseProfileConfiguration_R3@12
- 126 __imp__EndReadDoseProfileInterval@12
- 127 __imp__EndReadDoseSaveInterval_R3@12
- 128 __imp__EndReadDoses@24
- 129 __imp__EndReadEEProm@24
- 12A __imp__EndReadEpdIdentities@36
- 12B __imp__EndReadEpdPartNumber_R3@12
- 12C __imp__EndReadEpdRevision_R3@12
- 12D __imp__EndReadEpdSerialNum@12
- 12E __imp__EndReadEpdType@12
- 12F __imp__EndReadEventLogLevel_R3@12
- 130 __imp__EndReadEventsByIndex@16
- 131 __imp__EndReadFactoryCalDate@12
- 132 __imp__EndReadFemSerialNum_R3@12
- 133 __imp__EndReadFirmwarePartNumber_R3@12
- 134 __imp__EndReadFirmwareVersion@12
- 135 __imp__EndReadFlashTestCounts_R3@24
- 136 __imp__EndReadFpgaVersion_R3@16
- 137 __imp__EndReadGains@20
- 138 __imp__EndReadGains_R3@20
- 139 __imp__EndReadGraphicData_R3@12
- 13A __imp__EndReadGraphicSize_R3@12
- 13B __imp__EndReadLastCalibrationProcess_R3@12
- 13C __imp__EndReadMarkNumber@12
- 13D __imp__EndReadMeasurandIds_R3@20
- 13E __imp__EndReadModelName_R3@12
- 13F __imp__EndReadOffModeBatteryTestInterval_R3@12
- 140 __imp__EndReadOffModeDisplay_R3@16
- 141 __imp__EndReadPcbPartNumber_R3@12
- 142 __imp__EndReadPcbRevision_R3@12
- 143 __imp__EndReadPcbSerialNum_R3@12
- 144 __imp__EndReadPeakRates@20
- 145 __imp__EndReadPulseModeEnable_R3@12
- 146 __imp__EndReadPulseModeIndustrial_R3@12
- 147 __imp__EndReadPulseModeThreshold_R3@12
- 148 __imp__EndReadPulsedModeOverrangeThreshold_R3@12
- 149 __imp__EndReadQualityData@12
- 14A __imp__EndReadQuickAccessDisplays_R3@20
- 14B __imp__EndReadRTC@12
- 14C __imp__EndReadRadioFirmwareVersion_R3@12
- 14D __imp__EndReadRateOffPercentage@20
- 14E __imp__EndReadRates@24
- 14F __imp__EndReadResponderTriggerUtc_R3@12
- 150 __imp__EndReadReturnForReadTime@12
- 151 __imp__EndReadRunTime_R3@12
- 152 __imp__EndReadScratchpad@24
- 153 __imp__EndReadScratchpadSize@12
- 154 __imp__EndReadSelfTestInterval@12
- 155 __imp__EndReadSensitivities@20
- 156 __imp__EndReadSensitivities_R3@20
- 157 __imp__EndReadSnapshotAlarmThresholds_R3@12
- 158 __imp__EndReadSnapshotCounters_R3@12
- 159 __imp__EndReadSnapshotMeasurements_R3@12
- 15A __imp__EndReadSnapshotSummary_R3@12
- 15B __imp__EndReadStatus@12
- 15C __imp__EndReadStayTime_R3@12
- 15D __imp__EndReadSwitchOnFromButton_R3@12
- 15E __imp__EndReadTaskDatabaseId_R3@12
- 15F __imp__EndReadTaskId_R3@12
- 160 __imp__EndReadTelemetryAdvConfig_R3@12
- 161 __imp__EndReadTelemetryAdvContent_R3@16
- 162 __imp__EndReadTelemetryCxnConfig_R3@12
- 163 __imp__EndReadTelemetryEnable_R3@16
- 164 __imp__EndReadTelemetryMode_R2@12
- 165 __imp__EndReadTelemetryReportInterval_R3@12
- 166 __imp__EndReadTelemetryTxPower_R3@16
- 167 __imp__EndReadTotalDoses@24
- 168 __imp__EndReadTriggeredDoses_R3@24
- 169 __imp__EndReadVoltages@20
- 16A __imp__EndReadWearerDatabaseId_R3@12
- 16B __imp__EndReadWearerId@12
- 16C __imp__EndReadZoneAccessPermitted@12
- 16D __imp__EndReadZoneControlMap@12
- 16E __imp__EndSetBaselineCounters@8
- 16F __imp__EndStartDetectorTest@8
- 170 __imp__EndTriggerBacklight_R3@8
- 171 __imp__EndTriggerResponderMode_R3@8
- 172 __imp__EndValidateEpdOwnerKey_R3@12
- 173 __imp__EndWriteAccessKey@8
- 174 __imp__EndWriteAccessLevel@8
- 175 __imp__EndWriteAccessPermissionsForLevel_R3@8
- 176 __imp__EndWriteAlarmConfigurationLock_R3@8
- 177 __imp__EndWriteAlarmConfiguration_R3@8
- 178 __imp__EndWriteAlarmThresholds@8
- 179 __imp__EndWriteBacklightBrightness_R3@8
- 17A __imp__EndWriteBacklightEnable_R3@8
- 17B __imp__EndWriteBacklightPeriod_R3@8
- 17C __imp__EndWriteBatteryCriticalTiming_R3@8
- 17D __imp__EndWriteBatteryLowThreshold@8
- 17E __imp__EndWriteBatteryTestInterval@8
- 17F __imp__EndWriteBatteryTypeOverride_R3@8
- 180 __imp__EndWriteCalDueDate@8
- 181 __imp__EndWriteCalDueDate_R3@8
- 182 __imp__EndWriteCalReference_R3@8
- 183 __imp__EndWriteCalibrationFacility_R3@8
- 184 __imp__EndWriteCapabilities_R3@8
- 185 __imp__EndWriteChirpEnable_R3@8
- 186 __imp__EndWriteChirpSensitivity@8
- 187 __imp__EndWriteClearDoseOnSwitchOn@8
- 188 __imp__EndWriteDeadTimeFactors_R3@8
- 189 __imp__EndWriteDebugRegister_R3@8
- 18A __imp__EndWriteDetectorTestLimits_R3@8
- 18B __imp__EndWriteDetectorThresholds_R2@8
- 18C __imp__EndWriteDetectorThresholds_R3@8
- 18D __imp__EndWriteDisplayEnablePermissions_R3@8
- 18E __imp__EndWriteDisplayEnables_R3@8
- 18F __imp__EndWriteDisplayOptions@8
- 190 __imp__EndWriteDisplayOptionsLock_R3@8
- 191 __imp__EndWriteDisplayTimeout@8
- 192 __imp__EndWriteDoseProfileDoseIncrement_R3@8
- 193 __imp__EndWriteDoseProfileInterval@8
- 194 __imp__EndWriteDoseProfileMeasurands_R3@8
- 195 __imp__EndWriteDoseSaveInterval_R3@8
- 196 __imp__EndWriteDoseWritableFlag@8
- 197 __imp__EndWriteDoses@8
- 198 __imp__EndWriteEEProm@8
- 199 __imp__EndWriteEpdPartNumber_R3@8
- 19A __imp__EndWriteEpdRevision_R3@8
- 19B __imp__EndWriteEpdSerialNumber@8
- 19C __imp__EndWriteEventLogLevel_R3@8
- 19D __imp__EndWriteFactoryCalDate@8
- 19E __imp__EndWriteFemSerialNumber_R3@8
- 19F __imp__EndWriteGainableFlag_R3@8
- 1A0 __imp__EndWriteGains_R3@8
- 1A1 __imp__EndWriteGoldenFlag_R3@8
- 1A2 __imp__EndWriteGraphicBitmap_R3@8
- 1A3 __imp__EndWriteLastCalibrationProcess_R3@8
- 1A4 __imp__EndWriteMarkNumber_R3@8
- 1A5 __imp__EndWriteModelName_R3@8
- 1A6 __imp__EndWriteNotCalibratedFlag_R3@8
- 1A7 __imp__EndWriteOffModeBatteryTestInterval_R3@8
- 1A8 __imp__EndWriteOffModeDisplay_R3@8
- 1A9 __imp__EndWritePcbPartNumber_R3@8
- 1AA __imp__EndWritePcbRevision_R3@8
- 1AB __imp__EndWritePcbSerialNumber_R3@8
- 1AC __imp__EndWritePulseModeEnable_R3@8
- 1AD __imp__EndWritePulseModeIndustrial_R3@8
- 1AE __imp__EndWritePulseModeThreshold_R3@8
- 1AF __imp__EndWritePulsedModeOverrangeThreshold_R3@8
- 1B0 __imp__EndWriteQuickAccessDisplays_R3@8
- 1B1 __imp__EndWriteRTC_R3@8
- 1B2 __imp__EndWriteRateOffPercentage@8
- 1B3 __imp__EndWriteReturnForReadTime@8
- 1B4 __imp__EndWriteScratchpad@8
- 1B5 __imp__EndWriteSelfTestInterval@8
- 1B6 __imp__EndWriteSensitivities_R2@8
- 1B7 __imp__EndWriteSensitivities_R3@8
- 1B8 __imp__EndWriteStayTime_R3@8
- 1B9 __imp__EndWriteSwitchOnFromButton_R3@8
- 1BA __imp__EndWriteTaskDatabaseId_R3@8
- 1BB __imp__EndWriteTaskId_R3@8
- 1BC __imp__EndWriteTelemetryAdvConfig_R3@8
- 1BD __imp__EndWriteTelemetryAdvContent_R3@8
- 1BE __imp__EndWriteTelemetryCxnConfig_R3@8
- 1BF __imp__EndWriteTelemetryEnable_R3@8
- 1C0 __imp__EndWriteTelemetryMode_R2@8
- 1C1 __imp__EndWriteTelemetryReportInterval_R3@8
- 1C2 __imp__EndWriteTelemetryTxPower_R3@8
- 1C3 __imp__EndWriteTotalDoses@8
- 1C4 __imp__EndWriteTriggeredDoses_R3@8
- 1C5 __imp__EndWriteWearerDatabaseId_R3@8
- 1C6 __imp__EndWriteWearerId@8
- 1C7 __imp__EndWriteZoneControlMap@8
- 1C8 __imp__GetDiscoveredEpds@16
- 1C9 __imp__GetDiscoveryTimeout@8
- 1CA __imp__GetDiscoveryTimeslots@8
- 1CB __imp__GetDllLogLevel@8
- 1CC __imp__GetErrorCode@0
- 1CD __imp__GetMultipleDiscoveryMode@8
- 1CE __imp__GetResponseTimeout@8
- 1CF __imp__GetRetryCount@8
- 1D0 __imp__OpenReader@8
- 1D1 __imp__SetConnectCallback@8
- 1D2 __imp__SetDisconnectCallback@8
- 1D3 __imp__SetDiscoveryCacheTimeout@8
- 1D4 __imp__SetDiscoveryTimeslots@8
- 1D5 __imp__SetDllLogLevel@8
- 1D6 __imp__SetMultipleDiscoveryMode@8
- 1D7 __imp__SetRemovedCallback@8
- 1D8 __imp__SetResponseTimeout@8
- 1D9 __imp__SetRetryCount@8
- 1DA __imp__StartDiscovery@8
- 1DB __imp__StopDiscovery@4
- 3 reader3_NULL_THUNK_DATA
-
-Archive member name at 10A0E: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 1ED size
-correct header end
-
-FILE HEADER VALUES
- 14C machine (x86)
- 3 number of sections
- 608BCB5D time date stamp Fri Apr 30 11:18:21 2021
- 10B file pointer to symbol table
- 8 number of symbols
- 0 size of optional header
- 100 characteristics
- 32 bit word machine
-
-SECTION HEADER #1
-.debug$S name
- 0 physical address
- 0 virtual address
- 41 size of raw data
- 8C file pointer to raw data (0000008C to 000000CC)
- 0 file pointer to relocation table
- 0 file pointer to line numbers
- 0 number of relocations
- 0 number of line numbers
-42100040 flags
- Initialized Data
- Discardable
- 1 byte align
- Read Only
-
-RAW DATA #1
- 00000000: 02 00 00 00 12 00 09 00 00 00 00 00 0B 72 65 61 .............rea
- 00000010: 64 65 72 33 2E 64 6C 6C 27 00 13 10 07 00 00 00 der3.dll'.......
- 00000020: 03 00 00 00 00 00 00 00 0E 00 1C 00 DA 74 12 4D ............Út.M
- 00000030: 69 63 72 6F 73 6F 66 74 20 28 52 29 20 4C 49 4E icrosoft (R) LIN
- 00000040: 4B K
-
-SECTION HEADER #2
-.idata$2 name
- 0 physical address
- 0 virtual address
- 14 size of raw data
- CD file pointer to raw data (000000CD to 000000E0)
- E1 file pointer to relocation table
- 0 file pointer to line numbers
- 3 number of relocations
- 0 number of line numbers
-C0300040 flags
- Initialized Data
- 4 byte align
- Read Write
-
-RAW DATA #2
- 00000000: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................
- 00000010: 00 00 00 00 ....
-
-RELOCATIONS #2
- Symbol Symbol
- Offset Type Applied To Index Name
- -------- ---------------- ----------------- -------- ------
- 0000000C DIR32NB 00000000 3 .idata$6
- 00000000 DIR32NB 00000000 4 .idata$4
- 00000010 DIR32NB 00000000 5 .idata$5
-
-SECTION HEADER #3
-.idata$6 name
- 0 physical address
- 0 virtual address
- C size of raw data
- FF file pointer to raw data (000000FF to 0000010A)
- E1 file pointer to relocation table
- 0 file pointer to line numbers
- 0 number of relocations
- 0 number of line numbers
-C0200040 flags
- Initialized Data
- 2 byte align
- Read Write
-
-RAW DATA #3
- 00000000: 72 65 61 64 65 72 33 2E 64 6C 6C 00 reader3.dll.
-
-COFF SYMBOL TABLE
-000 010174DA ABS notype Static | @comp.id
-001 00000000 SECT2 notype External | __IMPORT_DESCRIPTOR_reader3
-002 C0000040 SECT2 notype Section | .idata$2
-003 00000000 SECT3 notype Static | .idata$6
-004 C0000040 UNDEF notype Section | .idata$4
-005 C0000040 UNDEF notype Section | .idata$5
-006 00000000 UNDEF notype External | __NULL_IMPORT_DESCRIPTOR
-007 00000000 UNDEF notype External | reader3_NULL_THUNK_DATA
-
-String Table Size = 0x52 bytes
-
-Archive member name at 10C38: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- FA size
-correct header end
-
-FILE HEADER VALUES
- 14C machine (x86)
- 2 number of sections
- 608BCB5D time date stamp Fri Apr 30 11:18:21 2021
- B9 file pointer to symbol table
- 2 number of symbols
- 0 size of optional header
- 100 characteristics
- 32 bit word machine
-
-SECTION HEADER #1
-.debug$S name
- 0 physical address
- 0 virtual address
- 41 size of raw data
- 64 file pointer to raw data (00000064 to 000000A4)
- 0 file pointer to relocation table
- 0 file pointer to line numbers
- 0 number of relocations
- 0 number of line numbers
-42100040 flags
- Initialized Data
- Discardable
- 1 byte align
- Read Only
-
-RAW DATA #1
- 00000000: 02 00 00 00 12 00 09 00 00 00 00 00 0B 72 65 61 .............rea
- 00000010: 64 65 72 33 2E 64 6C 6C 27 00 13 10 07 00 00 00 der3.dll'.......
- 00000020: 03 00 00 00 00 00 00 00 0E 00 1C 00 DA 74 12 4D ............Út.M
- 00000030: 69 63 72 6F 73 6F 66 74 20 28 52 29 20 4C 49 4E icrosoft (R) LIN
- 00000040: 4B K
-
-SECTION HEADER #2
-.idata$3 name
- 0 physical address
- 0 virtual address
- 14 size of raw data
- A5 file pointer to raw data (000000A5 to 000000B8)
- 0 file pointer to relocation table
- 0 file pointer to line numbers
- 0 number of relocations
- 0 number of line numbers
-C0300040 flags
- Initialized Data
- 4 byte align
- Read Write
-
-RAW DATA #2
- 00000000: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................
- 00000010: 00 00 00 00 ....
-
-COFF SYMBOL TABLE
-000 010174DA ABS notype Static | @comp.id
-001 00000000 SECT2 notype External | __NULL_IMPORT_DESCRIPTOR
-
-String Table Size = 0x1D bytes
-
-Archive member name at 10D6E: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 116 size
-correct header end
-
-FILE HEADER VALUES
- 14C machine (x86)
- 3 number of sections
- 608BCB5D time date stamp Fri Apr 30 11:18:21 2021
- D5 file pointer to symbol table
- 2 number of symbols
- 0 size of optional header
- 100 characteristics
- 32 bit word machine
-
-SECTION HEADER #1
-.debug$S name
- 0 physical address
- 0 virtual address
- 41 size of raw data
- 8C file pointer to raw data (0000008C to 000000CC)
- 0 file pointer to relocation table
- 0 file pointer to line numbers
- 0 number of relocations
- 0 number of line numbers
-42100040 flags
- Initialized Data
- Discardable
- 1 byte align
- Read Only
-
-RAW DATA #1
- 00000000: 02 00 00 00 12 00 09 00 00 00 00 00 0B 72 65 61 .............rea
- 00000010: 64 65 72 33 2E 64 6C 6C 27 00 13 10 07 00 00 00 der3.dll'.......
- 00000020: 03 00 00 00 00 00 00 00 0E 00 1C 00 DA 74 12 4D ............Út.M
- 00000030: 69 63 72 6F 73 6F 66 74 20 28 52 29 20 4C 49 4E icrosoft (R) LIN
- 00000040: 4B K
-
-SECTION HEADER #2
-.idata$5 name
- 0 physical address
- 0 virtual address
- 4 size of raw data
- CD file pointer to raw data (000000CD to 000000D0)
- 0 file pointer to relocation table
- 0 file pointer to line numbers
- 0 number of relocations
- 0 number of line numbers
-C0300040 flags
- Initialized Data
- 4 byte align
- Read Write
-
-RAW DATA #2
- 00000000: 00 00 00 00 ....
-
-SECTION HEADER #3
-.idata$4 name
- 0 physical address
- 0 virtual address
- 4 size of raw data
- D1 file pointer to raw data (000000D1 to 000000D4)
- 0 file pointer to relocation table
- 0 file pointer to line numbers
- 0 number of relocations
- 0 number of line numbers
-C0300040 flags
- Initialized Data
- 4 byte align
- Read Write
-
-RAW DATA #3
- 00000000: 00 00 00 00 ....
-
-COFF SYMBOL TABLE
-000 010174DA ABS notype Static | @comp.id
-001 00000000 SECT2 notype External | reader3_NULL_THUNK_DATA
-
-String Table Size = 0x1D bytes
-
-Archive member name at 10EC0: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 31 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000001D
- DLL name : reader3.dll
- Symbol name : _AwaitRemoval@20
- Type : code
- Name type : ordinal
- Ordinal : 1
-
-Archive member name at 10F2E: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 37 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000023
- DLL name : reader3.dll
- Symbol name : _BeginClearAllStatus@8
- Type : code
- Name type : ordinal
- Ordinal : 2
-
-Archive member name at 10FA2: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 32 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000001E
- DLL name : reader3.dll
- Symbol name : _BeginClearDose@8
- Type : code
- Name type : ordinal
- Ordinal : 3
-
-Archive member name at 11010: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3C size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000028
- DLL name : reader3.dll
- Symbol name : _BeginClearDoseProfile_R3@8
- Type : code
- Name type : ordinal
- Ordinal : 4
-
-Archive member name at 11088: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 37 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000023
- DLL name : reader3.dll
- Symbol name : _BeginClearEEPROM_R3@8
- Type : code
- Name type : ordinal
- Ordinal : 5
-
-Archive member name at 110FC: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 39 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000025
- DLL name : reader3.dll
- Symbol name : _BeginClearFaultStatus@8
- Type : code
- Name type : ordinal
- Ordinal : 6
-
-Archive member name at 11172: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 39 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000025
- DLL name : reader3.dll
- Symbol name : _BeginClearGraphic_R3@12
- Type : code
- Name type : ordinal
- Ordinal : 7
-
-Archive member name at 111E8: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3B size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000027
- DLL name : reader3.dll
- Symbol name : _BeginClearLatchedAlarms@8
- Type : code
- Name type : ordinal
- Ordinal : 8
-
-Archive member name at 11260: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 37 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000023
- DLL name : reader3.dll
- Symbol name : _BeginClearPeakRates@8
- Type : code
- Name type : ordinal
- Ordinal : 9
-
-Archive member name at 112D4: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 39 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000025
- DLL name : reader3.dll
- Symbol name : _BeginClearScratchPad@12
- Type : code
- Name type : ordinal
- Ordinal : 10
-
-Archive member name at 1134A: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 37 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000023
- DLL name : reader3.dll
- Symbol name : _BeginClearTotalDose@8
- Type : code
- Name type : ordinal
- Ordinal : 11
-
-Archive member name at 113BE: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 40 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002C
- DLL name : reader3.dll
- Symbol name : _BeginClearWearerOrTaskId_R3@16
- Type : code
- Name type : ordinal
- Ordinal : 12
-
-Archive member name at 1143A: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 33 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000001F
- DLL name : reader3.dll
- Symbol name : _BeginDeissueEPD@8
- Type : code
- Name type : ordinal
- Ordinal : 13
-
-Archive member name at 114AA: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3D size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000029
- DLL name : reader3.dll
- Symbol name : _BeginEnableCovertMode_R3@12
- Type : code
- Name type : ordinal
- Ordinal : 14
-
-Archive member name at 11524: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3C size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000028
- DLL name : reader3.dll
- Symbol name : _BeginEnableDeepSleep_R3@12
- Type : code
- Name type : ordinal
- Ordinal : 15
-
-Archive member name at 1159C: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 46 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000032
- DLL name : reader3.dll
- Symbol name : _BeginEnableManufacturerLockout_R3@12
- Type : code
- Name type : ordinal
- Ordinal : 16
-
-Archive member name at 1161E: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 43 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002F
- DLL name : reader3.dll
- Symbol name : _BeginEnableProtectedSession_R3@12
- Type : code
- Name type : ordinal
- Ordinal : 17
-
-Archive member name at 1169E: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 40 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002C
- DLL name : reader3.dll
- Symbol name : _BeginEnableResponderMode_R3@12
- Type : code
- Name type : ordinal
- Ordinal : 18
-
-Archive member name at 1171A: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 32 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000001E
- DLL name : reader3.dll
- Symbol name : _BeginEpdOnOff@12
- Type : code
- Name type : ordinal
- Ordinal : 19
-
-Archive member name at 11788: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 42 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002E
- DLL name : reader3.dll
- Symbol name : _BeginInitiateFirmwareUpdate_R3@8
- Type : code
- Name type : ordinal
- Ordinal : 20
-
-Archive member name at 11806: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 31 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000001D
- DLL name : reader3.dll
- Symbol name : _BeginIssueEPD@8
- Type : code
- Name type : ordinal
- Ordinal : 21
-
-Archive member name at 11874: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 4A size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000036
- DLL name : reader3.dll
- Symbol name : _BeginReadAccessPermissionsForLevel_R3@12
- Type : code
- Name type : ordinal
- Ordinal : 22
-
-Archive member name at 118FA: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 40 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002C
- DLL name : reader3.dll
- Symbol name : _BeginReadAlarmConfiguration@16
- Type : code
- Name type : ordinal
- Ordinal : 23
-
-Archive member name at 11976: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 46 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000032
- DLL name : reader3.dll
- Symbol name : _BeginReadAlarmConfigurationLock_R3@8
- Type : code
- Name type : ordinal
- Ordinal : 24
-
-Archive member name at 119F8: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 43 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002F
- DLL name : reader3.dll
- Symbol name : _BeginReadAlarmConfiguration_R3@16
- Type : code
- Name type : ordinal
- Ordinal : 25
-
-Archive member name at 11A78: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3D size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000029
- DLL name : reader3.dll
- Symbol name : _BeginReadAlarmThresholds@20
- Type : code
- Name type : ordinal
- Ordinal : 26
-
-Archive member name at 11AF2: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 43 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002F
- DLL name : reader3.dll
- Symbol name : _BeginReadBacklightBrightness_R3@8
- Type : code
- Name type : ordinal
- Ordinal : 27
-
-Archive member name at 11B72: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3F size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002B
- DLL name : reader3.dll
- Symbol name : _BeginReadBacklightEnable_R3@8
- Type : code
- Name type : ordinal
- Ordinal : 28
-
-Archive member name at 11BEE: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3F size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002B
- DLL name : reader3.dll
- Symbol name : _BeginReadBacklightPeriod_R3@8
- Type : code
- Name type : ordinal
- Ordinal : 29
-
-Archive member name at 11C6A: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3B size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000027
- DLL name : reader3.dll
- Symbol name : _BeginReadBaselineCounts@8
- Type : code
- Name type : ordinal
- Ordinal : 30
-
-Archive member name at 11CE2: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 45 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000031
- DLL name : reader3.dll
- Symbol name : _BeginReadBatteryCriticalTiming_R3@8
- Type : code
- Name type : ordinal
- Ordinal : 31
-
-Archive member name at 11D64: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 41 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002D
- DLL name : reader3.dll
- Symbol name : _BeginReadBatteryLowThreshold@12
- Type : code
- Name type : ordinal
- Ordinal : 32
-
-Archive member name at 11DE2: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 40 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002C
- DLL name : reader3.dll
- Symbol name : _BeginReadBatteryTestInterval@8
- Type : code
- Name type : ordinal
- Ordinal : 33
-
-Archive member name at 11E5E: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 41 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002D
- DLL name : reader3.dll
- Symbol name : _BeginReadBatteryTypeFitted_R3@8
- Type : code
- Name type : ordinal
- Ordinal : 34
-
-Archive member name at 11EDC: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 43 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002F
- DLL name : reader3.dll
- Symbol name : _BeginReadBatteryTypeOverride_R3@8
- Type : code
- Name type : ordinal
- Ordinal : 35
-
-Archive member name at 11F5C: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 37 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000023
- DLL name : reader3.dll
- Symbol name : _BeginReadCalDueDate@8
- Type : code
- Name type : ordinal
- Ordinal : 36
-
-Archive member name at 11FD0: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3A size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000026
- DLL name : reader3.dll
- Symbol name : _BeginReadCalDueDate_R3@8
- Type : code
- Name type : ordinal
- Ordinal : 37
-
-Archive member name at 12046: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3C size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000028
- DLL name : reader3.dll
- Symbol name : _BeginReadCalReference_R3@8
- Type : code
- Name type : ordinal
- Ordinal : 38
-
-Archive member name at 120BE: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3F size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002B
- DLL name : reader3.dll
- Symbol name : _BeginReadCalibrationData_R2@8
- Type : code
- Name type : ordinal
- Ordinal : 39
-
-Archive member name at 1213A: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 43 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002F
- DLL name : reader3.dll
- Symbol name : _BeginReadCalibrationFacility_R3@8
- Type : code
- Name type : ordinal
- Ordinal : 40
-
-Archive member name at 121BA: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 39 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000025
- DLL name : reader3.dll
- Symbol name : _BeginReadCapabilities@8
- Type : code
- Name type : ordinal
- Ordinal : 41
-
-Archive member name at 12230: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3B size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000027
- DLL name : reader3.dll
- Symbol name : _BeginReadChirpEnable_R3@8
- Type : code
- Name type : ordinal
- Ordinal : 42
-
-Archive member name at 122A8: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3D size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000029
- DLL name : reader3.dll
- Symbol name : _BeginReadChirpSensitivity@8
- Type : code
- Name type : ordinal
- Ordinal : 43
-
-Archive member name at 12322: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 34 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000020
- DLL name : reader3.dll
- Symbol name : _BeginReadCounts@16
- Type : code
- Name type : ordinal
- Ordinal : 44
-
-Archive member name at 12392: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3F size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002B
- DLL name : reader3.dll
- Symbol name : _BeginReadCurrentAccessLevel@8
- Type : code
- Name type : ordinal
- Ordinal : 45
-
-Archive member name at 1240E: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 40 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002C
- DLL name : reader3.dll
- Symbol name : _BeginReadDeadTimeFactors_R3@16
- Type : code
- Name type : ordinal
- Ordinal : 46
-
-Archive member name at 1248A: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3E size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002A
- DLL name : reader3.dll
- Symbol name : _BeginReadDebugRegister_R3@12
- Type : code
- Name type : ordinal
- Ordinal : 47
-
-Archive member name at 12504: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 43 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002F
- DLL name : reader3.dll
- Symbol name : _BeginReadDetectorTestLimits_R3@16
- Type : code
- Name type : ordinal
- Ordinal : 48
-
-Archive member name at 12584: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 48 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000034
- DLL name : reader3.dll
- Symbol name : _BeginReadDetectorThresholdLimits_R3@16
- Type : code
- Name type : ordinal
- Ordinal : 49
-
-Archive member name at 12608: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 40 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002C
- DLL name : reader3.dll
- Symbol name : _BeginReadDetectorThresholds@16
- Type : code
- Name type : ordinal
- Ordinal : 50
-
-Archive member name at 12684: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 43 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002F
- DLL name : reader3.dll
- Symbol name : _BeginReadDetectorThresholds_R3@16
- Type : code
- Name type : ordinal
- Ordinal : 51
-
-Archive member name at 12704: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 42 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002E
- DLL name : reader3.dll
- Symbol name : _BeginReadDisplayCapability_R3@12
- Type : code
- Name type : ordinal
- Ordinal : 52
-
-Archive member name at 12782: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 49 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000035
- DLL name : reader3.dll
- Symbol name : _BeginReadDisplayEnablePermissions_R3@12
- Type : code
- Name type : ordinal
- Ordinal : 53
-
-Archive member name at 12808: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3F size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002B
- DLL name : reader3.dll
- Symbol name : _BeginReadDisplayEnables_R3@16
- Type : code
- Name type : ordinal
- Ordinal : 54
-
-Archive member name at 12884: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3B size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000027
- DLL name : reader3.dll
- Symbol name : _BeginReadDisplayOptions@8
- Type : code
- Name type : ordinal
- Ordinal : 55
-
-Archive member name at 128FC: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 42 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002E
- DLL name : reader3.dll
- Symbol name : _BeginReadDisplayOptionsLock_R3@8
- Type : code
- Name type : ordinal
- Ordinal : 56
-
-Archive member name at 1297A: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3B size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000027
- DLL name : reader3.dll
- Symbol name : _BeginReadDisplayTimeout@8
- Type : code
- Name type : ordinal
- Ordinal : 57
-
-Archive member name at 129F2: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 43 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002F
- DLL name : reader3.dll
- Symbol name : _BeginReadDoseProfileByIndex_R3@16
- Type : code
- Name type : ordinal
- Ordinal : 58
-
-Archive member name at 12A72: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3F size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002B
- DLL name : reader3.dll
- Symbol name : _BeginReadDoseProfileByTime@16
- Type : code
- Name type : ordinal
- Ordinal : 59
-
-Archive member name at 12AEE: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 48 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000034
- DLL name : reader3.dll
- Symbol name : _BeginReadDoseProfileConfiguration_R3@8
- Type : code
- Name type : ordinal
- Ordinal : 60
-
-Archive member name at 12B72: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 40 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002C
- DLL name : reader3.dll
- Symbol name : _BeginReadDoseProfileInterval@8
- Type : code
- Name type : ordinal
- Ordinal : 61
-
-Archive member name at 12BEE: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 40 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002C
- DLL name : reader3.dll
- Symbol name : _BeginReadDoseSaveInterval_R3@8
- Type : code
- Name type : ordinal
- Ordinal : 62
-
-Archive member name at 12C6A: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 33 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000001F
- DLL name : reader3.dll
- Symbol name : _BeginReadDoses@16
- Type : code
- Name type : ordinal
- Ordinal : 63
-
-Archive member name at 12CDA: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 34 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000020
- DLL name : reader3.dll
- Symbol name : _BeginReadEEProm@16
- Type : code
- Name type : ordinal
- Ordinal : 64
-
-Archive member name at 12D4A: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3A size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000026
- DLL name : reader3.dll
- Symbol name : _BeginReadEpdIdentities@8
- Type : code
- Name type : ordinal
- Ordinal : 65
-
-Archive member name at 12DC0: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3D size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000029
- DLL name : reader3.dll
- Symbol name : _BeginReadEpdPartNumber_R3@8
- Type : code
- Name type : ordinal
- Ordinal : 66
-
-Archive member name at 12E3A: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3B size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000027
- DLL name : reader3.dll
- Symbol name : _BeginReadEpdRevision_R3@8
- Type : code
- Name type : ordinal
- Ordinal : 67
-
-Archive member name at 12EB2: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 39 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000025
- DLL name : reader3.dll
- Symbol name : _BeginReadEpdSerialNum@8
- Type : code
- Name type : ordinal
- Ordinal : 68
-
-Archive member name at 12F28: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 34 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000020
- DLL name : reader3.dll
- Symbol name : _BeginReadEpdType@8
- Type : code
- Name type : ordinal
- Ordinal : 69
-
-Archive member name at 12F98: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3D size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000029
- DLL name : reader3.dll
- Symbol name : _BeginReadEventLogLevel_R3@8
- Type : code
- Name type : ordinal
- Ordinal : 70
-
-Archive member name at 13012: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3B size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000027
- DLL name : reader3.dll
- Symbol name : _BeginReadEventsByIndex@16
- Type : code
- Name type : ordinal
- Ordinal : 71
-
-Archive member name at 1308A: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3B size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000027
- DLL name : reader3.dll
- Symbol name : _BeginReadFactoryCalDate@8
- Type : code
- Name type : ordinal
- Ordinal : 72
-
-Archive member name at 13102: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3C size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000028
- DLL name : reader3.dll
- Symbol name : _BeginReadFemSerialNum_R3@8
- Type : code
- Name type : ordinal
- Ordinal : 73
-
-Archive member name at 1317A: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 42 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002E
- DLL name : reader3.dll
- Symbol name : _BeginReadFirmwarePartNumber_R3@8
- Type : code
- Name type : ordinal
- Ordinal : 74
-
-Archive member name at 131F8: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3C size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000028
- DLL name : reader3.dll
- Symbol name : _BeginReadFirmwareVersion@8
- Type : code
- Name type : ordinal
- Ordinal : 75
-
-Archive member name at 13270: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 40 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002C
- DLL name : reader3.dll
- Symbol name : _BeginReadFlashTestCounts_R3@16
- Type : code
- Name type : ordinal
- Ordinal : 76
-
-Archive member name at 132EC: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3B size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000027
- DLL name : reader3.dll
- Symbol name : _BeginReadFpgaVersion_R3@8
- Type : code
- Name type : ordinal
- Ordinal : 77
-
-Archive member name at 13364: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 33 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000001F
- DLL name : reader3.dll
- Symbol name : _BeginReadGains@16
- Type : code
- Name type : ordinal
- Ordinal : 78
-
-Archive member name at 133D4: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 36 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000022
- DLL name : reader3.dll
- Symbol name : _BeginReadGains_R3@16
- Type : code
- Name type : ordinal
- Ordinal : 79
-
-Archive member name at 13446: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3C size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000028
- DLL name : reader3.dll
- Symbol name : _BeginReadGraphicData_R3@12
- Type : code
- Name type : ordinal
- Ordinal : 80
-
-Archive member name at 134BE: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3C size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000028
- DLL name : reader3.dll
- Symbol name : _BeginReadGraphicSize_R3@12
- Type : code
- Name type : ordinal
- Ordinal : 81
-
-Archive member name at 13536: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 46 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000032
- DLL name : reader3.dll
- Symbol name : _BeginReadLastCalibrationProcess_R3@8
- Type : code
- Name type : ordinal
- Ordinal : 82
-
-Archive member name at 135B8: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 37 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000023
- DLL name : reader3.dll
- Symbol name : _BeginReadMarkNumber@8
- Type : code
- Name type : ordinal
- Ordinal : 83
-
-Archive member name at 1362C: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3C size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000028
- DLL name : reader3.dll
- Symbol name : _BeginReadMeasurandIds_R3@8
- Type : code
- Name type : ordinal
- Ordinal : 84
-
-Archive member name at 136A4: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 39 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000025
- DLL name : reader3.dll
- Symbol name : _BeginReadModelName_R3@8
- Type : code
- Name type : ordinal
- Ordinal : 85
-
-Archive member name at 1371A: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 4A size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000036
- DLL name : reader3.dll
- Symbol name : _BeginReadOffModeBatteryTestInterval_R3@8
- Type : code
- Name type : ordinal
- Ordinal : 86
-
-Archive member name at 137A0: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3E size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002A
- DLL name : reader3.dll
- Symbol name : _BeginReadOffModeDisplay_R3@8
- Type : code
- Name type : ordinal
- Ordinal : 87
-
-Archive member name at 1381A: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3D size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000029
- DLL name : reader3.dll
- Symbol name : _BeginReadPcbPartNumber_R3@8
- Type : code
- Name type : ordinal
- Ordinal : 88
-
-Archive member name at 13894: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3B size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000027
- DLL name : reader3.dll
- Symbol name : _BeginReadPcbRevision_R3@8
- Type : code
- Name type : ordinal
- Ordinal : 89
-
-Archive member name at 1390C: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3C size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000028
- DLL name : reader3.dll
- Symbol name : _BeginReadPcbSerialNum_R3@8
- Type : code
- Name type : ordinal
- Ordinal : 90
-
-Archive member name at 13984: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 37 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000023
- DLL name : reader3.dll
- Symbol name : _BeginReadPeakRates@16
- Type : code
- Name type : ordinal
- Ordinal : 91
-
-Archive member name at 139F8: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3F size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002B
- DLL name : reader3.dll
- Symbol name : _BeginReadPulseModeEnable_R3@8
- Type : code
- Name type : ordinal
- Ordinal : 92
-
-Archive member name at 13A74: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 43 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002F
- DLL name : reader3.dll
- Symbol name : _BeginReadPulseModeIndustrial_R3@8
- Type : code
- Name type : ordinal
- Ordinal : 93
-
-Archive member name at 13AF4: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 42 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002E
- DLL name : reader3.dll
- Symbol name : _BeginReadPulseModeThreshold_R3@8
- Type : code
- Name type : ordinal
- Ordinal : 94
-
-Archive member name at 13B72: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 4C size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000038
- DLL name : reader3.dll
- Symbol name : _BeginReadPulsedModeOverrangeThreshold_R3@8
- Type : code
- Name type : ordinal
- Ordinal : 95
-
-Archive member name at 13BFA: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 38 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000024
- DLL name : reader3.dll
- Symbol name : _BeginReadQualityData@8
- Type : code
- Name type : ordinal
- Ordinal : 96
-
-Archive member name at 13C6E: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 44 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000030
- DLL name : reader3.dll
- Symbol name : _BeginReadQuickAccessDisplays_R3@16
- Type : code
- Name type : ordinal
- Ordinal : 97
-
-Archive member name at 13CEE: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 30 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000001C
- DLL name : reader3.dll
- Symbol name : _BeginReadRTC@8
- Type : code
- Name type : ordinal
- Ordinal : 98
-
-Archive member name at 13D5A: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 44 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000030
- DLL name : reader3.dll
- Symbol name : _BeginReadRadioFirmwareVersion_R3@8
- Type : code
- Name type : ordinal
- Ordinal : 99
-
-Archive member name at 13DDA: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3F size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002B
- DLL name : reader3.dll
- Symbol name : _BeginReadRateOffPercentage@16
- Type : code
- Name type : ordinal
- Ordinal : 100
-
-Archive member name at 13E56: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 33 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000001F
- DLL name : reader3.dll
- Symbol name : _BeginReadRates@16
- Type : code
- Name type : ordinal
- Ordinal : 101
-
-Archive member name at 13EC6: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 43 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002F
- DLL name : reader3.dll
- Symbol name : _BeginReadResponderTriggerUtc_R3@8
- Type : code
- Name type : ordinal
- Ordinal : 102
-
-Archive member name at 13F46: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3E size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002A
- DLL name : reader3.dll
- Symbol name : _BeginReadReturnForReadTime@8
- Type : code
- Name type : ordinal
- Ordinal : 103
-
-Archive member name at 13FC0: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 37 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000023
- DLL name : reader3.dll
- Symbol name : _BeginReadRunTime_R3@8
- Type : code
- Name type : ordinal
- Ordinal : 104
-
-Archive member name at 14034: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 38 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000024
- DLL name : reader3.dll
- Symbol name : _BeginReadScratchPad@16
- Type : code
- Name type : ordinal
- Ordinal : 105
-
-Archive member name at 140A8: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3B size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000027
- DLL name : reader3.dll
- Symbol name : _BeginReadScratchpadSize@8
- Type : code
- Name type : ordinal
- Ordinal : 106
-
-Archive member name at 14120: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3D size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000029
- DLL name : reader3.dll
- Symbol name : _BeginReadSelfTestInterval@8
- Type : code
- Name type : ordinal
- Ordinal : 107
-
-Archive member name at 1419A: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3B size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000027
- DLL name : reader3.dll
- Symbol name : _BeginReadSensitivities@16
- Type : code
- Name type : ordinal
- Ordinal : 108
-
-Archive member name at 14212: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3E size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002A
- DLL name : reader3.dll
- Symbol name : _BeginReadSensitivities_R3@16
- Type : code
- Name type : ordinal
- Ordinal : 109
-
-Archive member name at 1428C: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 48 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000034
- DLL name : reader3.dll
- Symbol name : _BeginReadSnapshotAlarmThresholds_R3@12
- Type : code
- Name type : ordinal
- Ordinal : 110
-
-Archive member name at 14310: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 41 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002D
- DLL name : reader3.dll
- Symbol name : _BeginReadSnapshotCounters_R3@12
- Type : code
- Name type : ordinal
- Ordinal : 111
-
-Archive member name at 1438E: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 45 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000031
- DLL name : reader3.dll
- Symbol name : _BeginReadSnapshotMeasurements_R3@12
- Type : code
- Name type : ordinal
- Ordinal : 112
-
-Archive member name at 14410: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 40 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002C
- DLL name : reader3.dll
- Symbol name : _BeginReadSnapshotSummary_R3@12
- Type : code
- Name type : ordinal
- Ordinal : 113
-
-Archive member name at 1448C: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 33 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000001F
- DLL name : reader3.dll
- Symbol name : _BeginReadStatus@8
- Type : code
- Name type : ordinal
- Ordinal : 114
-
-Archive member name at 144FC: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 38 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000024
- DLL name : reader3.dll
- Symbol name : _BeginReadStayTime_R3@8
- Type : code
- Name type : ordinal
- Ordinal : 115
-
-Archive member name at 14570: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 42 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002E
- DLL name : reader3.dll
- Symbol name : _BeginReadSwitchOnFromButton_R3@8
- Type : code
- Name type : ordinal
- Ordinal : 116
-
-Archive member name at 145EE: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3E size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002A
- DLL name : reader3.dll
- Symbol name : _BeginReadTaskDatabaseId_R3@8
- Type : code
- Name type : ordinal
- Ordinal : 117
-
-Archive member name at 14668: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 37 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000023
- DLL name : reader3.dll
- Symbol name : _BeginReadTaskId_R3@12
- Type : code
- Name type : ordinal
- Ordinal : 118
-
-Archive member name at 146DC: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 43 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002F
- DLL name : reader3.dll
- Symbol name : _BeginReadTelemetryAdvConfig_R3@12
- Type : code
- Name type : ordinal
- Ordinal : 119
-
-Archive member name at 1475C: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 44 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000030
- DLL name : reader3.dll
- Symbol name : _BeginReadTelemetryAdvContent_R3@12
- Type : code
- Name type : ordinal
- Ordinal : 120
-
-Archive member name at 147DC: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 42 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002E
- DLL name : reader3.dll
- Symbol name : _BeginReadTelemetryCxnConfig_R3@8
- Type : code
- Name type : ordinal
- Ordinal : 121
-
-Archive member name at 1485A: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 40 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002C
- DLL name : reader3.dll
- Symbol name : _BeginReadTelemetryEnable_R3@12
- Type : code
- Name type : ordinal
- Ordinal : 122
-
-Archive member name at 148D6: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3D size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000029
- DLL name : reader3.dll
- Symbol name : _BeginReadTelemetryMode_R2@8
- Type : code
- Name type : ordinal
- Ordinal : 123
-
-Archive member name at 14950: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 47 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000033
- DLL name : reader3.dll
- Symbol name : _BeginReadTelemetryReportInterval_R3@8
- Type : code
- Name type : ordinal
- Ordinal : 124
-
-Archive member name at 149D4: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 41 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002D
- DLL name : reader3.dll
- Symbol name : _BeginReadTelemetryTxPower_R3@12
- Type : code
- Name type : ordinal
- Ordinal : 125
-
-Archive member name at 14A52: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 38 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000024
- DLL name : reader3.dll
- Symbol name : _BeginReadTotalDoses@16
- Type : code
- Name type : ordinal
- Ordinal : 126
-
-Archive member name at 14AC6: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3F size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002B
- DLL name : reader3.dll
- Symbol name : _BeginReadTriggeredDoses_R3@16
- Type : code
- Name type : ordinal
- Ordinal : 127
-
-Archive member name at 14B42: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 35 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000021
- DLL name : reader3.dll
- Symbol name : _BeginReadVoltages@8
- Type : code
- Name type : ordinal
- Ordinal : 128
-
-Archive member name at 14BB4: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 40 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002C
- DLL name : reader3.dll
- Symbol name : _BeginReadWearerDatabaseId_R3@8
- Type : code
- Name type : ordinal
- Ordinal : 129
-
-Archive member name at 14C30: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 36 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000022
- DLL name : reader3.dll
- Symbol name : _BeginReadWearerId@12
- Type : code
- Name type : ordinal
- Ordinal : 130
-
-Archive member name at 14CA2: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 41 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002D
- DLL name : reader3.dll
- Symbol name : _BeginReadZoneAccessPermitted@12
- Type : code
- Name type : ordinal
- Ordinal : 131
-
-Archive member name at 14D20: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3B size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000027
- DLL name : reader3.dll
- Symbol name : _BeginReadZoneControlMap@8
- Type : code
- Name type : ordinal
- Ordinal : 132
-
-Archive member name at 14D98: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3C size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000028
- DLL name : reader3.dll
- Symbol name : _BeginSetBaselineCounters@8
- Type : code
- Name type : ordinal
- Ordinal : 133
-
-Archive member name at 14E10: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3A size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000026
- DLL name : reader3.dll
- Symbol name : _BeginStartDetectorTest@8
- Type : code
- Name type : ordinal
- Ordinal : 134
-
-Archive member name at 14E86: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3C size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000028
- DLL name : reader3.dll
- Symbol name : _BeginTriggerBacklight_R3@8
- Type : code
- Name type : ordinal
- Ordinal : 135
-
-Archive member name at 14EFE: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 40 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002C
- DLL name : reader3.dll
- Symbol name : _BeginTriggerResponderMode_R3@8
- Type : code
- Name type : ordinal
- Ordinal : 136
-
-Archive member name at 14F7A: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 40 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002C
- DLL name : reader3.dll
- Symbol name : _BeginValidateEpdOwnerKey_R3@12
- Type : code
- Name type : ordinal
- Ordinal : 137
-
-Archive member name at 14FF6: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 38 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000024
- DLL name : reader3.dll
- Symbol name : _BeginWriteAccessKey@20
- Type : code
- Name type : ordinal
- Ordinal : 138
-
-Archive member name at 1506A: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3A size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000026
- DLL name : reader3.dll
- Symbol name : _BeginWriteAccessLevel@20
- Type : code
- Name type : ordinal
- Ordinal : 139
-
-Archive member name at 150E0: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 4B size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000037
- DLL name : reader3.dll
- Symbol name : _BeginWriteAccessPermissionsForLevel_R3@20
- Type : code
- Name type : ordinal
- Ordinal : 140
-
-Archive member name at 15168: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 48 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000034
- DLL name : reader3.dll
- Symbol name : _BeginWriteAlarmConfigurationLock_R3@16
- Type : code
- Name type : ordinal
- Ordinal : 141
-
-Archive member name at 151EC: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 44 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000030
- DLL name : reader3.dll
- Symbol name : _BeginWriteAlarmConfiguration_R3@16
- Type : code
- Name type : ordinal
- Ordinal : 142
-
-Archive member name at 1526C: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3E size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002A
- DLL name : reader3.dll
- Symbol name : _BeginWriteAlarmThresholds@20
- Type : code
- Name type : ordinal
- Ordinal : 143
-
-Archive member name at 152E6: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 45 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000031
- DLL name : reader3.dll
- Symbol name : _BeginWriteBacklightBrightness_R3@12
- Type : code
- Name type : ordinal
- Ordinal : 144
-
-Archive member name at 15368: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 41 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002D
- DLL name : reader3.dll
- Symbol name : _BeginWriteBacklightEnable_R3@12
- Type : code
- Name type : ordinal
- Ordinal : 145
-
-Archive member name at 153E6: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 41 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002D
- DLL name : reader3.dll
- Symbol name : _BeginWriteBacklightPeriod_R3@12
- Type : code
- Name type : ordinal
- Ordinal : 146
-
-Archive member name at 15464: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 47 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000033
- DLL name : reader3.dll
- Symbol name : _BeginWriteBatteryCriticalTiming_R3@16
- Type : code
- Name type : ordinal
- Ordinal : 147
-
-Archive member name at 154E8: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 42 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002E
- DLL name : reader3.dll
- Symbol name : _BeginWriteBatteryLowThreshold@16
- Type : code
- Name type : ordinal
- Ordinal : 148
-
-Archive member name at 15566: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 42 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002E
- DLL name : reader3.dll
- Symbol name : _BeginWriteBatteryTestInterval@12
- Type : code
- Name type : ordinal
- Ordinal : 149
-
-Archive member name at 155E4: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 45 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000031
- DLL name : reader3.dll
- Symbol name : _BeginWriteBatteryTypeOverride_R3@12
- Type : code
- Name type : ordinal
- Ordinal : 150
-
-Archive member name at 15666: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 39 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000025
- DLL name : reader3.dll
- Symbol name : _BeginWriteCalDueDate@12
- Type : code
- Name type : ordinal
- Ordinal : 151
-
-Archive member name at 156DC: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3C size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000028
- DLL name : reader3.dll
- Symbol name : _BeginWriteCalDueDate_R3@12
- Type : code
- Name type : ordinal
- Ordinal : 152
-
-Archive member name at 15754: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3E size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002A
- DLL name : reader3.dll
- Symbol name : _BeginWriteCalReference_R3@12
- Type : code
- Name type : ordinal
- Ordinal : 153
-
-Archive member name at 157CE: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 45 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000031
- DLL name : reader3.dll
- Symbol name : _BeginWriteCalibrationFacility_R3@16
- Type : code
- Name type : ordinal
- Ordinal : 154
-
-Archive member name at 15850: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3E size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002A
- DLL name : reader3.dll
- Symbol name : _BeginWriteCapabilities_R3@12
- Type : code
- Name type : ordinal
- Ordinal : 155
-
-Archive member name at 158CA: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3D size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000029
- DLL name : reader3.dll
- Symbol name : _BeginWriteChirpEnable_R3@12
- Type : code
- Name type : ordinal
- Ordinal : 156
-
-Archive member name at 15944: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3F size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002B
- DLL name : reader3.dll
- Symbol name : _BeginWriteChirpSensitivity@12
- Type : code
- Name type : ordinal
- Ordinal : 157
-
-Archive member name at 159C0: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 42 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002E
- DLL name : reader3.dll
- Symbol name : _BeginWriteClearDoseOnSwitchOn@12
- Type : code
- Name type : ordinal
- Ordinal : 158
-
-Archive member name at 15A3E: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 41 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002D
- DLL name : reader3.dll
- Symbol name : _BeginWriteDeadTimeFactors_R3@16
- Type : code
- Name type : ordinal
- Ordinal : 159
-
-Archive member name at 15ABC: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3F size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002B
- DLL name : reader3.dll
- Symbol name : _BeginWriteDebugRegister_R3@16
- Type : code
- Name type : ordinal
- Ordinal : 160
-
-Archive member name at 15B38: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 44 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000030
- DLL name : reader3.dll
- Symbol name : _BeginWriteDetectorTestLimits_R3@16
- Type : code
- Name type : ordinal
- Ordinal : 161
-
-Archive member name at 15BB8: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 44 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000030
- DLL name : reader3.dll
- Symbol name : _BeginWriteDetectorThresholds_R2@24
- Type : code
- Name type : ordinal
- Ordinal : 162
-
-Archive member name at 15C38: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 44 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000030
- DLL name : reader3.dll
- Symbol name : _BeginWriteDetectorThresholds_R3@16
- Type : code
- Name type : ordinal
- Ordinal : 163
-
-Archive member name at 15CB8: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 4A size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000036
- DLL name : reader3.dll
- Symbol name : _BeginWriteDisplayEnablePermissions_R3@20
- Type : code
- Name type : ordinal
- Ordinal : 164
-
-Archive member name at 15D3E: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 40 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002C
- DLL name : reader3.dll
- Symbol name : _BeginWriteDisplayEnables_R3@16
- Type : code
- Name type : ordinal
- Ordinal : 165
-
-Archive member name at 15DBA: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3D size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000029
- DLL name : reader3.dll
- Symbol name : _BeginWriteDisplayOptions@16
- Type : code
- Name type : ordinal
- Ordinal : 166
-
-Archive member name at 15E34: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 44 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000030
- DLL name : reader3.dll
- Symbol name : _BeginWriteDisplayOptionsLock_R3@16
- Type : code
- Name type : ordinal
- Ordinal : 167
-
-Archive member name at 15EB4: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3D size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000029
- DLL name : reader3.dll
- Symbol name : _BeginWriteDisplayTimeout@12
- Type : code
- Name type : ordinal
- Ordinal : 168
-
-Archive member name at 15F2E: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 4A size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000036
- DLL name : reader3.dll
- Symbol name : _BeginWriteDoseProfileDoseIncrement_R3@12
- Type : code
- Name type : ordinal
- Ordinal : 169
-
-Archive member name at 15FB4: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 42 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002E
- DLL name : reader3.dll
- Symbol name : _BeginWriteDoseProfileInterval@12
- Type : code
- Name type : ordinal
- Ordinal : 170
-
-Archive member name at 16032: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 47 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000033
- DLL name : reader3.dll
- Symbol name : _BeginWriteDoseProfileMeasurands_R3@16
- Type : code
- Name type : ordinal
- Ordinal : 171
-
-Archive member name at 160B6: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 42 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002E
- DLL name : reader3.dll
- Symbol name : _BeginWriteDoseSaveInterval_R3@12
- Type : code
- Name type : ordinal
- Ordinal : 172
-
-Archive member name at 16134: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3F size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002B
- DLL name : reader3.dll
- Symbol name : _BeginWriteDoseWritableFlag@12
- Type : code
- Name type : ordinal
- Ordinal : 173
-
-Archive member name at 161B0: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 34 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000020
- DLL name : reader3.dll
- Symbol name : _BeginWriteDoses@16
- Type : code
- Name type : ordinal
- Ordinal : 174
-
-Archive member name at 16220: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 35 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000021
- DLL name : reader3.dll
- Symbol name : _BeginWriteEEProm@20
- Type : code
- Name type : ordinal
- Ordinal : 175
-
-Archive member name at 16292: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3F size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002B
- DLL name : reader3.dll
- Symbol name : _BeginWriteEpdPartNumber_R3@12
- Type : code
- Name type : ordinal
- Ordinal : 176
-
-Archive member name at 1630E: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3D size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000029
- DLL name : reader3.dll
- Symbol name : _BeginWriteEpdRevision_R3@12
- Type : code
- Name type : ordinal
- Ordinal : 177
-
-Archive member name at 16388: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3E size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002A
- DLL name : reader3.dll
- Symbol name : _BeginWriteEpdSerialNumber@12
- Type : code
- Name type : ordinal
- Ordinal : 178
-
-Archive member name at 16402: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3F size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002B
- DLL name : reader3.dll
- Symbol name : _BeginWriteEventLogLevel_R3@12
- Type : code
- Name type : ordinal
- Ordinal : 179
-
-Archive member name at 1647E: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3D size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000029
- DLL name : reader3.dll
- Symbol name : _BeginWriteFactoryCalDate@12
- Type : code
- Name type : ordinal
- Ordinal : 180
-
-Archive member name at 164F8: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 41 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002D
- DLL name : reader3.dll
- Symbol name : _BeginWriteFemSerialNumber_R3@12
- Type : code
- Name type : ordinal
- Ordinal : 181
-
-Archive member name at 16576: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3E size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002A
- DLL name : reader3.dll
- Symbol name : _BeginWriteGainableFlag_R3@12
- Type : code
- Name type : ordinal
- Ordinal : 182
-
-Archive member name at 165F0: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 37 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000023
- DLL name : reader3.dll
- Symbol name : _BeginWriteGains_R3@16
- Type : code
- Name type : ordinal
- Ordinal : 183
-
-Archive member name at 16664: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3C size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000028
- DLL name : reader3.dll
- Symbol name : _BeginWriteGoldenFlag_R3@12
- Type : code
- Name type : ordinal
- Ordinal : 184
-
-Archive member name at 166DC: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 40 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002C
- DLL name : reader3.dll
- Symbol name : _BeginWriteGraphicBitmap_R3@352
- Type : code
- Name type : ordinal
- Ordinal : 185
-
-Archive member name at 16758: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 48 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000034
- DLL name : reader3.dll
- Symbol name : _BeginWriteLastCalibrationProcess_R3@20
- Type : code
- Name type : ordinal
- Ordinal : 186
-
-Archive member name at 167DC: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3C size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000028
- DLL name : reader3.dll
- Symbol name : _BeginWriteMarkNumber_R3@12
- Type : code
- Name type : ordinal
- Ordinal : 187
-
-Archive member name at 16854: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3B size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000027
- DLL name : reader3.dll
- Symbol name : _BeginWriteModelName_R3@40
- Type : code
- Name type : ordinal
- Ordinal : 188
-
-Archive member name at 168CC: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 43 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002F
- DLL name : reader3.dll
- Symbol name : _BeginWriteNotCalibratedFlag_R3@12
- Type : code
- Name type : ordinal
- Ordinal : 189
-
-Archive member name at 1694C: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 4C size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000038
- DLL name : reader3.dll
- Symbol name : _BeginWriteOffModeBatteryTestInterval_R3@12
- Type : code
- Name type : ordinal
- Ordinal : 190
-
-Archive member name at 169D4: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 40 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002C
- DLL name : reader3.dll
- Symbol name : _BeginWriteOffModeDisplay_R3@16
- Type : code
- Name type : ordinal
- Ordinal : 191
-
-Archive member name at 16A50: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3F size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002B
- DLL name : reader3.dll
- Symbol name : _BeginWritePcbPartNumber_R3@12
- Type : code
- Name type : ordinal
- Ordinal : 192
-
-Archive member name at 16ACC: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3D size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000029
- DLL name : reader3.dll
- Symbol name : _BeginWritePcbRevision_R3@12
- Type : code
- Name type : ordinal
- Ordinal : 193
-
-Archive member name at 16B46: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 41 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002D
- DLL name : reader3.dll
- Symbol name : _BeginWritePcbSerialNumber_R3@12
- Type : code
- Name type : ordinal
- Ordinal : 194
-
-Archive member name at 16BC4: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 41 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002D
- DLL name : reader3.dll
- Symbol name : _BeginWritePulseModeEnable_R3@12
- Type : code
- Name type : ordinal
- Ordinal : 195
-
-Archive member name at 16C42: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 45 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000031
- DLL name : reader3.dll
- Symbol name : _BeginWritePulseModeIndustrial_R3@12
- Type : code
- Name type : ordinal
- Ordinal : 196
-
-Archive member name at 16CC4: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 44 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000030
- DLL name : reader3.dll
- Symbol name : _BeginWritePulseModeThreshold_R3@12
- Type : code
- Name type : ordinal
- Ordinal : 197
-
-Archive member name at 16D44: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 4E size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000003A
- DLL name : reader3.dll
- Symbol name : _BeginWritePulsedModeOverrangeThreshold_R3@12
- Type : code
- Name type : ordinal
- Ordinal : 198
-
-Archive member name at 16DCE: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 45 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000031
- DLL name : reader3.dll
- Symbol name : _BeginWriteQuickAccessDisplays_R3@16
- Type : code
- Name type : ordinal
- Ordinal : 199
-
-Archive member name at 16E50: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 35 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000021
- DLL name : reader3.dll
- Symbol name : _BeginWriteRTC_R3@12
- Type : code
- Name type : ordinal
- Ordinal : 200
-
-Archive member name at 16EC2: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 40 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002C
- DLL name : reader3.dll
- Symbol name : _BeginWriteRateOffPercentage@16
- Type : code
- Name type : ordinal
- Ordinal : 201
-
-Archive member name at 16F3E: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 40 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002C
- DLL name : reader3.dll
- Symbol name : _BeginWriteReturnForReadTime@12
- Type : code
- Name type : ordinal
- Ordinal : 202
-
-Archive member name at 16FBA: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 39 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000025
- DLL name : reader3.dll
- Symbol name : _BeginWriteScratchPad@20
- Type : code
- Name type : ordinal
- Ordinal : 203
-
-Archive member name at 17030: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3F size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002B
- DLL name : reader3.dll
- Symbol name : _BeginWriteSelfTestInterval@12
- Type : code
- Name type : ordinal
- Ordinal : 204
-
-Archive member name at 170AC: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3F size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002B
- DLL name : reader3.dll
- Symbol name : _BeginWriteSensitivities_R2@32
- Type : code
- Name type : ordinal
- Ordinal : 205
-
-Archive member name at 17128: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3F size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002B
- DLL name : reader3.dll
- Symbol name : _BeginWriteSensitivities_R3@16
- Type : code
- Name type : ordinal
- Ordinal : 206
-
-Archive member name at 171A4: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3A size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000026
- DLL name : reader3.dll
- Symbol name : _BeginWriteStayTime_R3@12
- Type : code
- Name type : ordinal
- Ordinal : 207
-
-Archive member name at 1721A: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 44 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000030
- DLL name : reader3.dll
- Symbol name : _BeginWriteSwitchOnFromButton_R3@12
- Type : code
- Name type : ordinal
- Ordinal : 208
-
-Archive member name at 1729A: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 40 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002C
- DLL name : reader3.dll
- Symbol name : _BeginWriteTaskDatabaseId_R3@24
- Type : code
- Name type : ordinal
- Ordinal : 209
-
-Archive member name at 17316: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 38 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000024
- DLL name : reader3.dll
- Symbol name : _BeginWriteTaskId_R3@76
- Type : code
- Name type : ordinal
- Ordinal : 210
-
-Archive member name at 1738A: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 44 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000030
- DLL name : reader3.dll
- Symbol name : _BeginWriteTelemetryAdvConfig_R3@12
- Type : code
- Name type : ordinal
- Ordinal : 211
-
-Archive member name at 1740A: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 45 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000031
- DLL name : reader3.dll
- Symbol name : _BeginWriteTelemetryAdvContent_R3@16
- Type : code
- Name type : ordinal
- Ordinal : 212
-
-Archive member name at 1748C: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 44 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000030
- DLL name : reader3.dll
- Symbol name : _BeginWriteTelemetryCxnConfig_R3@12
- Type : code
- Name type : ordinal
- Ordinal : 213
-
-Archive member name at 1750C: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 41 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002D
- DLL name : reader3.dll
- Symbol name : _BeginWriteTelemetryEnable_R3@16
- Type : code
- Name type : ordinal
- Ordinal : 214
-
-Archive member name at 1758A: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3F size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002B
- DLL name : reader3.dll
- Symbol name : _BeginWriteTelemetryMode_R2@12
- Type : code
- Name type : ordinal
- Ordinal : 215
-
-Archive member name at 17606: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 49 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000035
- DLL name : reader3.dll
- Symbol name : _BeginWriteTelemetryReportInterval_R3@12
- Type : code
- Name type : ordinal
- Ordinal : 216
-
-Archive member name at 1768C: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 42 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002E
- DLL name : reader3.dll
- Symbol name : _BeginWriteTelemetryTxPower_R3@16
- Type : code
- Name type : ordinal
- Ordinal : 217
-
-Archive member name at 1770A: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 39 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000025
- DLL name : reader3.dll
- Symbol name : _BeginWriteTotalDoses@16
- Type : code
- Name type : ordinal
- Ordinal : 218
-
-Archive member name at 17780: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 40 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002C
- DLL name : reader3.dll
- Symbol name : _BeginWriteTriggeredDoses_R3@16
- Type : code
- Name type : ordinal
- Ordinal : 219
-
-Archive member name at 177FC: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 42 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002E
- DLL name : reader3.dll
- Symbol name : _BeginWriteWearerDatabaseId_R3@24
- Type : code
- Name type : ordinal
- Ordinal : 220
-
-Archive member name at 1787A: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 37 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000023
- DLL name : reader3.dll
- Symbol name : _BeginWriteWearerId@76
- Type : code
- Name type : ordinal
- Ordinal : 221
-
-Archive member name at 178EE: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3D size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000029
- DLL name : reader3.dll
- Symbol name : _BeginWriteZoneControlMap@16
- Type : code
- Name type : ordinal
- Ordinal : 222
-
-Archive member name at 17968: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3A size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000026
- DLL name : reader3.dll
- Symbol name : _CleanUpReadDoseProfile@4
- Type : code
- Name type : ordinal
- Ordinal : 223
-
-Archive member name at 179DE: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 37 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000023
- DLL name : reader3.dll
- Symbol name : _CleanUpReadEventLog@4
- Type : code
- Name type : ordinal
- Ordinal : 224
-
-Archive member name at 17A52: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 2F size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000001B
- DLL name : reader3.dll
- Symbol name : _CloseReader@4
- Type : code
- Name type : ordinal
- Ordinal : 225
-
-Archive member name at 17ABE: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 2A size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000016
- DLL name : reader3.dll
- Symbol name : _Commit@4
- Type : code
- Name type : ordinal
- Ordinal : 226
-
-Archive member name at 17B24: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 2C size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000018
- DLL name : reader3.dll
- Symbol name : _Connect@20
- Type : code
- Name type : ordinal
- Ordinal : 227
-
-Archive member name at 17B8C: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 39 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000025
- DLL name : reader3.dll
- Symbol name : _CreateReaderInterface@0
- Type : code
- Name type : ordinal
- Ordinal : 228
-
-Archive member name at 17C02: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3A size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000026
- DLL name : reader3.dll
- Symbol name : _DestroyReaderInterface@4
- Type : code
- Name type : ordinal
- Ordinal : 229
-
-Archive member name at 17C78: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 2E size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000001A
- DLL name : reader3.dll
- Symbol name : _Disconnect@4
- Type : code
- Name type : ordinal
- Ordinal : 230
-
-Archive member name at 17CE2: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 38 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000024
- DLL name : reader3.dll
- Symbol name : _DisconnectAndNotify@12
- Type : code
- Name type : ordinal
- Ordinal : 231
-
-Archive member name at 17D56: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 35 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000021
- DLL name : reader3.dll
- Symbol name : _EndClearAllStatus@8
- Type : code
- Name type : ordinal
- Ordinal : 232
-
-Archive member name at 17DC8: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 30 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000001C
- DLL name : reader3.dll
- Symbol name : _EndClearDose@8
- Type : code
- Name type : ordinal
- Ordinal : 233
-
-Archive member name at 17E34: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3A size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000026
- DLL name : reader3.dll
- Symbol name : _EndClearDoseProfile_R3@8
- Type : code
- Name type : ordinal
- Ordinal : 234
-
-Archive member name at 17EAA: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 35 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000021
- DLL name : reader3.dll
- Symbol name : _EndClearEEPROM_R3@8
- Type : code
- Name type : ordinal
- Ordinal : 235
-
-Archive member name at 17F1C: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 37 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000023
- DLL name : reader3.dll
- Symbol name : _EndClearFaultStatus@8
- Type : code
- Name type : ordinal
- Ordinal : 236
-
-Archive member name at 17F90: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 36 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000022
- DLL name : reader3.dll
- Symbol name : _EndClearGraphic_R3@8
- Type : code
- Name type : ordinal
- Ordinal : 237
-
-Archive member name at 18002: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 39 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000025
- DLL name : reader3.dll
- Symbol name : _EndClearLatchedAlarms@8
- Type : code
- Name type : ordinal
- Ordinal : 238
-
-Archive member name at 18078: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 35 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000021
- DLL name : reader3.dll
- Symbol name : _EndClearPeakRates@8
- Type : code
- Name type : ordinal
- Ordinal : 239
-
-Archive member name at 180EA: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 36 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000022
- DLL name : reader3.dll
- Symbol name : _EndClearScratchpad@8
- Type : code
- Name type : ordinal
- Ordinal : 240
-
-Archive member name at 1815C: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 35 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000021
- DLL name : reader3.dll
- Symbol name : _EndClearTotalDose@8
- Type : code
- Name type : ordinal
- Ordinal : 241
-
-Archive member name at 181CE: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3D size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000029
- DLL name : reader3.dll
- Symbol name : _EndClearWearerOrTaskId_R3@8
- Type : code
- Name type : ordinal
- Ordinal : 242
-
-Archive member name at 18248: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 31 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000001D
- DLL name : reader3.dll
- Symbol name : _EndDeissueEPD@8
- Type : code
- Name type : ordinal
- Ordinal : 243
-
-Archive member name at 182B6: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3A size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000026
- DLL name : reader3.dll
- Symbol name : _EndEnableCovertMode_R3@8
- Type : code
- Name type : ordinal
- Ordinal : 244
-
-Archive member name at 1832C: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 39 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000025
- DLL name : reader3.dll
- Symbol name : _EndEnableDeepSleep_R3@8
- Type : code
- Name type : ordinal
- Ordinal : 245
-
-Archive member name at 183A2: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 43 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002F
- DLL name : reader3.dll
- Symbol name : _EndEnableManufacturerLockout_R3@8
- Type : code
- Name type : ordinal
- Ordinal : 246
-
-Archive member name at 18422: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 40 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002C
- DLL name : reader3.dll
- Symbol name : _EndEnableProtectedSession_R3@8
- Type : code
- Name type : ordinal
- Ordinal : 247
-
-Archive member name at 1849E: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3D size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000029
- DLL name : reader3.dll
- Symbol name : _EndEnableResponderMode_R3@8
- Type : code
- Name type : ordinal
- Ordinal : 248
-
-Archive member name at 18518: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 2F size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000001B
- DLL name : reader3.dll
- Symbol name : _EndEpdOnOff@8
- Type : code
- Name type : ordinal
- Ordinal : 249
-
-Archive member name at 18584: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 40 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002C
- DLL name : reader3.dll
- Symbol name : _EndInitiateFirmwareUpdate_R3@8
- Type : code
- Name type : ordinal
- Ordinal : 250
-
-Archive member name at 18600: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 2F size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000001B
- DLL name : reader3.dll
- Symbol name : _EndIssueEPD@8
- Type : code
- Name type : ordinal
- Ordinal : 251
-
-Archive member name at 1866C: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 48 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000034
- DLL name : reader3.dll
- Symbol name : _EndReadAccessPermissionsForLevel_R3@20
- Type : code
- Name type : ordinal
- Ordinal : 252
-
-Archive member name at 186F0: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3E size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002A
- DLL name : reader3.dll
- Symbol name : _EndReadAlarmConfiguration@20
- Type : code
- Name type : ordinal
- Ordinal : 253
-
-Archive member name at 1876A: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 45 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000031
- DLL name : reader3.dll
- Symbol name : _EndReadAlarmConfigurationLock_R3@20
- Type : code
- Name type : ordinal
- Ordinal : 254
-
-Archive member name at 187EC: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 41 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002D
- DLL name : reader3.dll
- Symbol name : _EndReadAlarmConfiguration_R3@20
- Type : code
- Name type : ordinal
- Ordinal : 255
-
-Archive member name at 1886A: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3B size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000027
- DLL name : reader3.dll
- Symbol name : _EndReadAlarmThresholds@12
- Type : code
- Name type : ordinal
- Ordinal : 256
-
-Archive member name at 188E2: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 42 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002E
- DLL name : reader3.dll
- Symbol name : _EndReadBacklightBrightness_R3@12
- Type : code
- Name type : ordinal
- Ordinal : 257
-
-Archive member name at 18960: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3E size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002A
- DLL name : reader3.dll
- Symbol name : _EndReadBacklightEnable_R3@12
- Type : code
- Name type : ordinal
- Ordinal : 258
-
-Archive member name at 189DA: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3E size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002A
- DLL name : reader3.dll
- Symbol name : _EndReadBacklightPeriod_R3@12
- Type : code
- Name type : ordinal
- Ordinal : 259
-
-Archive member name at 18A54: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3A size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000026
- DLL name : reader3.dll
- Symbol name : _EndReadBaselineCounts@24
- Type : code
- Name type : ordinal
- Ordinal : 260
-
-Archive member name at 18ACA: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 44 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000030
- DLL name : reader3.dll
- Symbol name : _EndReadBatteryCriticalTiming_R3@16
- Type : code
- Name type : ordinal
- Ordinal : 261
-
-Archive member name at 18B4A: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3F size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002B
- DLL name : reader3.dll
- Symbol name : _EndReadBatteryLowThreshold@16
- Type : code
- Name type : ordinal
- Ordinal : 262
-
-Archive member name at 18BC6: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3F size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002B
- DLL name : reader3.dll
- Symbol name : _EndReadBatteryTestInterval@12
- Type : code
- Name type : ordinal
- Ordinal : 263
-
-Archive member name at 18C42: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 40 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002C
- DLL name : reader3.dll
- Symbol name : _EndReadBatteryTypeFitted_R3@12
- Type : code
- Name type : ordinal
- Ordinal : 264
-
-Archive member name at 18CBE: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 42 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002E
- DLL name : reader3.dll
- Symbol name : _EndReadBatteryTypeOverride_R3@12
- Type : code
- Name type : ordinal
- Ordinal : 265
-
-Archive member name at 18D3C: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 36 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000022
- DLL name : reader3.dll
- Symbol name : _EndReadCalDueDate@12
- Type : code
- Name type : ordinal
- Ordinal : 266
-
-Archive member name at 18DAE: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 39 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000025
- DLL name : reader3.dll
- Symbol name : _EndReadCalDueDate_R3@12
- Type : code
- Name type : ordinal
- Ordinal : 267
-
-Archive member name at 18E24: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3B size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000027
- DLL name : reader3.dll
- Symbol name : _EndReadCalReference_R3@12
- Type : code
- Name type : ordinal
- Ordinal : 268
-
-Archive member name at 18E9C: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3E size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002A
- DLL name : reader3.dll
- Symbol name : _EndReadCalibrationData_R2@48
- Type : code
- Name type : ordinal
- Ordinal : 269
-
-Archive member name at 18F16: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 42 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002E
- DLL name : reader3.dll
- Symbol name : _EndReadCalibrationFacility_R3@12
- Type : code
- Name type : ordinal
- Ordinal : 270
-
-Archive member name at 18F94: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 38 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000024
- DLL name : reader3.dll
- Symbol name : _EndReadCapabilities@12
- Type : code
- Name type : ordinal
- Ordinal : 271
-
-Archive member name at 19008: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3A size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000026
- DLL name : reader3.dll
- Symbol name : _EndReadChirpEnable_R3@12
- Type : code
- Name type : ordinal
- Ordinal : 272
-
-Archive member name at 1907E: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3C size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000028
- DLL name : reader3.dll
- Symbol name : _EndReadChirpSensitivity@12
- Type : code
- Name type : ordinal
- Ordinal : 273
-
-Archive member name at 190F6: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 32 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000001E
- DLL name : reader3.dll
- Symbol name : _EndReadCounts@28
- Type : code
- Name type : ordinal
- Ordinal : 274
-
-Archive member name at 19164: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3E size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002A
- DLL name : reader3.dll
- Symbol name : _EndReadCurrentAccessLevel@12
- Type : code
- Name type : ordinal
- Ordinal : 275
-
-Archive member name at 191DE: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3E size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002A
- DLL name : reader3.dll
- Symbol name : _EndReadDeadTimeFactors_R3@20
- Type : code
- Name type : ordinal
- Ordinal : 276
-
-Archive member name at 19258: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3C size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000028
- DLL name : reader3.dll
- Symbol name : _EndReadDebugRegister_R3@16
- Type : code
- Name type : ordinal
- Ordinal : 277
-
-Archive member name at 192D0: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 41 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002D
- DLL name : reader3.dll
- Symbol name : _EndReadDetectorTestLimits_R3@20
- Type : code
- Name type : ordinal
- Ordinal : 278
-
-Archive member name at 1934E: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 46 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000032
- DLL name : reader3.dll
- Symbol name : _EndReadDetectorThresholdLimits_R3@20
- Type : code
- Name type : ordinal
- Ordinal : 279
-
-Archive member name at 193D0: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3E size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002A
- DLL name : reader3.dll
- Symbol name : _EndReadDetectorThresholds@20
- Type : code
- Name type : ordinal
- Ordinal : 280
-
-Archive member name at 1944A: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 41 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002D
- DLL name : reader3.dll
- Symbol name : _EndReadDetectorThresholds_R3@20
- Type : code
- Name type : ordinal
- Ordinal : 281
-
-Archive member name at 194C8: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 40 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002C
- DLL name : reader3.dll
- Symbol name : _EndReadDisplayCapability_R3@24
- Type : code
- Name type : ordinal
- Ordinal : 282
-
-Archive member name at 19544: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 47 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000033
- DLL name : reader3.dll
- Symbol name : _EndReadDisplayEnablePermissions_R3@24
- Type : code
- Name type : ordinal
- Ordinal : 283
-
-Archive member name at 195C8: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3D size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000029
- DLL name : reader3.dll
- Symbol name : _EndReadDisplayEnables_R3@20
- Type : code
- Name type : ordinal
- Ordinal : 284
-
-Archive member name at 19642: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3A size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000026
- DLL name : reader3.dll
- Symbol name : _EndReadDisplayOptions@12
- Type : code
- Name type : ordinal
- Ordinal : 285
-
-Archive member name at 196B8: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 41 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002D
- DLL name : reader3.dll
- Symbol name : _EndReadDisplayOptionsLock_R3@12
- Type : code
- Name type : ordinal
- Ordinal : 286
-
-Archive member name at 19736: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3A size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000026
- DLL name : reader3.dll
- Symbol name : _EndReadDisplayTimeout@12
- Type : code
- Name type : ordinal
- Ordinal : 287
-
-Archive member name at 197AC: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 41 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002D
- DLL name : reader3.dll
- Symbol name : _EndReadDoseProfileByIndex_R3@24
- Type : code
- Name type : ordinal
- Ordinal : 288
-
-Archive member name at 1982A: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3D size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000029
- DLL name : reader3.dll
- Symbol name : _EndReadDoseProfileByTime@16
- Type : code
- Name type : ordinal
- Ordinal : 289
-
-Archive member name at 198A4: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 47 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000033
- DLL name : reader3.dll
- Symbol name : _EndReadDoseProfileConfiguration_R3@12
- Type : code
- Name type : ordinal
- Ordinal : 290
-
-Archive member name at 19928: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3F size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002B
- DLL name : reader3.dll
- Symbol name : _EndReadDoseProfileInterval@12
- Type : code
- Name type : ordinal
- Ordinal : 291
-
-Archive member name at 199A4: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3F size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002B
- DLL name : reader3.dll
- Symbol name : _EndReadDoseSaveInterval_R3@12
- Type : code
- Name type : ordinal
- Ordinal : 292
-
-Archive member name at 19A20: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 31 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000001D
- DLL name : reader3.dll
- Symbol name : _EndReadDoses@24
- Type : code
- Name type : ordinal
- Ordinal : 293
-
-Archive member name at 19A8E: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 32 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000001E
- DLL name : reader3.dll
- Symbol name : _EndReadEEProm@24
- Type : code
- Name type : ordinal
- Ordinal : 294
-
-Archive member name at 19AFC: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 39 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000025
- DLL name : reader3.dll
- Symbol name : _EndReadEpdIdentities@36
- Type : code
- Name type : ordinal
- Ordinal : 295
-
-Archive member name at 19B72: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3C size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000028
- DLL name : reader3.dll
- Symbol name : _EndReadEpdPartNumber_R3@12
- Type : code
- Name type : ordinal
- Ordinal : 296
-
-Archive member name at 19BEA: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3A size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000026
- DLL name : reader3.dll
- Symbol name : _EndReadEpdRevision_R3@12
- Type : code
- Name type : ordinal
- Ordinal : 297
-
-Archive member name at 19C60: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 38 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000024
- DLL name : reader3.dll
- Symbol name : _EndReadEpdSerialNum@12
- Type : code
- Name type : ordinal
- Ordinal : 298
-
-Archive member name at 19CD4: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 33 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000001F
- DLL name : reader3.dll
- Symbol name : _EndReadEpdType@12
- Type : code
- Name type : ordinal
- Ordinal : 299
-
-Archive member name at 19D44: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3C size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000028
- DLL name : reader3.dll
- Symbol name : _EndReadEventLogLevel_R3@12
- Type : code
- Name type : ordinal
- Ordinal : 300
-
-Archive member name at 19DBC: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 39 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000025
- DLL name : reader3.dll
- Symbol name : _EndReadEventsByIndex@16
- Type : code
- Name type : ordinal
- Ordinal : 301
-
-Archive member name at 19E32: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3A size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000026
- DLL name : reader3.dll
- Symbol name : _EndReadFactoryCalDate@12
- Type : code
- Name type : ordinal
- Ordinal : 302
-
-Archive member name at 19EA8: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3B size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000027
- DLL name : reader3.dll
- Symbol name : _EndReadFemSerialNum_R3@12
- Type : code
- Name type : ordinal
- Ordinal : 303
-
-Archive member name at 19F20: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 41 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002D
- DLL name : reader3.dll
- Symbol name : _EndReadFirmwarePartNumber_R3@12
- Type : code
- Name type : ordinal
- Ordinal : 304
-
-Archive member name at 19F9E: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3B size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000027
- DLL name : reader3.dll
- Symbol name : _EndReadFirmwareVersion@12
- Type : code
- Name type : ordinal
- Ordinal : 305
-
-Archive member name at 1A016: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3E size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002A
- DLL name : reader3.dll
- Symbol name : _EndReadFlashTestCounts_R3@24
- Type : code
- Name type : ordinal
- Ordinal : 306
-
-Archive member name at 1A090: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3A size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000026
- DLL name : reader3.dll
- Symbol name : _EndReadFpgaVersion_R3@16
- Type : code
- Name type : ordinal
- Ordinal : 307
-
-Archive member name at 1A106: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 31 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000001D
- DLL name : reader3.dll
- Symbol name : _EndReadGains@20
- Type : code
- Name type : ordinal
- Ordinal : 308
-
-Archive member name at 1A174: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 34 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000020
- DLL name : reader3.dll
- Symbol name : _EndReadGains_R3@20
- Type : code
- Name type : ordinal
- Ordinal : 309
-
-Archive member name at 1A1E4: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3A size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000026
- DLL name : reader3.dll
- Symbol name : _EndReadGraphicData_R3@12
- Type : code
- Name type : ordinal
- Ordinal : 310
-
-Archive member name at 1A25A: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3A size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000026
- DLL name : reader3.dll
- Symbol name : _EndReadGraphicSize_R3@12
- Type : code
- Name type : ordinal
- Ordinal : 311
-
-Archive member name at 1A2D0: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 45 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000031
- DLL name : reader3.dll
- Symbol name : _EndReadLastCalibrationProcess_R3@12
- Type : code
- Name type : ordinal
- Ordinal : 312
-
-Archive member name at 1A352: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 36 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000022
- DLL name : reader3.dll
- Symbol name : _EndReadMarkNumber@12
- Type : code
- Name type : ordinal
- Ordinal : 313
-
-Archive member name at 1A3C4: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3B size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000027
- DLL name : reader3.dll
- Symbol name : _EndReadMeasurandIds_R3@20
- Type : code
- Name type : ordinal
- Ordinal : 314
-
-Archive member name at 1A43C: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 38 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000024
- DLL name : reader3.dll
- Symbol name : _EndReadModelName_R3@12
- Type : code
- Name type : ordinal
- Ordinal : 315
-
-Archive member name at 1A4B0: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 49 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000035
- DLL name : reader3.dll
- Symbol name : _EndReadOffModeBatteryTestInterval_R3@12
- Type : code
- Name type : ordinal
- Ordinal : 316
-
-Archive member name at 1A536: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3D size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000029
- DLL name : reader3.dll
- Symbol name : _EndReadOffModeDisplay_R3@16
- Type : code
- Name type : ordinal
- Ordinal : 317
-
-Archive member name at 1A5B0: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3C size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000028
- DLL name : reader3.dll
- Symbol name : _EndReadPcbPartNumber_R3@12
- Type : code
- Name type : ordinal
- Ordinal : 318
-
-Archive member name at 1A628: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3A size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000026
- DLL name : reader3.dll
- Symbol name : _EndReadPcbRevision_R3@12
- Type : code
- Name type : ordinal
- Ordinal : 319
-
-Archive member name at 1A69E: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3B size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000027
- DLL name : reader3.dll
- Symbol name : _EndReadPcbSerialNum_R3@12
- Type : code
- Name type : ordinal
- Ordinal : 320
-
-Archive member name at 1A716: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 35 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000021
- DLL name : reader3.dll
- Symbol name : _EndReadPeakRates@20
- Type : code
- Name type : ordinal
- Ordinal : 321
-
-Archive member name at 1A788: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3E size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002A
- DLL name : reader3.dll
- Symbol name : _EndReadPulseModeEnable_R3@12
- Type : code
- Name type : ordinal
- Ordinal : 322
-
-Archive member name at 1A802: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 42 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002E
- DLL name : reader3.dll
- Symbol name : _EndReadPulseModeIndustrial_R3@12
- Type : code
- Name type : ordinal
- Ordinal : 323
-
-Archive member name at 1A880: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 41 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002D
- DLL name : reader3.dll
- Symbol name : _EndReadPulseModeThreshold_R3@12
- Type : code
- Name type : ordinal
- Ordinal : 324
-
-Archive member name at 1A8FE: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 4B size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000037
- DLL name : reader3.dll
- Symbol name : _EndReadPulsedModeOverrangeThreshold_R3@12
- Type : code
- Name type : ordinal
- Ordinal : 325
-
-Archive member name at 1A986: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 37 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000023
- DLL name : reader3.dll
- Symbol name : _EndReadQualityData@12
- Type : code
- Name type : ordinal
- Ordinal : 326
-
-Archive member name at 1A9FA: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 42 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002E
- DLL name : reader3.dll
- Symbol name : _EndReadQuickAccessDisplays_R3@20
- Type : code
- Name type : ordinal
- Ordinal : 327
-
-Archive member name at 1AA78: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 2F size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000001B
- DLL name : reader3.dll
- Symbol name : _EndReadRTC@12
- Type : code
- Name type : ordinal
- Ordinal : 328
-
-Archive member name at 1AAE4: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 43 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002F
- DLL name : reader3.dll
- Symbol name : _EndReadRadioFirmwareVersion_R3@12
- Type : code
- Name type : ordinal
- Ordinal : 329
-
-Archive member name at 1AB64: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3D size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000029
- DLL name : reader3.dll
- Symbol name : _EndReadRateOffPercentage@20
- Type : code
- Name type : ordinal
- Ordinal : 330
-
-Archive member name at 1ABDE: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 31 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000001D
- DLL name : reader3.dll
- Symbol name : _EndReadRates@24
- Type : code
- Name type : ordinal
- Ordinal : 331
-
-Archive member name at 1AC4C: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 42 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002E
- DLL name : reader3.dll
- Symbol name : _EndReadResponderTriggerUtc_R3@12
- Type : code
- Name type : ordinal
- Ordinal : 332
-
-Archive member name at 1ACCA: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3D size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000029
- DLL name : reader3.dll
- Symbol name : _EndReadReturnForReadTime@12
- Type : code
- Name type : ordinal
- Ordinal : 333
-
-Archive member name at 1AD44: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 36 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000022
- DLL name : reader3.dll
- Symbol name : _EndReadRunTime_R3@12
- Type : code
- Name type : ordinal
- Ordinal : 334
-
-Archive member name at 1ADB6: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 36 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000022
- DLL name : reader3.dll
- Symbol name : _EndReadScratchpad@24
- Type : code
- Name type : ordinal
- Ordinal : 335
-
-Archive member name at 1AE28: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3A size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000026
- DLL name : reader3.dll
- Symbol name : _EndReadScratchpadSize@12
- Type : code
- Name type : ordinal
- Ordinal : 336
-
-Archive member name at 1AE9E: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3C size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000028
- DLL name : reader3.dll
- Symbol name : _EndReadSelfTestInterval@12
- Type : code
- Name type : ordinal
- Ordinal : 337
-
-Archive member name at 1AF16: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 39 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000025
- DLL name : reader3.dll
- Symbol name : _EndReadSensitivities@20
- Type : code
- Name type : ordinal
- Ordinal : 338
-
-Archive member name at 1AF8C: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3C size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000028
- DLL name : reader3.dll
- Symbol name : _EndReadSensitivities_R3@20
- Type : code
- Name type : ordinal
- Ordinal : 339
-
-Archive member name at 1B004: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 46 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000032
- DLL name : reader3.dll
- Symbol name : _EndReadSnapshotAlarmThresholds_R3@12
- Type : code
- Name type : ordinal
- Ordinal : 340
-
-Archive member name at 1B086: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3F size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002B
- DLL name : reader3.dll
- Symbol name : _EndReadSnapshotCounters_R3@12
- Type : code
- Name type : ordinal
- Ordinal : 341
-
-Archive member name at 1B102: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 43 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002F
- DLL name : reader3.dll
- Symbol name : _EndReadSnapshotMeasurements_R3@12
- Type : code
- Name type : ordinal
- Ordinal : 342
-
-Archive member name at 1B182: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3E size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002A
- DLL name : reader3.dll
- Symbol name : _EndReadSnapshotSummary_R3@12
- Type : code
- Name type : ordinal
- Ordinal : 343
-
-Archive member name at 1B1FC: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 32 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000001E
- DLL name : reader3.dll
- Symbol name : _EndReadStatus@12
- Type : code
- Name type : ordinal
- Ordinal : 344
-
-Archive member name at 1B26A: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 37 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000023
- DLL name : reader3.dll
- Symbol name : _EndReadStayTime_R3@12
- Type : code
- Name type : ordinal
- Ordinal : 345
-
-Archive member name at 1B2DE: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 41 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002D
- DLL name : reader3.dll
- Symbol name : _EndReadSwitchOnFromButton_R3@12
- Type : code
- Name type : ordinal
- Ordinal : 346
-
-Archive member name at 1B35C: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3D size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000029
- DLL name : reader3.dll
- Symbol name : _EndReadTaskDatabaseId_R3@12
- Type : code
- Name type : ordinal
- Ordinal : 347
-
-Archive member name at 1B3D6: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 35 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000021
- DLL name : reader3.dll
- Symbol name : _EndReadTaskId_R3@12
- Type : code
- Name type : ordinal
- Ordinal : 348
-
-Archive member name at 1B448: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 41 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002D
- DLL name : reader3.dll
- Symbol name : _EndReadTelemetryAdvConfig_R3@12
- Type : code
- Name type : ordinal
- Ordinal : 349
-
-Archive member name at 1B4C6: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 42 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002E
- DLL name : reader3.dll
- Symbol name : _EndReadTelemetryAdvContent_R3@16
- Type : code
- Name type : ordinal
- Ordinal : 350
-
-Archive member name at 1B544: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 41 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002D
- DLL name : reader3.dll
- Symbol name : _EndReadTelemetryCxnConfig_R3@12
- Type : code
- Name type : ordinal
- Ordinal : 351
-
-Archive member name at 1B5C2: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3E size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002A
- DLL name : reader3.dll
- Symbol name : _EndReadTelemetryEnable_R3@16
- Type : code
- Name type : ordinal
- Ordinal : 352
-
-Archive member name at 1B63C: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3C size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000028
- DLL name : reader3.dll
- Symbol name : _EndReadTelemetryMode_R2@12
- Type : code
- Name type : ordinal
- Ordinal : 353
-
-Archive member name at 1B6B4: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 46 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000032
- DLL name : reader3.dll
- Symbol name : _EndReadTelemetryReportInterval_R3@12
- Type : code
- Name type : ordinal
- Ordinal : 354
-
-Archive member name at 1B736: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3F size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002B
- DLL name : reader3.dll
- Symbol name : _EndReadTelemetryTxPower_R3@16
- Type : code
- Name type : ordinal
- Ordinal : 355
-
-Archive member name at 1B7B2: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 36 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000022
- DLL name : reader3.dll
- Symbol name : _EndReadTotalDoses@24
- Type : code
- Name type : ordinal
- Ordinal : 356
-
-Archive member name at 1B824: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3D size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000029
- DLL name : reader3.dll
- Symbol name : _EndReadTriggeredDoses_R3@24
- Type : code
- Name type : ordinal
- Ordinal : 357
-
-Archive member name at 1B89E: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 34 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000020
- DLL name : reader3.dll
- Symbol name : _EndReadVoltages@20
- Type : code
- Name type : ordinal
- Ordinal : 358
-
-Archive member name at 1B90E: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3F size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002B
- DLL name : reader3.dll
- Symbol name : _EndReadWearerDatabaseId_R3@12
- Type : code
- Name type : ordinal
- Ordinal : 359
-
-Archive member name at 1B98A: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 34 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000020
- DLL name : reader3.dll
- Symbol name : _EndReadWearerId@12
- Type : code
- Name type : ordinal
- Ordinal : 360
-
-Archive member name at 1B9FA: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3F size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002B
- DLL name : reader3.dll
- Symbol name : _EndReadZoneAccessPermitted@12
- Type : code
- Name type : ordinal
- Ordinal : 361
-
-Archive member name at 1BA76: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3A size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000026
- DLL name : reader3.dll
- Symbol name : _EndReadZoneControlMap@12
- Type : code
- Name type : ordinal
- Ordinal : 362
-
-Archive member name at 1BAEC: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3A size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000026
- DLL name : reader3.dll
- Symbol name : _EndSetBaselineCounters@8
- Type : code
- Name type : ordinal
- Ordinal : 363
-
-Archive member name at 1BB62: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 38 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000024
- DLL name : reader3.dll
- Symbol name : _EndStartDetectorTest@8
- Type : code
- Name type : ordinal
- Ordinal : 364
-
-Archive member name at 1BBD6: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3A size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000026
- DLL name : reader3.dll
- Symbol name : _EndTriggerBacklight_R3@8
- Type : code
- Name type : ordinal
- Ordinal : 365
-
-Archive member name at 1BC4C: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3E size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002A
- DLL name : reader3.dll
- Symbol name : _EndTriggerResponderMode_R3@8
- Type : code
- Name type : ordinal
- Ordinal : 366
-
-Archive member name at 1BCC6: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3E size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002A
- DLL name : reader3.dll
- Symbol name : _EndValidateEpdOwnerKey_R3@12
- Type : code
- Name type : ordinal
- Ordinal : 367
-
-Archive member name at 1BD40: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 35 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000021
- DLL name : reader3.dll
- Symbol name : _EndWriteAccessKey@8
- Type : code
- Name type : ordinal
- Ordinal : 368
-
-Archive member name at 1BDB2: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 37 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000023
- DLL name : reader3.dll
- Symbol name : _EndWriteAccessLevel@8
- Type : code
- Name type : ordinal
- Ordinal : 369
-
-Archive member name at 1BE26: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 48 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000034
- DLL name : reader3.dll
- Symbol name : _EndWriteAccessPermissionsForLevel_R3@8
- Type : code
- Name type : ordinal
- Ordinal : 370
-
-Archive member name at 1BEAA: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 45 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000031
- DLL name : reader3.dll
- Symbol name : _EndWriteAlarmConfigurationLock_R3@8
- Type : code
- Name type : ordinal
- Ordinal : 371
-
-Archive member name at 1BF2C: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 41 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002D
- DLL name : reader3.dll
- Symbol name : _EndWriteAlarmConfiguration_R3@8
- Type : code
- Name type : ordinal
- Ordinal : 372
-
-Archive member name at 1BFAA: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3B size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000027
- DLL name : reader3.dll
- Symbol name : _EndWriteAlarmThresholds@8
- Type : code
- Name type : ordinal
- Ordinal : 373
-
-Archive member name at 1C022: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 42 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002E
- DLL name : reader3.dll
- Symbol name : _EndWriteBacklightBrightness_R3@8
- Type : code
- Name type : ordinal
- Ordinal : 374
-
-Archive member name at 1C0A0: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3E size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002A
- DLL name : reader3.dll
- Symbol name : _EndWriteBacklightEnable_R3@8
- Type : code
- Name type : ordinal
- Ordinal : 375
-
-Archive member name at 1C11A: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3E size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002A
- DLL name : reader3.dll
- Symbol name : _EndWriteBacklightPeriod_R3@8
- Type : code
- Name type : ordinal
- Ordinal : 376
-
-Archive member name at 1C194: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 44 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000030
- DLL name : reader3.dll
- Symbol name : _EndWriteBatteryCriticalTiming_R3@8
- Type : code
- Name type : ordinal
- Ordinal : 377
-
-Archive member name at 1C214: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3F size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002B
- DLL name : reader3.dll
- Symbol name : _EndWriteBatteryLowThreshold@8
- Type : code
- Name type : ordinal
- Ordinal : 378
-
-Archive member name at 1C290: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3F size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002B
- DLL name : reader3.dll
- Symbol name : _EndWriteBatteryTestInterval@8
- Type : code
- Name type : ordinal
- Ordinal : 379
-
-Archive member name at 1C30C: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 42 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002E
- DLL name : reader3.dll
- Symbol name : _EndWriteBatteryTypeOverride_R3@8
- Type : code
- Name type : ordinal
- Ordinal : 380
-
-Archive member name at 1C38A: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 36 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000022
- DLL name : reader3.dll
- Symbol name : _EndWriteCalDueDate@8
- Type : code
- Name type : ordinal
- Ordinal : 381
-
-Archive member name at 1C3FC: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 39 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000025
- DLL name : reader3.dll
- Symbol name : _EndWriteCalDueDate_R3@8
- Type : code
- Name type : ordinal
- Ordinal : 382
-
-Archive member name at 1C472: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3B size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000027
- DLL name : reader3.dll
- Symbol name : _EndWriteCalReference_R3@8
- Type : code
- Name type : ordinal
- Ordinal : 383
-
-Archive member name at 1C4EA: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 42 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002E
- DLL name : reader3.dll
- Symbol name : _EndWriteCalibrationFacility_R3@8
- Type : code
- Name type : ordinal
- Ordinal : 384
-
-Archive member name at 1C568: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3B size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000027
- DLL name : reader3.dll
- Symbol name : _EndWriteCapabilities_R3@8
- Type : code
- Name type : ordinal
- Ordinal : 385
-
-Archive member name at 1C5E0: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3A size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000026
- DLL name : reader3.dll
- Symbol name : _EndWriteChirpEnable_R3@8
- Type : code
- Name type : ordinal
- Ordinal : 386
-
-Archive member name at 1C656: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3C size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000028
- DLL name : reader3.dll
- Symbol name : _EndWriteChirpSensitivity@8
- Type : code
- Name type : ordinal
- Ordinal : 387
-
-Archive member name at 1C6CE: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3F size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002B
- DLL name : reader3.dll
- Symbol name : _EndWriteClearDoseOnSwitchOn@8
- Type : code
- Name type : ordinal
- Ordinal : 388
-
-Archive member name at 1C74A: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3E size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002A
- DLL name : reader3.dll
- Symbol name : _EndWriteDeadTimeFactors_R3@8
- Type : code
- Name type : ordinal
- Ordinal : 389
-
-Archive member name at 1C7C4: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3C size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000028
- DLL name : reader3.dll
- Symbol name : _EndWriteDebugRegister_R3@8
- Type : code
- Name type : ordinal
- Ordinal : 390
-
-Archive member name at 1C83C: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 41 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002D
- DLL name : reader3.dll
- Symbol name : _EndWriteDetectorTestLimits_R3@8
- Type : code
- Name type : ordinal
- Ordinal : 391
-
-Archive member name at 1C8BA: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 41 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002D
- DLL name : reader3.dll
- Symbol name : _EndWriteDetectorThresholds_R2@8
- Type : code
- Name type : ordinal
- Ordinal : 392
-
-Archive member name at 1C938: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 41 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002D
- DLL name : reader3.dll
- Symbol name : _EndWriteDetectorThresholds_R3@8
- Type : code
- Name type : ordinal
- Ordinal : 393
-
-Archive member name at 1C9B6: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 47 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000033
- DLL name : reader3.dll
- Symbol name : _EndWriteDisplayEnablePermissions_R3@8
- Type : code
- Name type : ordinal
- Ordinal : 394
-
-Archive member name at 1CA3A: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3D size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000029
- DLL name : reader3.dll
- Symbol name : _EndWriteDisplayEnables_R3@8
- Type : code
- Name type : ordinal
- Ordinal : 395
-
-Archive member name at 1CAB4: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3A size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000026
- DLL name : reader3.dll
- Symbol name : _EndWriteDisplayOptions@8
- Type : code
- Name type : ordinal
- Ordinal : 396
-
-Archive member name at 1CB2A: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 41 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002D
- DLL name : reader3.dll
- Symbol name : _EndWriteDisplayOptionsLock_R3@8
- Type : code
- Name type : ordinal
- Ordinal : 397
-
-Archive member name at 1CBA8: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3A size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000026
- DLL name : reader3.dll
- Symbol name : _EndWriteDisplayTimeout@8
- Type : code
- Name type : ordinal
- Ordinal : 398
-
-Archive member name at 1CC1E: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 47 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000033
- DLL name : reader3.dll
- Symbol name : _EndWriteDoseProfileDoseIncrement_R3@8
- Type : code
- Name type : ordinal
- Ordinal : 399
-
-Archive member name at 1CCA2: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3F size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002B
- DLL name : reader3.dll
- Symbol name : _EndWriteDoseProfileInterval@8
- Type : code
- Name type : ordinal
- Ordinal : 400
-
-Archive member name at 1CD1E: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 44 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000030
- DLL name : reader3.dll
- Symbol name : _EndWriteDoseProfileMeasurands_R3@8
- Type : code
- Name type : ordinal
- Ordinal : 401
-
-Archive member name at 1CD9E: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3F size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002B
- DLL name : reader3.dll
- Symbol name : _EndWriteDoseSaveInterval_R3@8
- Type : code
- Name type : ordinal
- Ordinal : 402
-
-Archive member name at 1CE1A: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3C size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000028
- DLL name : reader3.dll
- Symbol name : _EndWriteDoseWritableFlag@8
- Type : code
- Name type : ordinal
- Ordinal : 403
-
-Archive member name at 1CE92: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 31 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000001D
- DLL name : reader3.dll
- Symbol name : _EndWriteDoses@8
- Type : code
- Name type : ordinal
- Ordinal : 404
-
-Archive member name at 1CF00: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 32 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000001E
- DLL name : reader3.dll
- Symbol name : _EndWriteEEProm@8
- Type : code
- Name type : ordinal
- Ordinal : 405
-
-Archive member name at 1CF6E: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3C size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000028
- DLL name : reader3.dll
- Symbol name : _EndWriteEpdPartNumber_R3@8
- Type : code
- Name type : ordinal
- Ordinal : 406
-
-Archive member name at 1CFE6: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3A size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000026
- DLL name : reader3.dll
- Symbol name : _EndWriteEpdRevision_R3@8
- Type : code
- Name type : ordinal
- Ordinal : 407
-
-Archive member name at 1D05C: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3B size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000027
- DLL name : reader3.dll
- Symbol name : _EndWriteEpdSerialNumber@8
- Type : code
- Name type : ordinal
- Ordinal : 408
-
-Archive member name at 1D0D4: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3C size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000028
- DLL name : reader3.dll
- Symbol name : _EndWriteEventLogLevel_R3@8
- Type : code
- Name type : ordinal
- Ordinal : 409
-
-Archive member name at 1D14C: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3A size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000026
- DLL name : reader3.dll
- Symbol name : _EndWriteFactoryCalDate@8
- Type : code
- Name type : ordinal
- Ordinal : 410
-
-Archive member name at 1D1C2: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3E size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002A
- DLL name : reader3.dll
- Symbol name : _EndWriteFemSerialNumber_R3@8
- Type : code
- Name type : ordinal
- Ordinal : 411
-
-Archive member name at 1D23C: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3B size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000027
- DLL name : reader3.dll
- Symbol name : _EndWriteGainableFlag_R3@8
- Type : code
- Name type : ordinal
- Ordinal : 412
-
-Archive member name at 1D2B4: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 34 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000020
- DLL name : reader3.dll
- Symbol name : _EndWriteGains_R3@8
- Type : code
- Name type : ordinal
- Ordinal : 413
-
-Archive member name at 1D324: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 39 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000025
- DLL name : reader3.dll
- Symbol name : _EndWriteGoldenFlag_R3@8
- Type : code
- Name type : ordinal
- Ordinal : 414
-
-Archive member name at 1D39A: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3C size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000028
- DLL name : reader3.dll
- Symbol name : _EndWriteGraphicBitmap_R3@8
- Type : code
- Name type : ordinal
- Ordinal : 415
-
-Archive member name at 1D412: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 45 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000031
- DLL name : reader3.dll
- Symbol name : _EndWriteLastCalibrationProcess_R3@8
- Type : code
- Name type : ordinal
- Ordinal : 416
-
-Archive member name at 1D494: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 39 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000025
- DLL name : reader3.dll
- Symbol name : _EndWriteMarkNumber_R3@8
- Type : code
- Name type : ordinal
- Ordinal : 417
-
-Archive member name at 1D50A: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 38 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000024
- DLL name : reader3.dll
- Symbol name : _EndWriteModelName_R3@8
- Type : code
- Name type : ordinal
- Ordinal : 418
-
-Archive member name at 1D57E: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 40 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002C
- DLL name : reader3.dll
- Symbol name : _EndWriteNotCalibratedFlag_R3@8
- Type : code
- Name type : ordinal
- Ordinal : 419
-
-Archive member name at 1D5FA: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 49 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000035
- DLL name : reader3.dll
- Symbol name : _EndWriteOffModeBatteryTestInterval_R3@8
- Type : code
- Name type : ordinal
- Ordinal : 420
-
-Archive member name at 1D680: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3D size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000029
- DLL name : reader3.dll
- Symbol name : _EndWriteOffModeDisplay_R3@8
- Type : code
- Name type : ordinal
- Ordinal : 421
-
-Archive member name at 1D6FA: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3C size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000028
- DLL name : reader3.dll
- Symbol name : _EndWritePcbPartNumber_R3@8
- Type : code
- Name type : ordinal
- Ordinal : 422
-
-Archive member name at 1D772: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3A size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000026
- DLL name : reader3.dll
- Symbol name : _EndWritePcbRevision_R3@8
- Type : code
- Name type : ordinal
- Ordinal : 423
-
-Archive member name at 1D7E8: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3E size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002A
- DLL name : reader3.dll
- Symbol name : _EndWritePcbSerialNumber_R3@8
- Type : code
- Name type : ordinal
- Ordinal : 424
-
-Archive member name at 1D862: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3E size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002A
- DLL name : reader3.dll
- Symbol name : _EndWritePulseModeEnable_R3@8
- Type : code
- Name type : ordinal
- Ordinal : 425
-
-Archive member name at 1D8DC: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 42 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002E
- DLL name : reader3.dll
- Symbol name : _EndWritePulseModeIndustrial_R3@8
- Type : code
- Name type : ordinal
- Ordinal : 426
-
-Archive member name at 1D95A: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 41 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002D
- DLL name : reader3.dll
- Symbol name : _EndWritePulseModeThreshold_R3@8
- Type : code
- Name type : ordinal
- Ordinal : 427
-
-Archive member name at 1D9D8: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 4B size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000037
- DLL name : reader3.dll
- Symbol name : _EndWritePulsedModeOverrangeThreshold_R3@8
- Type : code
- Name type : ordinal
- Ordinal : 428
-
-Archive member name at 1DA60: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 42 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002E
- DLL name : reader3.dll
- Symbol name : _EndWriteQuickAccessDisplays_R3@8
- Type : code
- Name type : ordinal
- Ordinal : 429
-
-Archive member name at 1DADE: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 32 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000001E
- DLL name : reader3.dll
- Symbol name : _EndWriteRTC_R3@8
- Type : code
- Name type : ordinal
- Ordinal : 430
-
-Archive member name at 1DB4C: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3D size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000029
- DLL name : reader3.dll
- Symbol name : _EndWriteRateOffPercentage@8
- Type : code
- Name type : ordinal
- Ordinal : 431
-
-Archive member name at 1DBC6: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3D size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000029
- DLL name : reader3.dll
- Symbol name : _EndWriteReturnForReadTime@8
- Type : code
- Name type : ordinal
- Ordinal : 432
-
-Archive member name at 1DC40: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 36 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000022
- DLL name : reader3.dll
- Symbol name : _EndWriteScratchpad@8
- Type : code
- Name type : ordinal
- Ordinal : 433
-
-Archive member name at 1DCB2: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3C size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000028
- DLL name : reader3.dll
- Symbol name : _EndWriteSelfTestInterval@8
- Type : code
- Name type : ordinal
- Ordinal : 434
-
-Archive member name at 1DD2A: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3C size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000028
- DLL name : reader3.dll
- Symbol name : _EndWriteSensitivities_R2@8
- Type : code
- Name type : ordinal
- Ordinal : 435
-
-Archive member name at 1DDA2: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3C size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000028
- DLL name : reader3.dll
- Symbol name : _EndWriteSensitivities_R3@8
- Type : code
- Name type : ordinal
- Ordinal : 436
-
-Archive member name at 1DE1A: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 37 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000023
- DLL name : reader3.dll
- Symbol name : _EndWriteStayTime_R3@8
- Type : code
- Name type : ordinal
- Ordinal : 437
-
-Archive member name at 1DE8E: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 41 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002D
- DLL name : reader3.dll
- Symbol name : _EndWriteSwitchOnFromButton_R3@8
- Type : code
- Name type : ordinal
- Ordinal : 438
-
-Archive member name at 1DF0C: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3D size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000029
- DLL name : reader3.dll
- Symbol name : _EndWriteTaskDatabaseId_R3@8
- Type : code
- Name type : ordinal
- Ordinal : 439
-
-Archive member name at 1DF86: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 35 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000021
- DLL name : reader3.dll
- Symbol name : _EndWriteTaskId_R3@8
- Type : code
- Name type : ordinal
- Ordinal : 440
-
-Archive member name at 1DFF8: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 41 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002D
- DLL name : reader3.dll
- Symbol name : _EndWriteTelemetryAdvConfig_R3@8
- Type : code
- Name type : ordinal
- Ordinal : 441
-
-Archive member name at 1E076: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 42 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002E
- DLL name : reader3.dll
- Symbol name : _EndWriteTelemetryAdvContent_R3@8
- Type : code
- Name type : ordinal
- Ordinal : 442
-
-Archive member name at 1E0F4: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 41 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002D
- DLL name : reader3.dll
- Symbol name : _EndWriteTelemetryCxnConfig_R3@8
- Type : code
- Name type : ordinal
- Ordinal : 443
-
-Archive member name at 1E172: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3E size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002A
- DLL name : reader3.dll
- Symbol name : _EndWriteTelemetryEnable_R3@8
- Type : code
- Name type : ordinal
- Ordinal : 444
-
-Archive member name at 1E1EC: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3C size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000028
- DLL name : reader3.dll
- Symbol name : _EndWriteTelemetryMode_R2@8
- Type : code
- Name type : ordinal
- Ordinal : 445
-
-Archive member name at 1E264: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 46 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000032
- DLL name : reader3.dll
- Symbol name : _EndWriteTelemetryReportInterval_R3@8
- Type : code
- Name type : ordinal
- Ordinal : 446
-
-Archive member name at 1E2E6: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3F size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002B
- DLL name : reader3.dll
- Symbol name : _EndWriteTelemetryTxPower_R3@8
- Type : code
- Name type : ordinal
- Ordinal : 447
-
-Archive member name at 1E362: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 36 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000022
- DLL name : reader3.dll
- Symbol name : _EndWriteTotalDoses@8
- Type : code
- Name type : ordinal
- Ordinal : 448
-
-Archive member name at 1E3D4: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3D size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000029
- DLL name : reader3.dll
- Symbol name : _EndWriteTriggeredDoses_R3@8
- Type : code
- Name type : ordinal
- Ordinal : 449
-
-Archive member name at 1E44E: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3F size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000002B
- DLL name : reader3.dll
- Symbol name : _EndWriteWearerDatabaseId_R3@8
- Type : code
- Name type : ordinal
- Ordinal : 450
-
-Archive member name at 1E4CA: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 34 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000020
- DLL name : reader3.dll
- Symbol name : _EndWriteWearerId@8
- Type : code
- Name type : ordinal
- Ordinal : 451
-
-Archive member name at 1E53A: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3A size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000026
- DLL name : reader3.dll
- Symbol name : _EndWriteZoneControlMap@8
- Type : code
- Name type : ordinal
- Ordinal : 452
-
-Archive member name at 1E5B0: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 36 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000022
- DLL name : reader3.dll
- Symbol name : _GetDiscoveredEpds@16
- Type : code
- Name type : ordinal
- Ordinal : 453
-
-Archive member name at 1E622: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 37 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000023
- DLL name : reader3.dll
- Symbol name : _GetDiscoveryTimeout@8
- Type : code
- Name type : ordinal
- Ordinal : 454
-
-Archive member name at 1E696: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 39 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000025
- DLL name : reader3.dll
- Symbol name : _GetDiscoveryTimeslots@8
- Type : code
- Name type : ordinal
- Ordinal : 455
-
-Archive member name at 1E70C: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 32 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000001E
- DLL name : reader3.dll
- Symbol name : _GetDllLogLevel@8
- Type : code
- Name type : ordinal
- Ordinal : 456
-
-Archive member name at 1E77A: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 30 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000001C
- DLL name : reader3.dll
- Symbol name : _GetErrorCode@0
- Type : code
- Name type : ordinal
- Ordinal : 457
-
-Archive member name at 1E7E6: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3C size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000028
- DLL name : reader3.dll
- Symbol name : _GetMultipleDiscoveryMode@8
- Type : code
- Name type : ordinal
- Ordinal : 458
-
-Archive member name at 1E85E: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 36 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000022
- DLL name : reader3.dll
- Symbol name : _GetResponseTimeout@8
- Type : code
- Name type : ordinal
- Ordinal : 459
-
-Archive member name at 1E8D0: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 31 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000001D
- DLL name : reader3.dll
- Symbol name : _GetRetryCount@8
- Type : code
- Name type : ordinal
- Ordinal : 460
-
-Archive member name at 1E93E: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 2E size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000001A
- DLL name : reader3.dll
- Symbol name : _OpenReader@8
- Type : code
- Name type : ordinal
- Ordinal : 461
-
-Archive member name at 1E9A8: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 36 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000022
- DLL name : reader3.dll
- Symbol name : _SetConnectCallback@8
- Type : code
- Name type : ordinal
- Ordinal : 462
-
-Archive member name at 1EA1A: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 39 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000025
- DLL name : reader3.dll
- Symbol name : _SetDisconnectCallback@8
- Type : code
- Name type : ordinal
- Ordinal : 463
-
-Archive member name at 1EA90: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3C size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000028
- DLL name : reader3.dll
- Symbol name : _SetDiscoveryCacheTimeout@8
- Type : code
- Name type : ordinal
- Ordinal : 464
-
-Archive member name at 1EB08: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 39 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000025
- DLL name : reader3.dll
- Symbol name : _SetDiscoveryTimeslots@8
- Type : code
- Name type : ordinal
- Ordinal : 465
-
-Archive member name at 1EB7E: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 32 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000001E
- DLL name : reader3.dll
- Symbol name : _SetDllLogLevel@8
- Type : code
- Name type : ordinal
- Ordinal : 466
-
-Archive member name at 1EBEC: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 3C size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000028
- DLL name : reader3.dll
- Symbol name : _SetMultipleDiscoveryMode@8
- Type : code
- Name type : ordinal
- Ordinal : 467
-
-Archive member name at 1EC64: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 36 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000022
- DLL name : reader3.dll
- Symbol name : _SetRemovedCallback@8
- Type : code
- Name type : ordinal
- Ordinal : 468
-
-Archive member name at 1ECD6: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 36 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 00000022
- DLL name : reader3.dll
- Symbol name : _SetResponseTimeout@8
- Type : code
- Name type : ordinal
- Ordinal : 469
-
-Archive member name at 1ED48: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 31 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000001D
- DLL name : reader3.dll
- Symbol name : _SetRetryCount@8
- Type : code
- Name type : ordinal
- Ordinal : 470
-
-Archive member name at 1EDB6: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 32 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000001E
- DLL name : reader3.dll
- Symbol name : _StartDiscovery@8
- Type : code
- Name type : ordinal
- Ordinal : 471
-
-Archive member name at 1EE24: reader3.dll/
-608BCB5D time/date Fri Apr 30 11:18:21 2021
- uid
- gid
- 0 mode
- 31 size
-correct header end
-
- Version : 0
- Machine : 14C (x86)
- TimeDateStamp: 608BCB5D Fri Apr 30 11:18:21 2021
- SizeOfData : 0000001D
- DLL name : reader3.dll
- Symbol name : _StopDiscovery@4
- Type : code
- Name type : ordinal
- Ordinal : 472
-
- Exports
-
- ordinal name
-
- 1 _AwaitRemoval@20
- 2 _BeginClearAllStatus@8
- 3 _BeginClearDose@8
- 4 _BeginClearDoseProfile_R3@8
- 5 _BeginClearEEPROM_R3@8
- 6 _BeginClearFaultStatus@8
- 7 _BeginClearGraphic_R3@12
- 8 _BeginClearLatchedAlarms@8
- 9 _BeginClearPeakRates@8
- 10 _BeginClearScratchPad@12
- 11 _BeginClearTotalDose@8
- 12 _BeginClearWearerOrTaskId_R3@16
- 13 _BeginDeissueEPD@8
- 14 _BeginEnableCovertMode_R3@12
- 15 _BeginEnableDeepSleep_R3@12
- 16 _BeginEnableManufacturerLockout_R3@12
- 17 _BeginEnableProtectedSession_R3@12
- 18 _BeginEnableResponderMode_R3@12
- 19 _BeginEpdOnOff@12
- 20 _BeginInitiateFirmwareUpdate_R3@8
- 21 _BeginIssueEPD@8
- 22 _BeginReadAccessPermissionsForLevel_R3@12
- 23 _BeginReadAlarmConfiguration@16
- 24 _BeginReadAlarmConfigurationLock_R3@8
- 25 _BeginReadAlarmConfiguration_R3@16
- 26 _BeginReadAlarmThresholds@20
- 27 _BeginReadBacklightBrightness_R3@8
- 28 _BeginReadBacklightEnable_R3@8
- 29 _BeginReadBacklightPeriod_R3@8
- 30 _BeginReadBaselineCounts@8
- 31 _BeginReadBatteryCriticalTiming_R3@8
- 32 _BeginReadBatteryLowThreshold@12
- 33 _BeginReadBatteryTestInterval@8
- 34 _BeginReadBatteryTypeFitted_R3@8
- 35 _BeginReadBatteryTypeOverride_R3@8
- 36 _BeginReadCalDueDate@8
- 37 _BeginReadCalDueDate_R3@8
- 38 _BeginReadCalReference_R3@8
- 39 _BeginReadCalibrationData_R2@8
- 40 _BeginReadCalibrationFacility_R3@8
- 41 _BeginReadCapabilities@8
- 42 _BeginReadChirpEnable_R3@8
- 43 _BeginReadChirpSensitivity@8
- 44 _BeginReadCounts@16
- 45 _BeginReadCurrentAccessLevel@8
- 46 _BeginReadDeadTimeFactors_R3@16
- 47 _BeginReadDebugRegister_R3@12
- 48 _BeginReadDetectorTestLimits_R3@16
- 49 _BeginReadDetectorThresholdLimits_R3@16
- 50 _BeginReadDetectorThresholds@16
- 51 _BeginReadDetectorThresholds_R3@16
- 52 _BeginReadDisplayCapability_R3@12
- 53 _BeginReadDisplayEnablePermissions_R3@12
- 54 _BeginReadDisplayEnables_R3@16
- 55 _BeginReadDisplayOptions@8
- 56 _BeginReadDisplayOptionsLock_R3@8
- 57 _BeginReadDisplayTimeout@8
- 58 _BeginReadDoseProfileByIndex_R3@16
- 59 _BeginReadDoseProfileByTime@16
- 60 _BeginReadDoseProfileConfiguration_R3@8
- 61 _BeginReadDoseProfileInterval@8
- 62 _BeginReadDoseSaveInterval_R3@8
- 63 _BeginReadDoses@16
- 64 _BeginReadEEProm@16
- 65 _BeginReadEpdIdentities@8
- 66 _BeginReadEpdPartNumber_R3@8
- 67 _BeginReadEpdRevision_R3@8
- 68 _BeginReadEpdSerialNum@8
- 69 _BeginReadEpdType@8
- 70 _BeginReadEventLogLevel_R3@8
- 71 _BeginReadEventsByIndex@16
- 72 _BeginReadFactoryCalDate@8
- 73 _BeginReadFemSerialNum_R3@8
- 74 _BeginReadFirmwarePartNumber_R3@8
- 75 _BeginReadFirmwareVersion@8
- 76 _BeginReadFlashTestCounts_R3@16
- 77 _BeginReadFpgaVersion_R3@8
- 78 _BeginReadGains@16
- 79 _BeginReadGains_R3@16
- 80 _BeginReadGraphicData_R3@12
- 81 _BeginReadGraphicSize_R3@12
- 82 _BeginReadLastCalibrationProcess_R3@8
- 83 _BeginReadMarkNumber@8
- 84 _BeginReadMeasurandIds_R3@8
- 85 _BeginReadModelName_R3@8
- 86 _BeginReadOffModeBatteryTestInterval_R3@8
- 87 _BeginReadOffModeDisplay_R3@8
- 88 _BeginReadPcbPartNumber_R3@8
- 89 _BeginReadPcbRevision_R3@8
- 90 _BeginReadPcbSerialNum_R3@8
- 91 _BeginReadPeakRates@16
- 92 _BeginReadPulseModeEnable_R3@8
- 93 _BeginReadPulseModeIndustrial_R3@8
- 94 _BeginReadPulseModeThreshold_R3@8
- 95 _BeginReadPulsedModeOverrangeThreshold_R3@8
- 96 _BeginReadQualityData@8
- 97 _BeginReadQuickAccessDisplays_R3@16
- 98 _BeginReadRTC@8
- 99 _BeginReadRadioFirmwareVersion_R3@8
- 100 _BeginReadRateOffPercentage@16
- 101 _BeginReadRates@16
- 102 _BeginReadResponderTriggerUtc_R3@8
- 103 _BeginReadReturnForReadTime@8
- 104 _BeginReadRunTime_R3@8
- 105 _BeginReadScratchPad@16
- 106 _BeginReadScratchpadSize@8
- 107 _BeginReadSelfTestInterval@8
- 108 _BeginReadSensitivities@16
- 109 _BeginReadSensitivities_R3@16
- 110 _BeginReadSnapshotAlarmThresholds_R3@12
- 111 _BeginReadSnapshotCounters_R3@12
- 112 _BeginReadSnapshotMeasurements_R3@12
- 113 _BeginReadSnapshotSummary_R3@12
- 114 _BeginReadStatus@8
- 115 _BeginReadStayTime_R3@8
- 116 _BeginReadSwitchOnFromButton_R3@8
- 117 _BeginReadTaskDatabaseId_R3@8
- 118 _BeginReadTaskId_R3@12
- 119 _BeginReadTelemetryAdvConfig_R3@12
- 120 _BeginReadTelemetryAdvContent_R3@12
- 121 _BeginReadTelemetryCxnConfig_R3@8
- 122 _BeginReadTelemetryEnable_R3@12
- 123 _BeginReadTelemetryMode_R2@8
- 124 _BeginReadTelemetryReportInterval_R3@8
- 125 _BeginReadTelemetryTxPower_R3@12
- 126 _BeginReadTotalDoses@16
- 127 _BeginReadTriggeredDoses_R3@16
- 128 _BeginReadVoltages@8
- 129 _BeginReadWearerDatabaseId_R3@8
- 130 _BeginReadWearerId@12
- 131 _BeginReadZoneAccessPermitted@12
- 132 _BeginReadZoneControlMap@8
- 133 _BeginSetBaselineCounters@8
- 134 _BeginStartDetectorTest@8
- 135 _BeginTriggerBacklight_R3@8
- 136 _BeginTriggerResponderMode_R3@8
- 137 _BeginValidateEpdOwnerKey_R3@12
- 138 _BeginWriteAccessKey@20
- 139 _BeginWriteAccessLevel@20
- 140 _BeginWriteAccessPermissionsForLevel_R3@20
- 141 _BeginWriteAlarmConfigurationLock_R3@16
- 142 _BeginWriteAlarmConfiguration_R3@16
- 143 _BeginWriteAlarmThresholds@20
- 144 _BeginWriteBacklightBrightness_R3@12
- 145 _BeginWriteBacklightEnable_R3@12
- 146 _BeginWriteBacklightPeriod_R3@12
- 147 _BeginWriteBatteryCriticalTiming_R3@16
- 148 _BeginWriteBatteryLowThreshold@16
- 149 _BeginWriteBatteryTestInterval@12
- 150 _BeginWriteBatteryTypeOverride_R3@12
- 151 _BeginWriteCalDueDate@12
- 152 _BeginWriteCalDueDate_R3@12
- 153 _BeginWriteCalReference_R3@12
- 154 _BeginWriteCalibrationFacility_R3@16
- 155 _BeginWriteCapabilities_R3@12
- 156 _BeginWriteChirpEnable_R3@12
- 157 _BeginWriteChirpSensitivity@12
- 158 _BeginWriteClearDoseOnSwitchOn@12
- 159 _BeginWriteDeadTimeFactors_R3@16
- 160 _BeginWriteDebugRegister_R3@16
- 161 _BeginWriteDetectorTestLimits_R3@16
- 162 _BeginWriteDetectorThresholds_R2@24
- 163 _BeginWriteDetectorThresholds_R3@16
- 164 _BeginWriteDisplayEnablePermissions_R3@20
- 165 _BeginWriteDisplayEnables_R3@16
- 166 _BeginWriteDisplayOptions@16
- 167 _BeginWriteDisplayOptionsLock_R3@16
- 168 _BeginWriteDisplayTimeout@12
- 169 _BeginWriteDoseProfileDoseIncrement_R3@12
- 170 _BeginWriteDoseProfileInterval@12
- 171 _BeginWriteDoseProfileMeasurands_R3@16
- 172 _BeginWriteDoseSaveInterval_R3@12
- 173 _BeginWriteDoseWritableFlag@12
- 174 _BeginWriteDoses@16
- 175 _BeginWriteEEProm@20
- 176 _BeginWriteEpdPartNumber_R3@12
- 177 _BeginWriteEpdRevision_R3@12
- 178 _BeginWriteEpdSerialNumber@12
- 179 _BeginWriteEventLogLevel_R3@12
- 180 _BeginWriteFactoryCalDate@12
- 181 _BeginWriteFemSerialNumber_R3@12
- 182 _BeginWriteGainableFlag_R3@12
- 183 _BeginWriteGains_R3@16
- 184 _BeginWriteGoldenFlag_R3@12
- 185 _BeginWriteGraphicBitmap_R3@352
- 186 _BeginWriteLastCalibrationProcess_R3@20
- 187 _BeginWriteMarkNumber_R3@12
- 188 _BeginWriteModelName_R3@40
- 189 _BeginWriteNotCalibratedFlag_R3@12
- 190 _BeginWriteOffModeBatteryTestInterval_R3@12
- 191 _BeginWriteOffModeDisplay_R3@16
- 192 _BeginWritePcbPartNumber_R3@12
- 193 _BeginWritePcbRevision_R3@12
- 194 _BeginWritePcbSerialNumber_R3@12
- 195 _BeginWritePulseModeEnable_R3@12
- 196 _BeginWritePulseModeIndustrial_R3@12
- 197 _BeginWritePulseModeThreshold_R3@12
- 198 _BeginWritePulsedModeOverrangeThreshold_R3@12
- 199 _BeginWriteQuickAccessDisplays_R3@16
- 200 _BeginWriteRTC_R3@12
- 201 _BeginWriteRateOffPercentage@16
- 202 _BeginWriteReturnForReadTime@12
- 203 _BeginWriteScratchPad@20
- 204 _BeginWriteSelfTestInterval@12
- 205 _BeginWriteSensitivities_R2@32
- 206 _BeginWriteSensitivities_R3@16
- 207 _BeginWriteStayTime_R3@12
- 208 _BeginWriteSwitchOnFromButton_R3@12
- 209 _BeginWriteTaskDatabaseId_R3@24
- 210 _BeginWriteTaskId_R3@76
- 211 _BeginWriteTelemetryAdvConfig_R3@12
- 212 _BeginWriteTelemetryAdvContent_R3@16
- 213 _BeginWriteTelemetryCxnConfig_R3@12
- 214 _BeginWriteTelemetryEnable_R3@16
- 215 _BeginWriteTelemetryMode_R2@12
- 216 _BeginWriteTelemetryReportInterval_R3@12
- 217 _BeginWriteTelemetryTxPower_R3@16
- 218 _BeginWriteTotalDoses@16
- 219 _BeginWriteTriggeredDoses_R3@16
- 220 _BeginWriteWearerDatabaseId_R3@24
- 221 _BeginWriteWearerId@76
- 222 _BeginWriteZoneControlMap@16
- 223 _CleanUpReadDoseProfile@4
- 224 _CleanUpReadEventLog@4
- 225 _CloseReader@4
- 226 _Commit@4
- 227 _Connect@20
- 228 _CreateReaderInterface@0
- 229 _DestroyReaderInterface@4
- 230 _Disconnect@4
- 231 _DisconnectAndNotify@12
- 232 _EndClearAllStatus@8
- 233 _EndClearDose@8
- 234 _EndClearDoseProfile_R3@8
- 235 _EndClearEEPROM_R3@8
- 236 _EndClearFaultStatus@8
- 237 _EndClearGraphic_R3@8
- 238 _EndClearLatchedAlarms@8
- 239 _EndClearPeakRates@8
- 240 _EndClearScratchpad@8
- 241 _EndClearTotalDose@8
- 242 _EndClearWearerOrTaskId_R3@8
- 243 _EndDeissueEPD@8
- 244 _EndEnableCovertMode_R3@8
- 245 _EndEnableDeepSleep_R3@8
- 246 _EndEnableManufacturerLockout_R3@8
- 247 _EndEnableProtectedSession_R3@8
- 248 _EndEnableResponderMode_R3@8
- 249 _EndEpdOnOff@8
- 250 _EndInitiateFirmwareUpdate_R3@8
- 251 _EndIssueEPD@8
- 252 _EndReadAccessPermissionsForLevel_R3@20
- 253 _EndReadAlarmConfiguration@20
- 254 _EndReadAlarmConfigurationLock_R3@20
- 255 _EndReadAlarmConfiguration_R3@20
- 256 _EndReadAlarmThresholds@12
- 257 _EndReadBacklightBrightness_R3@12
- 258 _EndReadBacklightEnable_R3@12
- 259 _EndReadBacklightPeriod_R3@12
- 260 _EndReadBaselineCounts@24
- 261 _EndReadBatteryCriticalTiming_R3@16
- 262 _EndReadBatteryLowThreshold@16
- 263 _EndReadBatteryTestInterval@12
- 264 _EndReadBatteryTypeFitted_R3@12
- 265 _EndReadBatteryTypeOverride_R3@12
- 266 _EndReadCalDueDate@12
- 267 _EndReadCalDueDate_R3@12
- 268 _EndReadCalReference_R3@12
- 269 _EndReadCalibrationData_R2@48
- 270 _EndReadCalibrationFacility_R3@12
- 271 _EndReadCapabilities@12
- 272 _EndReadChirpEnable_R3@12
- 273 _EndReadChirpSensitivity@12
- 274 _EndReadCounts@28
- 275 _EndReadCurrentAccessLevel@12
- 276 _EndReadDeadTimeFactors_R3@20
- 277 _EndReadDebugRegister_R3@16
- 278 _EndReadDetectorTestLimits_R3@20
- 279 _EndReadDetectorThresholdLimits_R3@20
- 280 _EndReadDetectorThresholds@20
- 281 _EndReadDetectorThresholds_R3@20
- 282 _EndReadDisplayCapability_R3@24
- 283 _EndReadDisplayEnablePermissions_R3@24
- 284 _EndReadDisplayEnables_R3@20
- 285 _EndReadDisplayOptions@12
- 286 _EndReadDisplayOptionsLock_R3@12
- 287 _EndReadDisplayTimeout@12
- 288 _EndReadDoseProfileByIndex_R3@24
- 289 _EndReadDoseProfileByTime@16
- 290 _EndReadDoseProfileConfiguration_R3@12
- 291 _EndReadDoseProfileInterval@12
- 292 _EndReadDoseSaveInterval_R3@12
- 293 _EndReadDoses@24
- 294 _EndReadEEProm@24
- 295 _EndReadEpdIdentities@36
- 296 _EndReadEpdPartNumber_R3@12
- 297 _EndReadEpdRevision_R3@12
- 298 _EndReadEpdSerialNum@12
- 299 _EndReadEpdType@12
- 300 _EndReadEventLogLevel_R3@12
- 301 _EndReadEventsByIndex@16
- 302 _EndReadFactoryCalDate@12
- 303 _EndReadFemSerialNum_R3@12
- 304 _EndReadFirmwarePartNumber_R3@12
- 305 _EndReadFirmwareVersion@12
- 306 _EndReadFlashTestCounts_R3@24
- 307 _EndReadFpgaVersion_R3@16
- 308 _EndReadGains@20
- 309 _EndReadGains_R3@20
- 310 _EndReadGraphicData_R3@12
- 311 _EndReadGraphicSize_R3@12
- 312 _EndReadLastCalibrationProcess_R3@12
- 313 _EndReadMarkNumber@12
- 314 _EndReadMeasurandIds_R3@20
- 315 _EndReadModelName_R3@12
- 316 _EndReadOffModeBatteryTestInterval_R3@12
- 317 _EndReadOffModeDisplay_R3@16
- 318 _EndReadPcbPartNumber_R3@12
- 319 _EndReadPcbRevision_R3@12
- 320 _EndReadPcbSerialNum_R3@12
- 321 _EndReadPeakRates@20
- 322 _EndReadPulseModeEnable_R3@12
- 323 _EndReadPulseModeIndustrial_R3@12
- 324 _EndReadPulseModeThreshold_R3@12
- 325 _EndReadPulsedModeOverrangeThreshold_R3@12
- 326 _EndReadQualityData@12
- 327 _EndReadQuickAccessDisplays_R3@20
- 328 _EndReadRTC@12
- 329 _EndReadRadioFirmwareVersion_R3@12
- 330 _EndReadRateOffPercentage@20
- 331 _EndReadRates@24
- 332 _EndReadResponderTriggerUtc_R3@12
- 333 _EndReadReturnForReadTime@12
- 334 _EndReadRunTime_R3@12
- 335 _EndReadScratchpad@24
- 336 _EndReadScratchpadSize@12
- 337 _EndReadSelfTestInterval@12
- 338 _EndReadSensitivities@20
- 339 _EndReadSensitivities_R3@20
- 340 _EndReadSnapshotAlarmThresholds_R3@12
- 341 _EndReadSnapshotCounters_R3@12
- 342 _EndReadSnapshotMeasurements_R3@12
- 343 _EndReadSnapshotSummary_R3@12
- 344 _EndReadStatus@12
- 345 _EndReadStayTime_R3@12
- 346 _EndReadSwitchOnFromButton_R3@12
- 347 _EndReadTaskDatabaseId_R3@12
- 348 _EndReadTaskId_R3@12
- 349 _EndReadTelemetryAdvConfig_R3@12
- 350 _EndReadTelemetryAdvContent_R3@16
- 351 _EndReadTelemetryCxnConfig_R3@12
- 352 _EndReadTelemetryEnable_R3@16
- 353 _EndReadTelemetryMode_R2@12
- 354 _EndReadTelemetryReportInterval_R3@12
- 355 _EndReadTelemetryTxPower_R3@16
- 356 _EndReadTotalDoses@24
- 357 _EndReadTriggeredDoses_R3@24
- 358 _EndReadVoltages@20
- 359 _EndReadWearerDatabaseId_R3@12
- 360 _EndReadWearerId@12
- 361 _EndReadZoneAccessPermitted@12
- 362 _EndReadZoneControlMap@12
- 363 _EndSetBaselineCounters@8
- 364 _EndStartDetectorTest@8
- 365 _EndTriggerBacklight_R3@8
- 366 _EndTriggerResponderMode_R3@8
- 367 _EndValidateEpdOwnerKey_R3@12
- 368 _EndWriteAccessKey@8
- 369 _EndWriteAccessLevel@8
- 370 _EndWriteAccessPermissionsForLevel_R3@8
- 371 _EndWriteAlarmConfigurationLock_R3@8
- 372 _EndWriteAlarmConfiguration_R3@8
- 373 _EndWriteAlarmThresholds@8
- 374 _EndWriteBacklightBrightness_R3@8
- 375 _EndWriteBacklightEnable_R3@8
- 376 _EndWriteBacklightPeriod_R3@8
- 377 _EndWriteBatteryCriticalTiming_R3@8
- 378 _EndWriteBatteryLowThreshold@8
- 379 _EndWriteBatteryTestInterval@8
- 380 _EndWriteBatteryTypeOverride_R3@8
- 381 _EndWriteCalDueDate@8
- 382 _EndWriteCalDueDate_R3@8
- 383 _EndWriteCalReference_R3@8
- 384 _EndWriteCalibrationFacility_R3@8
- 385 _EndWriteCapabilities_R3@8
- 386 _EndWriteChirpEnable_R3@8
- 387 _EndWriteChirpSensitivity@8
- 388 _EndWriteClearDoseOnSwitchOn@8
- 389 _EndWriteDeadTimeFactors_R3@8
- 390 _EndWriteDebugRegister_R3@8
- 391 _EndWriteDetectorTestLimits_R3@8
- 392 _EndWriteDetectorThresholds_R2@8
- 393 _EndWriteDetectorThresholds_R3@8
- 394 _EndWriteDisplayEnablePermissions_R3@8
- 395 _EndWriteDisplayEnables_R3@8
- 396 _EndWriteDisplayOptions@8
- 397 _EndWriteDisplayOptionsLock_R3@8
- 398 _EndWriteDisplayTimeout@8
- 399 _EndWriteDoseProfileDoseIncrement_R3@8
- 400 _EndWriteDoseProfileInterval@8
- 401 _EndWriteDoseProfileMeasurands_R3@8
- 402 _EndWriteDoseSaveInterval_R3@8
- 403 _EndWriteDoseWritableFlag@8
- 404 _EndWriteDoses@8
- 405 _EndWriteEEProm@8
- 406 _EndWriteEpdPartNumber_R3@8
- 407 _EndWriteEpdRevision_R3@8
- 408 _EndWriteEpdSerialNumber@8
- 409 _EndWriteEventLogLevel_R3@8
- 410 _EndWriteFactoryCalDate@8
- 411 _EndWriteFemSerialNumber_R3@8
- 412 _EndWriteGainableFlag_R3@8
- 413 _EndWriteGains_R3@8
- 414 _EndWriteGoldenFlag_R3@8
- 415 _EndWriteGraphicBitmap_R3@8
- 416 _EndWriteLastCalibrationProcess_R3@8
- 417 _EndWriteMarkNumber_R3@8
- 418 _EndWriteModelName_R3@8
- 419 _EndWriteNotCalibratedFlag_R3@8
- 420 _EndWriteOffModeBatteryTestInterval_R3@8
- 421 _EndWriteOffModeDisplay_R3@8
- 422 _EndWritePcbPartNumber_R3@8
- 423 _EndWritePcbRevision_R3@8
- 424 _EndWritePcbSerialNumber_R3@8
- 425 _EndWritePulseModeEnable_R3@8
- 426 _EndWritePulseModeIndustrial_R3@8
- 427 _EndWritePulseModeThreshold_R3@8
- 428 _EndWritePulsedModeOverrangeThreshold_R3@8
- 429 _EndWriteQuickAccessDisplays_R3@8
- 430 _EndWriteRTC_R3@8
- 431 _EndWriteRateOffPercentage@8
- 432 _EndWriteReturnForReadTime@8
- 433 _EndWriteScratchpad@8
- 434 _EndWriteSelfTestInterval@8
- 435 _EndWriteSensitivities_R2@8
- 436 _EndWriteSensitivities_R3@8
- 437 _EndWriteStayTime_R3@8
- 438 _EndWriteSwitchOnFromButton_R3@8
- 439 _EndWriteTaskDatabaseId_R3@8
- 440 _EndWriteTaskId_R3@8
- 441 _EndWriteTelemetryAdvConfig_R3@8
- 442 _EndWriteTelemetryAdvContent_R3@8
- 443 _EndWriteTelemetryCxnConfig_R3@8
- 444 _EndWriteTelemetryEnable_R3@8
- 445 _EndWriteTelemetryMode_R2@8
- 446 _EndWriteTelemetryReportInterval_R3@8
- 447 _EndWriteTelemetryTxPower_R3@8
- 448 _EndWriteTotalDoses@8
- 449 _EndWriteTriggeredDoses_R3@8
- 450 _EndWriteWearerDatabaseId_R3@8
- 451 _EndWriteWearerId@8
- 452 _EndWriteZoneControlMap@8
- 453 _GetDiscoveredEpds@16
- 454 _GetDiscoveryTimeout@8
- 455 _GetDiscoveryTimeslots@8
- 456 _GetDllLogLevel@8
- 457 _GetErrorCode@0
- 458 _GetMultipleDiscoveryMode@8
- 459 _GetResponseTimeout@8
- 460 _GetRetryCount@8
- 461 _OpenReader@8
- 462 _SetConnectCallback@8
- 463 _SetDisconnectCallback@8
- 464 _SetDiscoveryCacheTimeout@8
- 465 _SetDiscoveryTimeslots@8
- 466 _SetDllLogLevel@8
- 467 _SetMultipleDiscoveryMode@8
- 468 _SetRemovedCallback@8
- 469 _SetResponseTimeout@8
- 470 _SetRetryCount@8
- 471 _StartDiscovery@8
- 472 _StopDiscovery@4
-
- Summary
-
- C3 .debug$S
- 14 .idata$2
- 14 .idata$3
- 4 .idata$4
- 4 .idata$5
- C .idata$6
diff --git a/TestUSBreader/TestUSBreader.vcxproj b/TestUSBreader/TestUSBreader.vcxproj
deleted file mode 100644
index 614c930..0000000
--- a/TestUSBreader/TestUSBreader.vcxproj
+++ /dev/null
@@ -1,85 +0,0 @@
-
-
-
-
- Debug
- ARM
-
-
- Release
- ARM
-
-
- Debug
- ARM64
-
-
- Release
- ARM64
-
-
- Debug
- x86
-
-
- Release
- x86
-
-
- Debug
- x64
-
-
- Release
- x64
-
-
-
- {ae34dac7-9f61-460f-80c1-220009737411}
- Linux
- TestUSBreader
- 15.0
- Linux
- 1.0
- Generic
- {D51BCBC9-82E9-4017-911E-C93873C4EA2B}
-
-
-
- true
-
-
- false
-
-
- true
-
-
- false
-
-
- true
-
-
- false
-
-
- false
-
-
- true
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/TestUSBreader/main.cpp b/TestUSBreader/main.cpp
deleted file mode 100644
index baac199..0000000
--- a/TestUSBreader/main.cpp
+++ /dev/null
@@ -1,7 +0,0 @@
-#include
-
-int main()
-{
- printf("hello from %s!\n", "TestUSBreader");
- return 0;
-}
\ No newline at end of file
diff --git a/Testing/App.config b/Testing/App.config
deleted file mode 100644
index 193aecc..0000000
--- a/Testing/App.config
+++ /dev/null
@@ -1,6 +0,0 @@
-
-
-
-
-
-
\ No newline at end of file
diff --git a/Testing/Program.cs b/Testing/Program.cs
deleted file mode 100644
index c5ceb59..0000000
--- a/Testing/Program.cs
+++ /dev/null
@@ -1,34 +0,0 @@
-using System;
-using System.Collections.Generic;
-using System.Linq;
-using System.Text;
-using System.Threading.Tasks;
-
-namespace Testing
-{
- class Program
- {
- static void Main(string[] args)
- {
- //2846034226
- TimeSpan ts0 = TimeSpan.FromSeconds(2846034226);
-
- DateTime d1 = new DateTime(1601, 1, 1,0,0,0);
- DateTime d2 = new DateTime(1970, 1, 1);
- DateTime d3 = new DateTime(2000, 1, 1,0,0,0);
- TimeSpan ts1 = d2.Subtract(d1);
- TimeSpan ts2 = d3.Subtract(d1);
-
- System.Diagnostics.Debug.WriteLine($" 1970 {ts1.TotalSeconds}");
- System.Diagnostics.Debug.WriteLine($" 2000 {ts2.TotalSeconds}");
- //125911584000000000
-
- //DateTime d4 = new DateTime(2022, 02, 19,2,49,38);
- DateTime d4 = new DateTime(2000, 1, 1);
- DateTime d5 = d4.AddSeconds(703076180);
- DateTime d6 = d4.AddSeconds(-284603422);
- DateTime d7 = d4.AddSeconds(-28460342);
- DateTime d8 = d4.AddSeconds(-2846034);
- }
- }
-}
diff --git a/Testing/Properties/AssemblyInfo.cs b/Testing/Properties/AssemblyInfo.cs
deleted file mode 100644
index 537b189..0000000
--- a/Testing/Properties/AssemblyInfo.cs
+++ /dev/null
@@ -1,36 +0,0 @@
-using System.Reflection;
-using System.Runtime.CompilerServices;
-using System.Runtime.InteropServices;
-
-// General Information about an assembly is controlled through the following
-// set of attributes. Change these attribute values to modify the information
-// associated with an assembly.
-[assembly: AssemblyTitle("Testing")]
-[assembly: AssemblyDescription("")]
-[assembly: AssemblyConfiguration("")]
-[assembly: AssemblyCompany("")]
-[assembly: AssemblyProduct("Testing")]
-[assembly: AssemblyCopyright("Copyright © 2022")]
-[assembly: AssemblyTrademark("")]
-[assembly: AssemblyCulture("")]
-
-// Setting ComVisible to false makes the types in this assembly not visible
-// to COM components. If you need to access a type in this assembly from
-// COM, set the ComVisible attribute to true on that type.
-[assembly: ComVisible(false)]
-
-// The following GUID is for the ID of the typelib if this project is exposed to COM
-[assembly: Guid("814e327a-4148-44d8-9eb0-a4190a454540")]
-
-// Version information for an assembly consists of the following four values:
-//
-// Major Version
-// Minor Version
-// Build Number
-// Revision
-//
-// You can specify all the values or you can default the Build and Revision Numbers
-// by using the '*' as shown below:
-// [assembly: AssemblyVersion("1.0.*")]
-[assembly: AssemblyVersion("1.0.0.0")]
-[assembly: AssemblyFileVersion("1.0.0.0")]
diff --git a/Testing/Testing.csproj b/Testing/Testing.csproj
deleted file mode 100644
index 658da5d..0000000
--- a/Testing/Testing.csproj
+++ /dev/null
@@ -1,53 +0,0 @@
-
-
-
-
- Debug
- AnyCPU
- {814E327A-4148-44D8-9EB0-A4190A454540}
- Exe
- Testing
- Testing
- v4.8
- 512
- true
- true
-
-
- AnyCPU
- true
- full
- false
- bin\Debug\
- DEBUG;TRACE
- prompt
- 4
-
-
- AnyCPU
- pdbonly
- true
- bin\Release\
- TRACE
- prompt
- 4
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file