• R/O
  • SSH
  • HTTPS

vmaid: Commit


Commit MetaInfo

Revision320 (tree)
Zeit2010-06-29 05:36:40
Autoriwm

Log Message

modify archive folder

Ändern Zusammenfassung

Diff

--- vmaid/trunk/ChangeLog (revision 319)
+++ vmaid/trunk/ChangeLog (revision 320)
@@ -2,6 +2,10 @@
22
33 * version 2.2.4
44
5+2010-06-29 Kazuki Iwamoto <iwm@maid.org>
6+
7+ * Makefile.msc.in: modify archive folder
8+
59 2010-06-26 Kazuki Iwamoto <iwm@maid.org>
610
711 * configure.ac:
--- vmaid/trunk/avicore/avisave.c (revision 319)
+++ vmaid/trunk/avicore/avisave.c (revision 320)
@@ -1,10 +1,10 @@
11 /*
22 avicore
3- copyright (c) 1998-2007 Kazuki IWAMOTO http://www.maid.org/ iwm@maid.org
3+ copyright (c) 1998-2010 Kazuki Iwamoto http://www.maid.org/ iwm@maid.org
44
5- This program is free software; you can redistribute it and/or modify
5+ This program is free software: you can redistribute it and/or modify
66 it under the terms of the GNU General Public License as published by
7- the Free Software Foundation; either version 2 of the License, or
7+ the Free Software Foundation, either version 3 of the License, or
88 (at your option) any later version.
99
1010 This program is distributed in the hope that it will be useful,
@@ -13,8 +13,7 @@
1313 GNU General Public License for more details.
1414
1515 You should have received a copy of the GNU General Public License
16- along with this program; if not, write to the Free Software
17- Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
16+ along with this program. If not, see <http://www.gnu.org/licenses/>.
1817 */
1918 #include "avibase.h"
2019 #include "avifmt.h"
@@ -527,11 +526,17 @@
527526 written += length;
528527 }
529528 }
530- if ((acm_object && !acm_close (acm_object)) | !avi_pcm_close (avi_pcm))
529+ if (acm_object && !acm_close (acm_object))
531530 {
531+ avi_pcm_close (avi_pcm);
532532 fileio_close (fio);
533533 return FALSE;
534534 }
535+ if (!avi_pcm_close (avi_pcm))
536+ {
537+ fileio_close (fio);
538+ return FALSE;
539+ }
535540 if (written & 1)
536541 {
537542 const static guint8 dmy = 0;
@@ -752,14 +757,16 @@
752757 static gboolean
753758 avi_acm_close (AviAcm *avi_acm)
754759 {
755- gboolean result;
760+ gboolean result = TRUE;
756761
757762 if (!avi_acm)
758763 return FALSE;
759- result = (!avi_acm->avi_pcm || avi_pcm_close (avi_acm->avi_pcm))
760- & (!avi_acm->acm_flag
761- || acm_compress_end (avi_acm->acm_object, NULL, NULL))
762- & (!avi_acm->acm_object || acm_close (avi_acm->acm_object));
764+ if (avi_acm->avi_pcm && !avi_pcm_close (avi_acm->avi_pcm))
765+ result = FALSE;
766+ if (avi_acm->acm_flag && !acm_compress_end (avi_acm->acm_object, NULL, NULL))
767+ result = FALSE;
768+ if (avi_acm->acm_object && !acm_close (avi_acm->acm_object))
769+ result = FALSE;
763770 g_free (avi_acm->wfx);
764771 g_free (avi_acm->tmp_buf);
765772 g_free (avi_acm);
@@ -1815,29 +1822,38 @@
18151822 g_free (data);
18161823 /* ja:フレーム/圧縮 */
18171824 for (i = 0; i < streams; i++)
1818- if ((stream[i].active && !icm_compress_end (stream[i].icm_object))
1819- | (stream[i].icm_object && !icm_close (stream[i].icm_object))
1820- | (stream[i].avi_frame && !avi_frame_close (stream[i].avi_frame))
1821- | (stream[i].avi_acm && !avi_acm_close (stream[i].avi_acm)))
1822- {
1823- fileio_close (fio);
1824- while (++i < streams)
1825- {
1826- if (stream[i].active)
1827- icm_compress_end (stream[i].icm_object);
1828- if (stream[i].icm_object)
1829- icm_close (stream[i].icm_object);
1830- avi_frame_close (stream[i].avi_frame);
1831- }
1832- for (i = 0; i < streams; i++)
1833- {
1834- g_free (stream[i].fmt);
1835- g_free (stream[i].base);
1836- }
1837- g_free (stream);
1838- g_free (index);
1839- return FALSE;
1840- }
1825+ {
1826+ gboolean result = TRUE;
1827+
1828+ if (stream[i].active && !icm_compress_end (stream[i].icm_object))
1829+ result = FALSE;
1830+ if (stream[i].icm_object && !icm_close (stream[i].icm_object))
1831+ result = FALSE;
1832+ if (stream[i].avi_frame && !avi_frame_close (stream[i].avi_frame))
1833+ result = FALSE;
1834+ if (stream[i].avi_acm && !avi_acm_close (stream[i].avi_acm))
1835+ result = FALSE;
1836+ if (!result)
1837+ {
1838+ fileio_close (fio);
1839+ while (++i < streams)
1840+ {
1841+ if (stream[i].active)
1842+ icm_compress_end (stream[i].icm_object);
1843+ if (stream[i].icm_object)
1844+ icm_close (stream[i].icm_object);
1845+ avi_frame_close (stream[i].avi_frame);
1846+ }
1847+ for (i = 0; i < streams; i++)
1848+ {
1849+ g_free (stream[i].fmt);
1850+ g_free (stream[i].base);
1851+ }
1852+ g_free (stream);
1853+ g_free (index);
1854+ return FALSE;
1855+ }
1856+ }
18411857 /* ja:ファイナライズ */
18421858 if (!avi_save_avi_write (fio, NULL, 0, 0, AVI_SAVE_WRITE_FINALIZE,
18431859 &index, &entries, &riff, &movi, stream, streams, -1))
@@ -2560,29 +2576,38 @@
25602576 g_free (data);
25612577 /* ja:フレーム/圧縮 */
25622578 for (i = 0; i < streams; i++)
2563- if ((stream[i].active && !icm_compress_end (stream[i].icm_object))
2564- | (stream[i].icm_object && !icm_close (stream[i].icm_object))
2565- | (stream[i].avi_frame && !avi_frame_close (stream[i].avi_frame))
2566- | (stream[i].avi_acm && !avi_acm_close (stream[i].avi_acm)))
2567- {
2568- fileio_close (fio);
2569- while (++i < streams)
2570- {
2571- if (stream[i].active)
2572- icm_compress_end (stream[i].icm_object);
2573- if (stream[i].icm_object)
2574- icm_close (stream[i].icm_object);
2575- avi_frame_close (stream[i].avi_frame);
2576- }
2577- for (i = 0; i < streams; i++)
2578- {
2579- g_free (stream[i].fmt);
2580- g_free (stream[i].index);
2581- }
2582- g_free (stream);
2583- return FALSE;
2584- }
2579+ {
2580+ gboolean result = TRUE;
25852581
2582+ if (stream[i].active && !icm_compress_end (stream[i].icm_object))
2583+ result = FALSE;
2584+ if (stream[i].icm_object && !icm_close (stream[i].icm_object))
2585+ result = FALSE;
2586+ if (stream[i].avi_frame && !avi_frame_close (stream[i].avi_frame))
2587+ result = FALSE;
2588+ if (stream[i].avi_acm && !avi_acm_close (stream[i].avi_acm))
2589+ result = FALSE;
2590+ if (!result)
2591+ {
2592+ fileio_close (fio);
2593+ while (++i < streams)
2594+ {
2595+ if (stream[i].active)
2596+ icm_compress_end (stream[i].icm_object);
2597+ if (stream[i].icm_object)
2598+ icm_close (stream[i].icm_object);
2599+ avi_frame_close (stream[i].avi_frame);
2600+ }
2601+ for (i = 0; i < streams; i++)
2602+ {
2603+ g_free (stream[i].fmt);
2604+ g_free (stream[i].index);
2605+ }
2606+ g_free (stream);
2607+ return FALSE;
2608+ }
2609+ }
2610+
25862611 /* ja:ヘッタを設定する */
25872612 p = data = g_malloc0 (header);
25882613
--- vmaid/trunk/avicore/aviopen.c (revision 319)
+++ vmaid/trunk/avicore/aviopen.c (revision 320)
@@ -1,10 +1,10 @@
11 /*
22 avicore
3- copyright (c) 1998-2007 Kazuki IWAMOTO http://www.maid.org/ iwm@maid.org
3+ copyright (c) 1998-2010 Kazuki Iwamoto http://www.maid.org/ iwm@maid.org
44
5- This program is free software; you can redistribute it and/or modify
5+ This program is free software: you can redistribute it and/or modify
66 it under the terms of the GNU General Public License as published by
7- the Free Software Foundation; either version 2 of the License, or
7+ the Free Software Foundation, either version 3 of the License, or
88 (at your option) any later version.
99
1010 This program is distributed in the hope that it will be useful,
@@ -13,8 +13,7 @@
1313 GNU General Public License for more details.
1414
1515 You should have received a copy of the GNU General Public License
16- along with this program; if not, write to the Free Software
17- Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
16+ along with this program. If not, see <http://www.gnu.org/licenses/>.
1817 */
1918 #include "avibase.h"
2019 #include "avifmt.h"
@@ -157,15 +156,26 @@
157156 }
158157 case AVI_FILE_GSR:
159158 {
160- FileIO *fio;
161- GsrMainHeader gmh;
159+ gint streams = 0;
162160
163161 /* ja:ファイルを開く */
164- return file && (fio = fileio_open (file, FILEIO_ACCESS_READ,
165- FILEIO_SHARE_READ, FILEIO_MODE_OPEN_EXISTING))
166- && ((fileio_read (fio, &gmh, GMH_SIZE) == GMH_SIZE)
167- & fileio_close (fio))
168- ? gmh_get_streams (&gmh) : 0;
162+ if (file)
163+ {
164+ FileIO *fio;
165+
166+ fio = fileio_open (file, FILEIO_ACCESS_READ,
167+ FILEIO_SHARE_READ, FILEIO_MODE_OPEN_EXISTING);
168+ if (fio)
169+ {
170+ gboolean result;
171+ GsrMainHeader gmh;
172+
173+ result = fileio_read (fio, &gmh, GMH_SIZE) == GMH_SIZE;
174+ if (fileio_close (fio) && result)
175+ streams = gmh_get_streams (&gmh);
176+ }
177+ }
178+ return streams;
169179 }
170180 case AVI_FILE_BITMAP:
171181 case AVI_FILE_PIXBUF:
@@ -216,17 +226,21 @@
216226 }
217227 else
218228 {
229+ gboolean result = FALSE;
219230 IcmObject *icm_object;
220231
221232 /* ja:圧縮 */
222233 icm_object = icm_open (avi_edit->file->handler, ICM_MODE_DECOMPRESS);
223- if (!icm_object
224- || !(avi_edit->bmih = g_malloc (icm_decompress_get_format_size
225- (icm_object, avi_edit->file->bmih)))
226- || (!icm_decompress_get_format (icm_object,
227- avi_edit->file->bmih, avi_edit->bmih)
228- | !icm_close (icm_object)))
234+ if (icm_object)
229235 {
236+ avi_edit->bmih = g_malloc (icm_decompress_get_format_size
237+ (icm_object, avi_edit->file->bmih));
238+ result = icm_decompress_get_format (icm_object,
239+ avi_edit->file->bmih, avi_edit->bmih);
240+ result = icm_close (icm_object) && result;
241+ }
242+ if (!result)
243+ {
230244 avi_file_close (avi_edit->file);
231245 g_free (avi_edit->bmih);
232246 g_free (avi_edit);
@@ -245,17 +259,21 @@
245259 }
246260 else
247261 {
262+ gboolean result = FALSE;
248263 AcmObject *acm_object;
249264
250265 /* ja:圧縮 */
251266 acm_object = acm_open (wfx_get_format_tag (avi_edit->file->wfx));
252- if (!acm_object
253- || !(avi_edit->wfx = g_malloc (acm_decompress_get_format_size
254- (acm_object, avi_edit->file->wfx)))
255- || (!acm_decompress_get_format (acm_object,
256- avi_edit->file->wfx, avi_edit->wfx)
257- | !acm_close (acm_object)))
267+ if (acm_object)
258268 {
269+ avi_edit->wfx = g_malloc (acm_decompress_get_format_size
270+ (acm_object, avi_edit->file->wfx));
271+ result = acm_decompress_get_format (acm_object,
272+ avi_edit->file->wfx, avi_edit->wfx);
273+ result = acm_close (acm_object) && result;
274+ }
275+ if (!result)
276+ {
259277 avi_file_close (avi_edit->file);
260278 g_free (avi_edit->wfx);
261279 g_free (avi_edit);
@@ -377,17 +395,21 @@
377395 }
378396 else
379397 {
398+ gboolean result = FALSE;
380399 AcmObject *acm_object;
381400
382401 /* ja:圧縮 */
383402 acm_object = acm_open (wfx_get_format_tag (avi_edit->file->wfx));
384- if (!acm_object
385- || !(avi_edit->wfx = g_malloc
403+ if (acm_object)
404+ {
405+ avi_edit->wfx = g_malloc
386406 (acm_decompress_get_format_size (acm_object,
387- avi_edit->file->wfx)))
388- || (!acm_decompress_get_format (acm_object,
389- avi_edit->file->wfx, avi_edit->wfx)
390- | !acm_close (acm_object)))
407+ avi_edit->file->wfx));
408+ result = acm_decompress_get_format (acm_object,
409+ avi_edit->file->wfx, avi_edit->wfx);
410+ result = acm_close (acm_object) && result;
411+ }
412+ if (!result)
391413 {
392414 avi_file_close (avi_edit->file);
393415 g_free (avi_edit->wfx);
--- vmaid/trunk/avicore/avipcm.c (revision 319)
+++ vmaid/trunk/avicore/avipcm.c (revision 320)
@@ -1,10 +1,10 @@
11 /*
22 avicore
3- copyright (c) 1998-2006 Kazuki IWAMOTO http://www.maid.org/ iwm@maid.org
3+ copyright (c) 1998-2010 Kazuki Iwamoto http://www.maid.org/ iwm@maid.org
44
5- This program is free software; you can redistribute it and/or modify
5+ This program is free software: you can redistribute it and/or modify
66 it under the terms of the GNU General Public License as published by
7- the Free Software Foundation; either version 2 of the License, or
7+ the Free Software Foundation, either version 3 of the License, or
88 (at your option) any later version.
99
1010 This program is distributed in the hope that it will be useful,
@@ -13,8 +13,7 @@
1313 GNU General Public License for more details.
1414
1515 You should have received a copy of the GNU General Public License
16- along with this program; if not, write to the Free Software
17- Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
16+ along with this program. If not, see <http://www.gnu.org/licenses/>.
1817 */
1918 #include "avibase.h"
2019
@@ -64,12 +63,14 @@
6463 gboolean
6564 avi_pcm_close (AviPcm *avi_pcm)
6665 {
67- gboolean result;
66+ gboolean result = TRUE;
6867
6968 if (!avi_pcm)
7069 return FALSE;
71- result = (!avi_pcm->wcv || wave_convert_end (avi_pcm->wcv, NULL, NULL))
72- & (!avi_pcm->acm_object || acm_close (avi_pcm->acm_object));
70+ if (avi_pcm->wcv && !wave_convert_end (avi_pcm->wcv, NULL, NULL))
71+ result = FALSE;
72+ if (avi_pcm->acm_object && !acm_close (avi_pcm->acm_object))
73+ result = FALSE;
7374 g_free (avi_pcm->wfx);
7475 g_free (avi_pcm->tmp_buf);
7576 g_free (avi_pcm);
@@ -194,13 +195,14 @@
194195 avi_pcm->marker = -1;
195196 if (avi_pcm->acm_object)
196197 {
198+ gboolean result;
197199 gpointer e_buf = NULL;
198200 gsize e_samples;
199201
200- if ((!acm_decompress_end (avi_pcm->acm_object,
201- &e_buf, &e_samples)
202- | !acm_close (avi_pcm->acm_object))
203- || !wave_convert (avi_pcm->wcv,
202+ result = acm_decompress_end (avi_pcm->acm_object,
203+ &e_buf, &e_samples);
204+ if (!acm_close (avi_pcm->acm_object) || !result
205+ || !wave_convert (avi_pcm->wcv,
204206 e_buf, e_samples, &conv_buf, &conv_samples))
205207 {
206208 g_free (e_buf);
@@ -285,12 +287,13 @@
285287
286288 if (avi_pcm->acm_object)
287289 {
290+ gboolean result;
288291 gpointer e_buf = NULL;
289292 gsize e_samples;
290293
291- if ((!acm_decompress_end (avi_pcm->acm_object,
292- &e_buf, &e_samples)
293- | !acm_close (avi_pcm->acm_object))
294+ result = acm_decompress_end (avi_pcm->acm_object,
295+ &e_buf, &e_samples);
296+ if (!acm_close (avi_pcm->acm_object) || !result
294297 || !wave_convert (avi_pcm->wcv,
295298 e_buf, e_samples, &conv_buf, &conv_samples))
296299 {
--- vmaid/trunk/avicore/avitext.c (revision 319)
+++ vmaid/trunk/avicore/avitext.c (revision 320)
@@ -1,10 +1,10 @@
11 /*
22 avicore
3- copyright (c) 1998-2007 Kazuki IWAMOTO http://www.maid.org/ iwm@maid.org
3+ copyright (c) 1998-2010 Kazuki Iwamoto http://www.maid.org/ iwm@maid.org
44
5- This program is free software; you can redistribute it and/or modify
5+ This program is free software: you can redistribute it and/or modify
66 it under the terms of the GNU General Public License as published by
7- the Free Software Foundation; either version 2 of the License, or
7+ the Free Software Foundation, either version 3 of the License, or
88 (at your option) any later version.
99
1010 This program is distributed in the hope that it will be useful,
@@ -13,8 +13,7 @@
1313 GNU General Public License for more details.
1414
1515 You should have received a copy of the GNU General Public License
16- along with this program; if not, write to the Free Software
17- Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
16+ along with this program. If not, see <http://www.gnu.org/licenses/>.
1817 */
1918 #include "avibase.h"
2019 #include "avifmt.h"
@@ -607,6 +606,8 @@
607606 {
608607 for (i = 0; i < count; i++)
609608 {
609+ gboolean result = FALSE;
610+
610611 /* ja:サンプル数 */
611612 if (avi_edit[i]->file)
612613 {
@@ -637,6 +638,7 @@
637638 if (bmih_get_size_image (avi_edit[i]->bmih) <= 0)
638639 bmih_set_size_image (avi_edit[i]->bmih,
639640 bm_image_bytes (avi_edit[i]->bmih));
641+ result = TRUE;
640642 }
641643 else
642644 {
@@ -650,24 +652,14 @@
650652 avi_edit[i]->bmih = g_malloc
651653 (icm_decompress_get_format_size (icm_object,
652654 avi_edit[i]->file->bmih));
653- if (icm_decompress_get_format (icm_object,
654- avi_edit[i]->file->bmih, avi_edit[i]->bmih)
655- & icm_close (icm_object))
656- {
657- avi_edit[i]->bmih = g_realloc (avi_edit[i]->bmih,
655+ result = icm_decompress_get_format (icm_object,
656+ avi_edit[i]->file->bmih, avi_edit[i]->bmih);
657+ if (icm_close (icm_object) && result)
658+ avi_edit[i]->bmih = g_realloc (avi_edit[i]->bmih,
658659 bm_header_bytes (avi_edit[i]->bmih));
659- }
660660 else
661- {
662- avi_edit_close (avi_edit[i]);
663- avi_edit[i] = NULL;
664- }
661+ result = FALSE;
665662 }
666- else
667- {
668- avi_edit_close (avi_edit[i]);
669- avi_edit[i] = NULL;
670- }
671663 }
672664 }
673665 else if (avi_edit[i] && !avi_edit[i]->wfx
@@ -677,6 +669,7 @@
677669 {
678670 avi_edit[i]->wfx = g_memdup (avi_edit[i]->file->wfx,
679671 wf_header_bytes (avi_edit[i]->file->wfx));
672+ result = TRUE;
680673 }
681674 else
682675 {
@@ -685,25 +678,32 @@
685678 /* ja:圧縮 */
686679 acm_object = acm_open
687680 (wfx_get_format_tag (avi_edit[i]->file->wfx));
688- if (acm_object && (avi_edit[i]->wfx
681+ if (acm_object)
682+ {
683+ avi_edit[i]->wfx
689684 = g_malloc (acm_decompress_get_format_size
690- (acm_object, avi_edit[i]->file->wfx)))
691- && (acm_decompress_get_format (acm_object,
692- avi_edit[i]->file->wfx, avi_edit[i]->wfx)
693- & acm_close (acm_object)))
694- {
695- avi_edit[i]->rate
685+ (acm_object, avi_edit[i]->file->wfx));
686+ result = acm_decompress_get_format (acm_object,
687+ avi_edit[i]->file->wfx, avi_edit[i]->wfx);
688+ if (acm_close (acm_object) && result)
689+ {
690+ avi_edit[i]->rate
696691 = wfx_get_average_bytes_per_sec (avi_edit[i]->wfx);
697- avi_edit[i]->scale
692+ avi_edit[i]->scale
698693 = wfx_get_block_align (avi_edit[i]->wfx);
694+ }
695+ else
696+ {
697+ result = FALSE;
698+ }
699699 }
700- else
701- {
702- avi_edit_close (avi_edit[i]);
703- avi_edit[i] = NULL;
704- }
705700 }
706701 }
702+ if (!result)
703+ {
704+ avi_edit_close (avi_edit[i]);
705+ avi_edit[i] = NULL;
706+ }
707707 #ifdef XXX
708708 g_print("type=%X,rate=%u,scale=%u,length=%d\n",avi_edit[i]->type,avi_edit[i]->rate,avi_edit[i]->scale,avi_edit[i]->length);
709709 for (avi_file=avi_edit[i]->file;avi_file!=NULL;
--- vmaid/trunk/misc/profile.c (revision 319)
+++ vmaid/trunk/misc/profile.c (revision 320)
@@ -43,12 +43,12 @@
4343
4444 /******************************************************************************
4545 * *
46-* ja:初期化ファイル関数群(内部) *
46+* ja:蛻晄悄蛹悶ヵ繧。繧、繝ォ髢「謨ー鄒、(蜀?Κ) *
4747 * *
4848 ******************************************************************************/
49-/* ja:リストをテキスト化する
50- profile_list,リスト
51- RET,テキストリスト */
49+/* ja:繝ェ繧ケ繝医r繝?く繧ケ繝亥喧縺吶k
50+ profile_list,繝ェ繧ケ繝
51+ RET,繝?く繧ケ繝医Μ繧ケ繝 */
5252 static gchar *
5353 profile_list_to_text (ProfileList *profile_list)
5454 {
@@ -72,9 +72,9 @@
7272 }
7373
7474
75-/* ja:テキストをリスト化する
76- text,テキスト
77- RET,リスト */
75+/* ja:繝?く繧ケ繝医r繝ェ繧ケ繝亥喧縺吶k
76+ text,繝?く繧ケ繝
77+ RET,繝ェ繧ケ繝 */
7878 static ProfileList *
7979 profile_list_from_text (const gchar *text)
8080 {
@@ -82,13 +82,13 @@
8282 gint i, j = 0;
8383 ProfileList *p = NULL, *q, *r;
8484
85- /* ja:CRLFをLFに変換する */
85+ /* ja:CRLF繧鱈F縺ォ螟画鋤縺吶k */
8686 buf = g_strdup (text);
8787 for (i = 0; buf[i] != '\0'; i++)
8888 if (buf[i] != '\r' || buf[i + 1] != '\n')
8989 buf[j++] = buf[i];
9090 buf[j] = '\0';
91- /* ja:CRをLFに変換する */
91+ /* ja:CR繧鱈F縺ォ螟画鋤縺吶k */
9292 for (i = 0; buf[i] != '\0'; i++)
9393 if (buf[i] == '\r')
9494 buf[i] = '\n';
@@ -108,7 +108,7 @@
108108 while (p->prev)
109109 p = p->prev;
110110 r = p;
111- /* ja:リストを整理する */
111+ /* ja:繝ェ繧ケ繝医r謨エ逅?☆繧 */
112112 while (p)
113113 {
114114 gsize n;
@@ -155,9 +155,9 @@
155155 }
156156
157157
158-/* ja:ファイルをリスト化する
159- file,ファイル名
160- RET,リスト */
158+/* ja:繝輔ぃ繧、繝ォ繧偵Μ繧ケ繝亥喧縺吶k
159+ file,繝輔ぃ繧、繝ォ蜷
160+ RET,繝ェ繧ケ繝 */
161161 static ProfileList *
162162 profile_list_from_file (const gchar *file)
163163 {
@@ -177,8 +177,8 @@
177177 }
178178
179179
180-/* ja:初期化ファイルを解放する
181- profile_list,リスト */
180+/* ja:蛻晄悄蛹悶ヵ繧。繧、繝ォ繧定ァ」謾セ縺吶k
181+ profile_list,繝ェ繧ケ繝 */
182182 static void
183183 profile_list_free (ProfileList *profile_list)
184184 {
@@ -197,12 +197,12 @@
197197
198198 /******************************************************************************
199199 * *
200-* ja:初期化ファイル関数群(独自) *
200+* ja:蛻晄悄蛹悶ヵ繧。繧、繝ォ髢「謨ー鄒、(迢ャ閾ェ) *
201201 * *
202202 ******************************************************************************/
203-/* ja:初期化ファイルを開く
204- file,ファイル名
205- RET,プロファイル */
203+/* ja:蛻晄悄蛹悶ヵ繧。繧、繝ォ繧帝幕縺
204+ file,繝輔ぃ繧、繝ォ蜷
205+ RET,繝励Ο繝輔ぃ繧、繝ォ */
206206 Profile *
207207 profile_open (const gchar *file)
208208 {
@@ -267,9 +267,9 @@
267267 }
268268
269269
270-/* ja:初期化ファイルを閉じる
271- profile,プロファイル
272- RET,TRUE:正常終了,FALSE:エラー */
270+/* ja:蛻晄悄蛹悶ヵ繧。繧、繝ォ繧帝哩縺倥k
271+ profile,繝励Ο繝輔ぃ繧、繝ォ
272+ RET,TRUE:豁」蟶ク邨ゆコ?FALSE:繧ィ繝ゥ繝シ */
273273 gboolean
274274 profile_close (Profile *profile)
275275 {
@@ -277,7 +277,7 @@
277277 return TRUE;
278278 if (profile->edit)
279279 {
280- /* ja:変更があったとき */
280+ /* ja:螟画峩縺後≠縺」縺溘→縺 */
281281 gchar *text;
282282
283283 text = profile_list_to_text (profile->list);
@@ -295,11 +295,11 @@
295295 }
296296
297297
298-/* ja:初期化ファイルから文字列を取得する
299- profile,プロファイル
300- section,セクション
301- key,キー
302- RET,文字列,NULL:エラー */
298+/* ja:蛻晄悄蛹悶ヵ繧。繧、繝ォ縺九i譁?ュ怜?繧貞叙蠕励☆繧
299+ profile,繝励Ο繝輔ぃ繧、繝ォ
300+ section,繧サ繧ッ繧キ繝ァ繝ウ
301+ key,繧ュ繝シ
302+ RET,譁?ュ怜?,NULL:繧ィ繝ゥ繝シ */
303303 gchar *
304304 profile_get_string (Profile *profile,
305305 const gchar *section,
@@ -321,12 +321,12 @@
321321 }
322322
323323
324-/* ja:初期化ファイルから値のサイズ取得する
325- profile,プロファイル
326- section,セクション
327- key,キー
328- type,タイプ
329- RET,バイト数,0:エラー */
324+/* ja:蛻晄悄蛹悶ヵ繧。繧、繝ォ縺九i蛟、縺ョ繧オ繧、繧コ蜿門セ励☆繧
325+ profile,繝励Ο繝輔ぃ繧、繝ォ
326+ section,繧サ繧ッ繧キ繝ァ繝ウ
327+ key,繧ュ繝シ
328+ type,繧ソ繧、繝
329+ RET,繝舌う繝域焚,0:繧ィ繝ゥ繝シ */
330330 gsize
331331 profile_get_size (Profile *profile,
332332 const gchar *section,
@@ -377,14 +377,14 @@
377377 }
378378
379379
380-/* ja:初期化ファイルから値を取得する
381- profile,プロファイル
382- section,セクション
383- key,キー
384- value,値を入れるバッファ
385- size,値を入れるバッファのサイズ
386- type,タイプ
387- RET,TRUE:正常終了,FALSE:エラー */
380+/* ja:蛻晄悄蛹悶ヵ繧。繧、繝ォ縺九i蛟、繧貞叙蠕励☆繧
381+ profile,繝励Ο繝輔ぃ繧、繝ォ
382+ section,繧サ繧ッ繧キ繝ァ繝ウ
383+ key,繧ュ繝シ
384+ value,蛟、繧貞?繧後k繝舌ャ繝輔ぃ
385+ size,蛟、繧貞?繧後k繝舌ャ繝輔ぃ縺ョ繧オ繧、繧コ
386+ type,繧ソ繧、繝
387+ RET,TRUE:豁」蟶ク邨ゆコ?FALSE:繧ィ繝ゥ繝シ */
388388 gboolean
389389 profile_get_value (Profile *profile,
390390 const gchar *section,
@@ -455,14 +455,14 @@
455455 }
456456
457457
458-/* ja:初期化ファイルに値を設定する
459- profile,プロファイル
460- section,セクション
461- key,キー
462- value,値が入っているバッファ
463- size,値が入っているバッファのサイズ
464- type,タイプ
465- RET,TRUE:正常終了,FALSE:エラー */
458+/* ja:蛻晄悄蛹悶ヵ繧。繧、繝ォ縺ォ蛟、繧定ィュ螳壹☆繧
459+ profile,繝励Ο繝輔ぃ繧、繝ォ
460+ section,繧サ繧ッ繧キ繝ァ繝ウ
461+ key,繧ュ繝シ
462+ value,蛟、縺悟?縺」縺ヲ縺?k繝舌ャ繝輔ぃ
463+ size,蛟、縺悟?縺」縺ヲ縺?k繝舌ャ繝輔ぃ縺ョ繧オ繧、繧コ
464+ type,繧ソ繧、繝
465+ RET,TRUE:豁」蟶ク邨ゆコ?FALSE:繧ィ繝ゥ繝シ */
466466 gboolean
467467 profile_set_value (Profile *profile,
468468 const gchar *section,
@@ -490,7 +490,7 @@
490490 {
491491 if (q)
492492 {
493- /* ja:前のデータとの間にスペースを入れる */
493+ /* ja:蜑阪?繝??繧ソ縺ィ縺ョ髢薙↓繧ケ繝壹?繧ケ繧貞?繧後k */
494494 p = g_malloc (sizeof (ProfileList));
495495 p->type = PROFILE_DATA_TYPE_SPACE;
496496 p->data = p->section = p->key = p->value = NULL;
@@ -499,7 +499,7 @@
499499 q->next = p;
500500 q = p;
501501 }
502- /* ja:セクションもキーもないときにはセクションを作る */
502+ /* ja:繧サ繧ッ繧キ繝ァ繝ウ繧ゅく繝シ繧ゅ↑縺?→縺阪↓縺ッ繧サ繧ッ繧キ繝ァ繝ウ繧剃ス懊k */
503503 p = g_malloc (sizeof (ProfileList));
504504 p->type = PROFILE_DATA_TYPE_SECTION;
505505 p->data = g_strdup_printf ("[%s]", section);
@@ -521,7 +521,7 @@
521521 while (q->type == PROFILE_DATA_TYPE_SPACE && q->section
522522 && g_strcmp (p->section, section) == 0 && q->prev)
523523 q = q->prev;
524- /* ja:セクションの最後にキーを作る */
524+ /* ja:繧サ繧ッ繧キ繝ァ繝ウ縺ョ譛?蠕後↓繧ュ繝シ繧剃ス懊k */
525525 p = g_malloc (sizeof (ProfileList));
526526 p->type = PROFILE_DATA_TYPE_KEY;
527527 p->data = g_strdup_printf ("%s=", key);
@@ -569,10 +569,10 @@
569569 }
570570
571571
572-/* ja:初期化ファイルのセクションを削除する
573- profile,プロファイル
574- section,セクション
575- RET,TRUE:正常終了,FALSE:エラー */
572+/* ja:蛻晄悄蛹悶ヵ繧。繧、繝ォ縺ョ繧サ繧ッ繧キ繝ァ繝ウ繧貞炎髯、縺吶k
573+ profile,繝励Ο繝輔ぃ繧、繝ォ
574+ section,繧サ繧ッ繧キ繝ァ繝ウ
575+ RET,TRUE:豁」蟶ク邨ゆコ?FALSE:繧ィ繝ゥ繝シ */
576576 gboolean
577577 profile_delete_section (Profile *profile,
578578 const gchar *section)
@@ -603,11 +603,11 @@
603603 }
604604
605605
606-/* ja:初期化ファイルのキーを削除する
607- profile,プロファイル
608- section,セクション
609- key,キー
610- RET,TRUE:正常終了,FALSE:エラー */
606+/* ja:蛻晄悄蛹悶ヵ繧。繧、繝ォ縺ョ繧ュ繝シ繧貞炎髯、縺吶k
607+ profile,繝励Ο繝輔ぃ繧、繝ォ
608+ section,繧サ繧ッ繧キ繝ァ繝ウ
609+ key,繧ュ繝シ
610+ RET,TRUE:豁」蟶ク邨ゆコ?FALSE:繧ィ繝ゥ繝シ */
611611 gboolean
612612 profile_delete_key (Profile *profile,
613613 const gchar *section,
@@ -640,9 +640,9 @@
640640 }
641641
642642
643-/* ja:初期化ファイルのセクションを列挙する
644- profile,プロファイル
645- RET,セクションのリスト,NULL:エラー */
643+/* ja:蛻晄悄蛹悶ヵ繧。繧、繝ォ縺ョ繧サ繧ッ繧キ繝ァ繝ウ繧貞?謖吶☆繧
644+ profile,繝励Ο繝輔ぃ繧、繝ォ
645+ RET,繧サ繧ッ繧キ繝ァ繝ウ縺ョ繝ェ繧ケ繝?NULL:繧ィ繝ゥ繝シ */
646646 GList *
647647 profile_enum_section (Profile *profile)
648648 {
@@ -663,10 +663,10 @@
663663 }
664664
665665
666-/* ja:初期化ファイルのキーを列挙する
667- profile,プロファイル
668- section,セクション
669- RET,セクションのリスト,NULL:エラー */
666+/* ja:蛻晄悄蛹悶ヵ繧。繧、繝ォ縺ョ繧ュ繝シ繧貞?謖吶☆繧
667+ profile,繝励Ο繝輔ぃ繧、繝ォ
668+ section,繧サ繧ッ繧キ繝ァ繝ウ
669+ RET,繧サ繧ッ繧キ繝ァ繝ウ縺ョ繝ェ繧ケ繝?NULL:繧ィ繝ゥ繝シ */
670670 GList *
671671 profile_enum_key (Profile *profile,
672672 const gchar *section)
@@ -692,7 +692,7 @@
692692
693693 /******************************************************************************
694694 * *
695-* ja:初期化ファイル関数群(互換) *
695+* ja:蛻晄悄蛹悶ヵ繧。繧、繝ォ髢「謨ー鄒、(莠呈鋤) *
696696 * *
697697 ******************************************************************************/
698698 Profile *
@@ -751,7 +751,7 @@
751751 *error = NULL;
752752 if (!profile)
753753 return FALSE;
754- /* ja:リスト解放 */
754+ /* ja:繝ェ繧ケ繝郁ァ」謾セ */
755755 profile_list_free (profile->list);
756756 profile_list_free (profile->sublist);
757757 profile->list = profile->sublist = NULL;
--- vmaid/trunk/misc/profile.h (revision 319)
+++ vmaid/trunk/misc/profile.h (revision 320)
@@ -1,6 +1,6 @@
11 /*
22 profile
3- copyright (c) 1998-2008 Kazuki IWAMOTO http://www.maid.org/ iwm@maid.org
3+ copyright (c) 1998-2010 Kazuki Iwamoto http://www.maid.org/ iwm@maid.org
44
55 This program is free software: you can redistribute it and/or modify
66 it under the terms of the GNU General Public License as published by
@@ -36,29 +36,29 @@
3636
3737 /******************************************************************************
3838 * *
39-* ja:初期化ファイル関数群(独自) *
39+* ja:蛻晄悄蛹悶ヵ繧。繧、繝ォ髢「謨ー鄒、(迢ャ閾ェ) *
4040 * *
4141 ******************************************************************************/
42-/* ja:初期化ファイルを開く
43- file,ファイル名
44- RET,プロファイル */
42+/* ja:蛻晄悄蛹悶ヵ繧。繧、繝ォ繧帝幕縺
43+ file,繝輔ぃ繧、繝ォ蜷
44+ RET,繝励Ο繝輔ぃ繧、繝ォ */
4545 Profile *
4646 profile_open (const gchar *file);
4747
4848
49-/* ja:初期化ファイルを閉じる
50- profile,プロファイル
51- RET,TRUE:正常終了,FALSE:エラー */
49+/* ja:蛻晄悄蛹悶ヵ繧。繧、繝ォ繧帝哩縺倥k
50+ profile,繝励Ο繝輔ぃ繧、繝ォ
51+ RET,TRUE:豁」蟶ク邨ゆコ?FALSE:繧ィ繝ゥ繝シ */
5252 gboolean
5353 profile_close (Profile *profile);
5454
5555
56-/* ja:初期化ファイルから値のサイズ取得する
57- profile,プロファイル
58- section,セクション
59- key,キー
60- type,タイプ
61- RET,バイト数,0:エラー */
56+/* ja:蛻晄悄蛹悶ヵ繧。繧、繝ォ縺九i蛟、縺ョ繧オ繧、繧コ蜿門セ励☆繧
57+ profile,繝励Ο繝輔ぃ繧、繝ォ
58+ section,繧サ繧ッ繧キ繝ァ繝ウ
59+ key,繧ュ繝シ
60+ type,繧ソ繧、繝
61+ RET,繝舌う繝域焚,0:繧ィ繝ゥ繝シ */
6262 gsize
6363 profile_get_size (Profile *profile,
6464 const gchar *section,
@@ -66,11 +66,11 @@
6666 const guint type);
6767
6868
69-/* ja:初期化ファイルから文字列を取得する
70- profile,プロファイル
71- section,セクション
72- key,キー
73- RET,文字列,NULL:エラー */
69+/* ja:蛻晄悄蛹悶ヵ繧。繧、繝ォ縺九i譁?ュ怜?繧貞叙蠕励☆繧
70+ profile,繝励Ο繝輔ぃ繧、繝ォ
71+ section,繧サ繧ッ繧キ繝ァ繝ウ
72+ key,繧ュ繝シ
73+ RET,譁?ュ怜?,NULL:繧ィ繝ゥ繝シ */
7474 gchar *
7575 profile_get_string (Profile *profile,
7676 const gchar *section,
@@ -77,14 +77,14 @@
7777 const gchar *key);
7878
7979
80-/* ja:初期化ファイルから値を取得する
81- profile,プロファイル
82- section,セクション
83- key,キー
84- value,値を入れるバッファ
85- size,値を入れるバッファのサイズ
86- type,タイプ
87- RET,TRUE:正常終了,FALSE:エラー */
80+/* ja:蛻晄悄蛹悶ヵ繧。繧、繝ォ縺九i蛟、繧貞叙蠕励☆繧
81+ profile,繝励Ο繝輔ぃ繧、繝ォ
82+ section,繧サ繧ッ繧キ繝ァ繝ウ
83+ key,繧ュ繝シ
84+ value,蛟、繧貞?繧後k繝舌ャ繝輔ぃ
85+ size,蛟、繧貞?繧後k繝舌ャ繝輔ぃ縺ョ繧オ繧、繧コ
86+ type,繧ソ繧、繝
87+ RET,TRUE:豁」蟶ク邨ゆコ?FALSE:繧ィ繝ゥ繝シ */
8888 gboolean
8989 profile_get_value (Profile *profile,
9090 const gchar *section,
@@ -94,14 +94,14 @@
9494 const guint type);
9595
9696
97-/* ja:初期化ファイルに値を設定する
98- profile,プロファイル
99- section,セクション
100- key,キー
101- value,値が入っているバッファ
102- size,値が入っているバッファのサイズ
103- type,タイプ
104- RET,TRUE:正常終了,FALSE:エラー */
97+/* ja:蛻晄悄蛹悶ヵ繧。繧、繝ォ縺ォ蛟、繧定ィュ螳壹☆繧
98+ profile,繝励Ο繝輔ぃ繧、繝ォ
99+ section,繧サ繧ッ繧キ繝ァ繝ウ
100+ key,繧ュ繝シ
101+ value,蛟、縺悟?縺」縺ヲ縺?k繝舌ャ繝輔ぃ
102+ size,蛟、縺悟?縺」縺ヲ縺?k繝舌ャ繝輔ぃ縺ョ繧オ繧、繧コ
103+ type,繧ソ繧、繝
104+ RET,TRUE:豁」蟶ク邨ゆコ?FALSE:繧ィ繝ゥ繝シ */
105105 gboolean
106106 profile_set_value (Profile *profile,
107107 const gchar *section,
@@ -111,20 +111,20 @@
111111 const guint type);
112112
113113
114-/* ja:初期化ファイルのセクションを削除する
115- profile,プロファイル
116- section,セクション
117- RET,TRUE:正常終了,FALSE:エラー */
114+/* ja:蛻晄悄蛹悶ヵ繧。繧、繝ォ縺ョ繧サ繧ッ繧キ繝ァ繝ウ繧貞炎髯、縺吶k
115+ profile,繝励Ο繝輔ぃ繧、繝ォ
116+ section,繧サ繧ッ繧キ繝ァ繝ウ
117+ RET,TRUE:豁」蟶ク邨ゆコ?FALSE:繧ィ繝ゥ繝シ */
118118 gboolean
119119 profile_delete_section (Profile *profile,
120120 const gchar *section);
121121
122122
123-/* ja:初期化ファイルのキーを削除する
124- profile,プロファイル
125- section,セクション
126- key,キー
127- RET,TRUE:正常終了,FALSE:エラー */
123+/* ja:蛻晄悄蛹悶ヵ繧。繧、繝ォ縺ョ繧ュ繝シ繧貞炎髯、縺吶k
124+ profile,繝励Ο繝輔ぃ繧、繝ォ
125+ section,繧サ繧ッ繧キ繝ァ繝ウ
126+ key,繧ュ繝シ
127+ RET,TRUE:豁」蟶ク邨ゆコ?FALSE:繧ィ繝ゥ繝シ */
128128 gboolean
129129 profile_delete_key (Profile *profile,
130130 const gchar *section,
@@ -131,17 +131,17 @@
131131 const gchar *key);
132132
133133
134-/* ja:初期化ファイルのセクションを列挙する
135- profile,プロファイル
136- RET,セクションのリスト,NULL:エラー */
134+/* ja:蛻晄悄蛹悶ヵ繧。繧、繝ォ縺ョ繧サ繧ッ繧キ繝ァ繝ウ繧貞?謖吶☆繧
135+ profile,繝励Ο繝輔ぃ繧、繝ォ
136+ RET,繧サ繧ッ繧キ繝ァ繝ウ縺ョ繝ェ繧ケ繝?NULL:繧ィ繝ゥ繝シ */
137137 GList *
138138 profile_enum_section (Profile *profile);
139139
140140
141-/* ja:初期化ファイルのキーを列挙する
142- profile,プロファイル
143- section,セクション
144- RET,セクションのリスト,NULL:エラー */
141+/* ja:蛻晄悄蛹悶ヵ繧。繧、繝ォ縺ョ繧ュ繝シ繧貞?謖吶☆繧
142+ profile,繝励Ο繝輔ぃ繧、繝ォ
143+ section,繧サ繧ッ繧キ繝ァ繝ウ
144+ RET,繧サ繧ッ繧キ繝ァ繝ウ縺ョ繝ェ繧ケ繝?NULL:繧ィ繝ゥ繝シ */
145145 GList *
146146 profile_enum_key (Profile *profile,
147147 const gchar *section);
@@ -149,7 +149,7 @@
149149
150150 /******************************************************************************
151151 * *
152-* ja:初期化ファイル関数群(互換) *
152+* ja:蛻晄悄蛹悶ヵ繧。繧、繝ォ髢「謨ー鄒、(莠呈鋤) *
153153 * *
154154 ******************************************************************************/
155155 #ifndef USE_KEYFILE_EMULATE
--- vmaid/trunk/misc/fileio.c (revision 319)
+++ vmaid/trunk/misc/fileio.c (revision 320)
@@ -360,7 +360,7 @@
360360 while (i < leng)
361361 if (G_IS_DIR_SEPARATOR (absolate[i]) && absolate[i + 1] == '.'
362362 && absolate[i + 2] == '.'
363- && (G_IS_DIR_SEPARATOR (absolate[i + 3]) || absolate[i + 3] == '\0'))
363+ && (G_IS_DIR_SEPARATOR (absolate[i + 3]) || absolate[i + 3] == '\0'))
364364 {
365365 gint j;
366366
@@ -638,7 +638,7 @@
638638 # endif /* HAVE_FLOCK */
639639 (mode == FILEIO_MODE_CREATE_ALWAYS && (
640640 # ifdef HAVE_FTRUNCATE
641- ftruncate (fd, 0) ||
641+ ftruncate (fd, 0) ||
642642 # endif /* HAVE_FTRUNCATE */
643643 lseek (fd, 0, SEEK_SET) == -1)))
644644 {
@@ -908,7 +908,7 @@
908908 critical = TRUE;
909909 # endif /* USE_THREAD */
910910 result = fio && g_list_find (glist_fileio, fio)
911- ? ftruncate (fio->fd, offset) == 0: FALSE;
911+ ? ftruncate (fio->fd, offset) == 0 : FALSE;
912912 # ifdef USE_THREAD
913913 critical = FALSE;
914914 G_UNLOCK (critical);
--- vmaid/trunk/Makefile.msc.in (revision 319)
+++ vmaid/trunk/Makefile.msc.in (revision 320)
@@ -270,6 +270,8 @@
270270 copy /y vmaid.exe vmaid-$(VERSION)-win32\bin
271271 mkdir vmaid-$(VERSION)-win32\doc
272272 mkdir vmaid-$(VERSION)-win32\doc\vmaid-$(VERSION)
273+ mkdir vmaid-$(VERSION)-win32\doc\vmaid-$(VERSION)\en
274+ mkdir vmaid-$(VERSION)-win32\doc\vmaid-$(VERSION)\ja
273275 copy /y $(TOP)\AUTHORS vmaid-$(VERSION)-win32\doc\vmaid-$(VERSION)
274276 copy /y $(TOP)\CONTRIBUTORS vmaid-$(VERSION)-win32\doc\vmaid-$(VERSION)
275277 copy /y $(TOP)\COPYING vmaid-$(VERSION)-win32\doc\vmaid-$(VERSION)
@@ -278,10 +280,12 @@
278280 copy /y $(TOP)\INSTALL.ja vmaid-$(VERSION)-win32\doc\vmaid-$(VERSION)
279281 copy /y $(TOP)\NEWS vmaid-$(VERSION)-win32\doc\vmaid-$(VERSION)
280282 copy /y $(TOP)\README vmaid-$(VERSION)-win32\doc\vmaid-$(VERSION)
281- mkdir vmaid-$(VERSION)-win32\lib
282- mkdir vmaid-$(VERSION)-win32\lib\locale
283- mkdir vmaid-$(VERSION)-win32\lib\locale\ja
284- mkdir vmaid-$(VERSION)-win32\lib\locale\ja\LC_MESSAGES
285- copy /y locale\ja\LC_MESSAGES\vmaid.mo vmaid-$(VERSION)-win32\lib\locale\ja\LC_MESSAGES
283+ copy /y $(TOP)\doc\en\*.html vmaid-$(VERSION)-win32\doc\vmaid-$(VERSION)\en
284+ copy /y $(TOP)\doc\ja\*.html vmaid-$(VERSION)-win32\doc\vmaid-$(VERSION)\ja
285+ mkdir vmaid-$(VERSION)-win32\share
286+ mkdir vmaid-$(VERSION)-win32\share\locale
287+ mkdir vmaid-$(VERSION)-win32\share\locale\ja
288+ mkdir vmaid-$(VERSION)-win32\share\locale\ja\LC_MESSAGES
289+ copy /y locale\ja\LC_MESSAGES\vmaid.mo vmaid-$(VERSION)-win32\share\locale\ja\LC_MESSAGES
286290 zip -9 -r vmaid-$(VERSION)-win32.zip vmaid-$(VERSION)-win32
287291 rmdir /q /s vmaid-$(VERSION)-win32
--- vmaid/trunk/orz/orzmdi.c (revision 319)
+++ vmaid/trunk/orz/orzmdi.c (revision 320)
@@ -42,7 +42,7 @@
4242 gboolean created; /* ja:TRUE:新規作成,FALSE:既存ファイル */
4343 gboolean edited; /* ja:TRUE:編集済み,FALSE:未編集 */
4444 gchar *file;
45- gint same; /* -2:名前のみ,-1:フルパス,0...:フルパス+数字 */
45+ gint same; /* ja:-2:名前のみ,-1:フルパス,0...:フルパス+数字 */
4646 GtkWidget *child, *image, *label;
4747 OrzMdi *mdi;
4848 };
Show on old repository browser