1
0
mirror of https://github.com/FunkyFr3sh/cnc-ddraw.git synced 2025-03-14 22:03:27 +01:00

remove unused psapi header

This commit is contained in:
FunkyFr3sh 2024-05-10 02:43:40 +02:00
parent 47e1af94d0
commit c90af52dac
2 changed files with 1 additions and 2 deletions

View File

@ -3,7 +3,7 @@
TARGET = ddraw.dll
LDFLAGS = -Wl,--enable-stdcall-fixup -s -static -shared
CFLAGS = -Iinc -O2 -march=i486 -Wall
LIBS = -lgdi32 -lwinmm -lpsapi -ldbghelp -lole32
LIBS = -lgdi32 -lwinmm -ldbghelp -lole32
CC = i686-w64-mingw32-gcc
WINDRES ?= i686-w64-mingw32-windres

View File

@ -1,7 +1,6 @@
#define WIN32_LEAN_AND_MEAN
#include <windows.h>
#include <stdio.h>
#include <psapi.h>
#include "directinput.h"
#include "dd.h"
#include "winapi_hooks.h"