common.h

来自「tapi3.0实现的数据发送程序」· C头文件 代码 · 共 61 行

H
61
字号
/*

Copyright (c) 1999 - 2000  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>
#include <strsafe.h>



//
// 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);


⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?