mirror of
https://github.com/reactos/reactos.git
synced 2024-11-05 22:26:39 +00:00
c424146e2c
svn path=/branches/cmake-bringup/; revision=48236
23 lines
319 B
C
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>
|