;-------------------------------------------------------------------------------
;  colibrary data item g_ObjectCount
;
; -------------------------------------------------------
; This procedure was written by Ernest Murphy    1/8/01
;
; Copyright (c) 1/8/01  Ernest Murphy
; For educational use only. Any commercial re-use only by written license
;
; -------------------------------------------------------
.NOLIST
.386
.model flat, stdcall  ; 32 bit memory model
option casemap :none  ; case sensitive

include     mini_win.inc	; 'just enough' of windows.inc (speeds build)
include \masm32\COM\include\oaidl.inc
include \masm32\COM\include\colib.inc

PUBLIC g_ObjectCount

.data
; -------------------------------------------------------

g_ObjectCount           DWORD           0


end
