Forums: Open Discussion (Thread #482)

共同開発者を募集中です (2002-05-18 13:27 by gaogao #700)

協力してくれる方がいれば連絡してください。

ではでは

Reply to #700×

You can not use Wiki syntax
You are not logged in. To discriminate your posts from the rest, you need to pick a nickname. (The uniqueness of nickname is not reserved. It is possible that someone else could use the exactly same nickname. If you want assurance of your identity, you are recommended to login before posting.) Login

RE: 共同開発者を募集中です (2002-07-22 22:01 by cheebow #1485)

このプロジェクトに非常に興味があります。
しかし、インタプリタ開発の知識はほとんどなく、オープンソースでの開発も未経験なのです。
こんな僕でも何か出来るでしょうか?

それから、先ほどソースをCheckoutしたのですが
TJFileObject.GetLength内のGetFileSizeのところで、コンパイルが止まってしまいます。
これって、僕のところだけの問題でしょうか?
Reply to #700

Reply to #1485×

You can not use Wiki syntax
You are not logged in. To discriminate your posts from the rest, you need to pick a nickname. (The uniqueness of nickname is not reserved. It is possible that someone else could use the exactly same nickname. If you want assurance of your identity, you are recommended to login before posting.) Login

RE: 共同開発者を募集中です (2002-07-28 22:57 by gaogao #1527)

どうも、はじめまして。

プロジェクトメンバーに登録しましたので
確認してみてください。

開発については、
特に活発にやっているわけではなく、
各自で変なところを直したりとか、です。

>TJFileObject.GetLength内のGetFileSizeのところで、コンパイルが止まってしまいます。

開発はDelphi5なので多分名前が衝突しているのではないかと。適当に直してみてください。
Reply to #700

Reply to #1527×

You can not use Wiki syntax
You are not logged in. To discriminate your posts from the rest, you need to pick a nickname. (The uniqueness of nickname is not reserved. It is possible that someone else could use the exactly same nickname. If you want assurance of your identity, you are recommended to login before posting.) Login

RE: 共同開発者を募集中です (2002-07-29 00:24 by cheebow #1530)

メンバー登録ありがとうございました。
確認しました。

で、GetFileSizeなんですが、ecma_extobject.pas中でusesされているユニットの中ではWindowsにだけ定義されています。でも、この定義内容はファイルハンドルを取るものなので、エラーが起きているようです。ファイル名を引数とするGetFileSizeは、CheckOutしたファイル群の中には見つからないようです。この関数はどこで定義されているのでしょうか?
僕も、Delphi5を使っているので基本的な環境は同じだと思います。
お手数かけて申しわけありません。
Reply to #1527

Reply to #1530×

You can not use Wiki syntax
You are not logged in. To discriminate your posts from the rest, you need to pick a nickname. (The uniqueness of nickname is not reserved. It is possible that someone else could use the exactly same nickname. If you want assurance of your identity, you are recommended to login before posting.) Login

GetFileSize (2002-07-29 22:03 by gaogao #1538)

間違えて同名の別のユニットを入れてしまったのかもしれないです。

function GetFileSize(const FileName: String): Integer;
//ファイルサイズを取得
var
SR :TSearchRec;
begin
//ファイルサイズ取得
if FindFirst(FileName,faHidden or faArchive or faSysFile or faReadOnly ,SR) = 0 then
begin
Result := SR.Size;
FindClose(SR);
end
else
Result := 0;
end;
Reply to #700

Reply to #1538×

You can not use Wiki syntax
You are not logged in. To discriminate your posts from the rest, you need to pick a nickname. (The uniqueness of nickname is not reserved. It is possible that someone else could use the exactly same nickname. If you want assurance of your identity, you are recommended to login before posting.) Login

RE: GetFileSize (2002-07-29 23:12 by cheebow #1540)

ありがとうございますー。了解です。
で、この関数どのユニットに追加しましょう?
もし、可能でしたら、この関数を追加したものをCommitしてもらえるとありがたいのですけども。
もし、指示してもらえるならこっちで試しにUpdateしてみてもいいんですけど。
なんか、指示待ち坊主ですみません。^^;
Reply to #1538

Reply to #1540×

You can not use Wiki syntax
You are not logged in. To discriminate your posts from the rest, you need to pick a nickname. (The uniqueness of nickname is not reserved. It is possible that someone else could use the exactly same nickname. If you want assurance of your identity, you are recommended to login before posting.) Login

RE: 共同開発者を募集中です (2002-12-01 23:22 by shobohn #2893)

DMonkeyプロジェクトメンバーの皆さん、はじめまして。shobohnと申します。
たいしたことは出来ないので恐縮ですが、このプロジェクトのメンバーに加えていただきたく、お願いに参りました。
(個人的に大変便利に利用させて頂いてるので)
Reply to #700

Reply to #2893×

You can not use Wiki syntax
You are not logged in. To discriminate your posts from the rest, you need to pick a nickname. (The uniqueness of nickname is not reserved. It is possible that someone else could use the exactly same nickname. If you want assurance of your identity, you are recommended to login before posting.) Login