32 lines
533 B
C
32 lines
533 B
C
// vim:fileencoding=utf-8:foldmethod=marker
|
|
|
|
#ifndef FILE_WIN_H
|
|
#define FILE_WIN_H
|
|
|
|
#include "../../../common/aliases/aliases.h"
|
|
#include "../../../common/platform/platform.h"
|
|
|
|
#ifdef WAPP_PLATFORM_CPP
|
|
BEGIN_C_LINKAGE
|
|
#endif // !WAPP_PLATFORM_CPP
|
|
|
|
#ifdef WAPP_PLATFORM_WINDOWS
|
|
|
|
#define END_OF_LINE "\r\n"
|
|
|
|
#define WIN32_LEAN_AND_MEAN
|
|
#include <Windows.h>
|
|
#include <fileapi.h>
|
|
|
|
struct WFile {
|
|
HANDLE fh;
|
|
};
|
|
|
|
#endif // !WAPP_PLATFORM_WINDOWS
|
|
|
|
#ifdef WAPP_PLATFORM_CPP
|
|
END_C_LINKAGE
|
|
#endif // !WAPP_PLATFORM_CPP
|
|
|
|
#endif // !FILE_WIN_H
|