91av视频/亚洲h视频/操亚洲美女/外国一级黄色毛片 - 国产三级三级三级三级

資源簡介

Msys: 1.0.10 MinGW:5.1.4 make: 3.81.90 gcc: 4.3.2 w32api: 3.13 SDL: 1.2.1 MinGW-Runtime: 3.15 這是我自己根據一篇比較新的blog搭建的mingw+msys環境,用來編譯ffmpeg的,各種版本都可以編譯。 基本上解決了常出現的各種問題。移植可用! 文章地址: http://blog.csdn.net/bihaichentian/archive/2010/08/20/5826859.aspx MINGW+MSYS環境已經配置完成。 移植到其他電腦上時需要根據情況做修改: 若msys文件夾放在D盤根目錄下,找到D:\msys\1.0\etc\fstab,以記事本或寫字板打開, 將以下所示部分改為現在實際所在的路徑,即D:/msys/1.0/mingw。若在C盤,則無需更改。 #Win32_Path Mount_Point c:/msys/1.0/mingw /mingw 注意是/,不是\,因為linux下的路徑都是用/的。 若電腦上安裝了VC++,找到c:\msys\1.0\msys.bat并以記事本或寫字板或notepad打開,在第一行添加: call "C:\Program Files\Microsoft Visual Studio\VC98\Bin\VCVARS32.BAT" 雙引號內的路徑不固定,以VC安裝的路徑為準。 msys使用技巧: 復制:選中一段文字,就將這段文字復制到剪貼板。 粘貼:shift+鼠標左鍵,就將剪貼板的內容粘貼到命令行了。

資源截圖

代碼片段和文件信息

/*?Copyright?(C)?1989?2000?Aladdin?Enterprises.??All?rights?reserved.?*/

/*$Id:?ansi2knr.cv?1.3?2000/04/13?03:41:48?lpd?Exp?$*/
/*?Convert?ANSI?C?function?definitions?to?K&R?(“traditional?C“)?syntax?*/

/*
ansi2knr?is?distributed?in?the?hope?that?it?will?be?useful?but?WITHOUT?ANY
WARRANTY.??No?author?or?distributor?accepts?responsibility?to?anyone?for?the
consequences?of?using?it?or?for?whether?it?serves?any?particular?purpose?or
works?at?all?unless?he?says?so?in?writing.??Refer?to?the?GNU?General?Public
License?(the?“GPL“)?for?full?details.

Everyone?is?granted?permission?to?copy?modify?and?redistribute?ansi2knr
but?only?under?the?conditions?described?in?the?GPL.??A?copy?of?this?license
is?supposed?to?have?been?given?to?you?along?with?ansi2knr?so?you?can?know
your?rights?and?responsibilities.??It?should?be?in?a?file?named?COPYLEFT
or?if?there?is?no?file?named?COPYLEFT?a?file?named?COPYING.??Among?other
things?the?copyright?notice?and?this?notice?must?be?preserved?on?all
copies.

We?explicitly?state?here?what?we?believe?is?already?implied?by?the?GPL:?if
the?ansi2knr?program?is?distributed?as?a?separate?set?of?sources?and?a
separate?executable?file?which?are?aggregated?on?a?storage?medium?together
with?another?program?this?in?itself?does?not?bring?the?other?program?under
the?GPL?nor?does?the?mere?fact?that?such?a?program?or?the?procedures?for
constructing?it?invoke?the?ansi2knr?executable?bring?any?other?part?of?the
program?under?the?GPL.
*/

/*
?*?Usage:
ansi2knr?[--filename?FILENAME]?[INPUT_FILE?[OUTPUT_FILE]]
?*?--filename?provides?the?file?name?for?the?#line?directive?in?the?output
?*?overriding?input_file?(if?present).
?*?If?no?input_file?is?supplied?input?is?read?from?stdin.
?*?If?no?output_file?is?supplied?output?goes?to?stdout.
?*?There?are?no?error?messages.
?*
?*?ansi2knr?recognizes?function?definitions?by?seeing?a?non-keyword
?*?identifier?at?the?left?margin?followed?by?a?left?parenthesis?with?a
?*?right?parenthesis?as?the?last?character?on?the?line?and?with?a?left
?*?brace?as?the?first?token?on?the?following?line?(ignoring?possible
?*?intervening?comments?and/or?preprocessor?directives)?except?that?a?line
?*?consisting?of?only
?* identifier1(identifier2)
?*?will?not?be?considered?a?function?definition?unless?identifier2?is
?*?the?word?“void“?and?a?line?consisting?of
?* identifier1(identifier2?<>)
?*?will?not?be?considered?a?function?definition.
?*?ansi2knr?will?recognize?a?multi-line?header?provided?that?no?intervening
?*?line?ends?with?a?left?or?right?brace?or?a?semicolon.??These?algorithms
?*?ignore?whitespace?comments?and?preprocessor?directives?except?that
?*?the?function?name?must?be?the?first?thing?on?the?line.??The?following
?*?constructs?will?confuse?it:
?* -?Any?other?construct?that?starts?at?the?left?margin?and
?* ????follows?the?above?syntax?(such?as?a?macro?or?function?call).
?* -?Some?macros?that?tinker?with?the?syntax?of?function?headers.
?*/

/*
?*?The?original?and?principal?author?of

評論

共有 條評論