Attribute VB_Name = "OposScal_h"
Option Explicit

'**********************************************************************************************************
' NAME:  OposScal_h.BAS
' TITLE: Scale Header File
' DESCR: This is the Visual Basic equivalent of the scale header file for OPOS applications as provided
'        in the June 2001 release from Monroe.
' NOTES: 1)The Visual C++ name for this file is OposScal.h
'
'**********************************************************************************************************

'----------------------------------------------------------------------------------------------------------
' "WeightUnit" Property Constants
'----------------------------------------------------------------------------------------------------------

Public Const SCAL_WU_GRAM As Long = 1
Public Const SCAL_WU_KILOGRAM As Long = 2
Public Const SCAL_WU_OUNCE As Long = 3
Public Const SCAL_WU_POUND As Long = 4

'----------------------------------------------------------------------------------------------------------
' "ResultCodeExtended" Property Constants
'----------------------------------------------------------------------------------------------------------

Public Const OPOS_ESCAL_OVERWEIGHT As Long = 201            ' ReadWeight

