editor: remove traces of stdafx

This commit is contained in:
Erik Faye-Lund 2010-03-24 18:27:55 +01:00
parent 892e1e1a97
commit f5c2fc032e
5 changed files with 4 additions and 25 deletions

View File

@ -225,10 +225,6 @@
>
</File>
<File
RelativePath="..\stdafx.h"
>
</File>
<File
RelativePath="..\sync\sync.h"
>
</File>

View File

@ -1,5 +1,7 @@
#include "../sync/base.h"
#include "recentfiles.h"
#include "resource.h"
#include <assert.h>
#define MAX_DIR_LEN 64

View File

@ -1,5 +1,6 @@
#pragma once
#include "stdafx.h"
#include <string>
#include <list>
class RecentFiles
{

View File

@ -1,5 +0,0 @@
/* Copyright (C) 2007-2008 Erik Faye-Lund and Egbert Teeselink
* For conditions of distribution and use, see copyright notice in COPYING
*/
#include "stdafx.h"

View File

@ -1,15 +0,0 @@
/* Copyright (C) 2007-2008 Erik Faye-Lund and Egbert Teeselink
* For conditions of distribution and use, see copyright notice in COPYING
*/
#pragma once
#include <winsock2.h>
#define WIN32_LEAN_AND_MEAN // Exclude rarely-used stuff from Windows headers
#include <windows.h>
#include <string>
#include <list>
#include <stdio.h>
#include <assert.h>
#define ASSERT(x) assert(x)