📄 common.h
字号:
/*
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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -