2025-04-27 07:49:33 -04:00

60 lines
702 B
C

/*
Copyright (c) 1999 Microsoft Corporation
Module Name:
common.h
Abstract:
include files and declarations used throughout the application
*/
#define _WIN32_DCOM
#include <stdio.h>
#include <windows.h>
#include <tapi3.h>
#include <vfw.h>
#include <crtdbg.h>
#include <uuids.h>
#include <Mtype.h>
#include <amstream.h>
#include <vfwmsgs.h>
#include <deque>
//
// logging functions
//
void LogMessage(CHAR *pszFormat, ... );
#define LogError LogMessage
void LogFormat(WAVEFORMATEX *pWaveFormat);
//
// memory allocation routines
//
void *AllocateMemory(SIZE_T nMemorySize);
void FreeMemory(void* pMemory);