|
ダメ元の質問ですが。
Win32 APIやDLL関数を呼び出すには?
http://www.atmarkit.co.jp/fdotnet/dotnettips/024w32api/w32api.html
という記事を見かけたので。
// beep.cs ----------------------------
using System;
using System.Runtime.InteropServices;
class BeepProgram {
[DllImport("HIDEMARU.EXE")]
private extern static bool beginsel();
private static void Main() {
beginsel();
}
}
=================
のようなのを書けるか試してみました。
ハンドルされていない例外 : System.EntryPointNotFoundException: DLL HIDEMARU.EXE
の beginsel というエントリ ポイントが見つかりません。
at BeepProgram.beginsel()
at BeepProgram.Main()
------------
当然ですね。
|
|