reactos/base/applications/sndrec32/stdafx.h
Timo Kreuzer 9ea495ba33 Create a branch for header work.
svn path=/branches/header-work/; revision=45691
2010-02-26 22:57:55 +00:00

23 lines
319 B
C

#pragma once
#include "targetver.h"
#define WIN32_LEAN_AND_MEAN
#ifdef _UNICODE
#define _sntprintf_s _snwprintf_s
#else
#define _sntprintf_s _snprintf_s
#endif
#include <stdlib.h>
#include <stdio.h>
#include <tchar.h>
#include <string.h>
#include <windows.h>
#include <commctrl.h>
#include <commdlg.h>