source: trunk/Utilities/GeneratePcmWavFile/stdafx.h @ 7

Last change on this file since 7 was 7, checked in by roman, 13 years ago

sine wave generation

  • Property svn:keywords set to Id
File size: 1.2 KB
Line 
1////////////////////////////////////////////////////////////
2// Copyright (C) Roman Ryltsov, 2008-2011
3// Created by Roman Ryltsov roman@alax.info
4//
5// $Id: stdafx.h 7 2011-08-26 08:20:52Z roman $
6
7#pragma once
8
9////////////////////////////////////////////////////////////
10// Windows definitions
11
12#include "targetver.h"
13
14#define _USE_MATH_DEFINES
15
16#include <stdio.h>
17#include <tchar.h>
18#include <math.h>
19
20////////////////////////////////////////////////////////////
21// Windows definitions
22
23#define _ATL_CSTRING_EXPLICIT_CONSTRUCTORS
24
25#include "roatltrace.h" // Replacement for <atltrace.h>
26#include <atlbase.h>
27#include <atlstr.h>
28#include <atlrx.h>
29#include <atlpath.h>
30#include <atlfile.h>
31
32using namespace ATL;
33
34////////////////////////////////////////////////////////////
35// WTL
36
37////////////////////////////////////////////////////////////
38// Alax.Info ATL/WTL
39
40#define REGISTRY_PRODUCTROOT    _T("SOFTWARE\\Alax.Info\\Utilities")
41#define REGISTRY_FILEROOT               REGISTRY_PRODUCTROOT
42#define REGISTRY_ROOT                   REGISTRY_FILEROOT
43
44#include "roatlbase.h"
45#include "roatlpersist.h"
46#include "roatlmisc.h"
47#include "roatlexceptionfilter.h"
48#include "rowtlapp.h"
49#include "rores.h"
50#include "rodialogs.h"
51
52
Note: See TracBrowser for help on using the repository browser.