mirror of
https://github.com/ZDoom/wadext.git
synced 2024-11-30 15:51:20 +00:00
- let's hope this works.
This commit is contained in:
parent
bd1bbbd5c2
commit
2dceaa35a2
3 changed files with 8 additions and 13 deletions
|
@ -33,12 +33,6 @@
|
||||||
**
|
**
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#ifdef _MSC_VER
|
|
||||||
#include <direct.h>
|
|
||||||
#else // !_MSC_VER
|
|
||||||
#include <unistd.h>
|
|
||||||
#include <sys/stat.h>
|
|
||||||
#endif // _MSC_VER
|
|
||||||
#include <string>
|
#include <string>
|
||||||
#include "resourcefile.h"
|
#include "resourcefile.h"
|
||||||
#include "wadext.h"
|
#include "wadext.h"
|
||||||
|
|
|
@ -20,12 +20,6 @@
|
||||||
//--------------------------------------------------------------------------
|
//--------------------------------------------------------------------------
|
||||||
//
|
//
|
||||||
|
|
||||||
#ifdef _MSC_VER
|
|
||||||
#include <direct.h>
|
|
||||||
#else // !_MSC_VER
|
|
||||||
#include <unistd.h>
|
|
||||||
#include <sys/stat.h>
|
|
||||||
#endif // _MSC_VER
|
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#include <string>
|
#include <string>
|
||||||
|
|
9
wadext.h
9
wadext.h
|
@ -1,7 +1,14 @@
|
||||||
|
|
||||||
#include <stdint.h>
|
#include <stdint.h>
|
||||||
|
|
||||||
#ifndef _MSC_VER
|
#ifdef _MSC_VER
|
||||||
|
|
||||||
|
#include <direct.h>
|
||||||
|
|
||||||
|
#else // !_MSC_VER
|
||||||
|
|
||||||
|
#include <unistd.h>
|
||||||
|
#include <sys/stat.h>
|
||||||
|
|
||||||
static char* strlwr(char* str)
|
static char* strlwr(char* str)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue