stdafx.h

来自「MONOGRAM AMR Encoder v1.0.0.0」· C头文件 代码 · 共 56 行

H
56
字号
//-----------------------------------------------------------------------------
//
//	Monogram AMR Encoder
//
//	Base on the 3GPP source codes for AMR
//
//	Author : Igor Janos
//
//-----------------------------------------------------------------------------
#pragma once

#ifndef WINVER
	#define WINVER 0x0501
#endif
#ifndef _WIN32_WINNT
	#define _WIN32_WINNT 0x0501
#endif						
#ifndef _WIN32_WINDOWS
	#define _WIN32_WINDOWS 0x0410
#endif
#ifndef _WIN32_IE
	#define _WIN32_IE 0x0600
#endif

#define WIN32_LEAN_AND_MEAN
#define _ATL_CSTRING_EXPLICIT_CONSTRUCTORS

#ifndef VC_EXTRALEAN
	#define VC_EXTRALEAN
#endif

#include <afx.h>
#include <afxwin.h>
#include <afxext.h>

#ifndef _AFX_NO_OLE_SUPPORT
	#include <afxdtctl.h>
#endif
#ifndef _AFX_NO_AFXCMN_SUPPORT
	#include <afxcmn.h>
#endif

#include <iostream>
#include <windows.h>

#include <streams.h>
#include <initguid.h>

#include "..\resource.h"
#include "libamr_nb.h"

#include "amr_types.h"
#include "resample.h"
#include "amr_filter.h"
#include "amr_prop.h"

⌨️ 快捷键说明

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