該当のソースコード
C++
1/* 2 PLIB - A Suite of Portable Game Libraries 3 Copyright (C) 1998,2002 Steve Baker 4 5 This library is free software; you can redistribute it and/or 6 modify it under the terms of the GNU Library General Public 7 License as published by the Free Software Foundation; either 8 version 2 of the License, or (at your option) any later version. 9 10 This library is distributed in the hope that it will be useful, 11 but WITHOUT ANY WARRANTY; without even the implied warranty of 12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 13 Library General Public License for more details. 14 15 You should have received a copy of the GNU Library General Public 16 License along with this library; if not, write to the Free Software 17 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 18 19 For further information visit http://plib.sourceforge.net 20 21 $Id: slPortability.h,v 1.3.2.1 2011/12/30 00:03:09 berniw Exp $ 22*/ 23 24 25#ifndef __SLPORTABILITY_H__ 26#define __SLPORTABILITY_H__ 1 27 28/* ------------------------------------------------------------- */ 29/* OS specific includes and defines ... */ 30/* ------------------------------------------------------------- */ 31 32#include "ul.h" 33#include <stdio.h> 34#include <stdlib.h> 35 36#ifdef UL_MACINTOSH 37 #include <Sound.h> 38 #include <Timer.h> 39 #ifdef __MWERKS__ 40 #include <unix.h> 41 #endif 42#endif 43 44#ifdef UL_MAC_OSX 45 #include <Carbon/Carbon.h> 46#endif 47 48#include <fcntl.h> 49#include <sys/stat.h> 50#include <string.h> 51#include <limits.h> 52#include <math.h> 53 54#if (defined(UL_LINUX) || defined(UL_BSD)) && !defined(__NetBSD__) 55#define SL_USING_OSS_AUDIO 1 56#endif 57 58#ifdef SL_USING_OSS_AUDIO 59# if defined(UL_LINUX) 60# include <linux/soundcard.h> 61# include <sys/ioctl.h> 62# elif defined(__FreeBSD__) 63# include <sys/soundcard.h> 64# else 65 /* 66 Tom thinks this file may be <sys/soundcard.h> under some 67 unixen - but that isn't where the OSS manuals say it 68 should be. 69 70 If you ever find out the truth, please email me: 71 Steve Baker <sjbaker1@airmail.net> 72 */ 73# include <soundcard.h> 74# endif 75#endif 76 77#ifdef UL_BSD 78#ifndef __FreeBSD__ 79# include <sys/audioio.h> 80#endif 81#endif 82 83/* Tom */ 84 85#ifdef UL_IRIX 86# include <audio.h> 87#endif 88 89#ifdef UL_SOLARIS 90# include <sys/audioio.h> 91# include <sys/stropts.h> 92#endif 93 94#endif 95 96
発生している問題・エラーメッセージ
上記のコードをVisual studio 2017においてビルドを行うと, 1行目で以下のエラーが発生するのですが,対策としてどのようなことが考えられるでしょうか. 宜しくお願い致します. 重大度レベル コード 説明 プロジェクト ファイル 行 抑制状態 エラー LNK1104 ファイル 'libucrt.lib' を開くことができません。 accc C:\Users\owner\Desktop\torcs-1.3.7\src\tools\accc\LINK 1

回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2018/12/07 07:41
2018/12/07 07:45
2018/12/07 07:54
2018/12/07 08:05
2018/12/07 08:28