From 7b83a9160796bf2b80126655860096d4bec7f6ed Mon Sep 17 00:00:00 2001 From: midipix Date: Sat, 26 Sep 2015 01:14:54 -0400 Subject: makefile replacement: step 2/2: use the midipix build template. --- src/internal/ntapi_entry_point.c | 12 ++++++++++++ src/internal/ntapi_lib_entry_point.c | 12 ------------ 2 files changed, 12 insertions(+), 12 deletions(-) create mode 100644 src/internal/ntapi_entry_point.c delete mode 100644 src/internal/ntapi_lib_entry_point.c (limited to 'src') diff --git a/src/internal/ntapi_entry_point.c b/src/internal/ntapi_entry_point.c new file mode 100644 index 0000000..bca857d --- /dev/null +++ b/src/internal/ntapi_entry_point.c @@ -0,0 +1,12 @@ +/********************************************************/ +/* ntapi: Native API core library */ +/* Copyright (C) 2013,2014,2015 Z. Gilboa */ +/* Released under GPLv2 and GPLv3; see COPYING.NTAPI. */ +/********************************************************/ + +#include + +int __stdcall __ntapi_entry_point(void * hinstance, uint32_t reason, void * reserved) +{ + return 1; +} diff --git a/src/internal/ntapi_lib_entry_point.c b/src/internal/ntapi_lib_entry_point.c deleted file mode 100644 index 8b857c8..0000000 --- a/src/internal/ntapi_lib_entry_point.c +++ /dev/null @@ -1,12 +0,0 @@ -/********************************************************/ -/* ntapi: Native API core library */ -/* Copyright (C) 2013,2014,2015 Z. Gilboa */ -/* Released under GPLv2 and GPLv3; see COPYING.NTAPI. */ -/********************************************************/ - -#include - -int __stdcall __ntapi_entry(void * hinstance, uint32_t reason, void * reserved) -{ - return 1; -} -- cgit v1.2.3