BCCを使っています SendInputとかの関数の中身(どうコーディングされているか)を見たいのですが、 WinAPIを使うときにインクルードしているファイルを見ても SendInput( IN UINT cInputs, // number of input in the array IN LPINPUT pInputs, // array of inputs IN int cbSize); // sizeof(INPUT) としかなっていませんが、実際の動作はCではコーディングされてないのでしょうか? どんな動作をしているのか見たいのですが、そのような時はどういう風に調べれば よいのでしょうか ヒントだけでもいいので教えてください 検索方法が悪いのか、たいした情報が出てきません・・・
構造体は Public Structure PROCESSENTRY32 Public dwSize As Integer Public cntUsage As Integer Public th32ProcessID As Integer Public th32DefaultHeapID As Integer Public th32ModuleID As Integer Public cntThreads As Integer Public th32ParentProcessID As Integer Public pcPriClassBase As Integer Public dwFlags As Integer Public szExeFile() As Byte End Structure
ReDim udtProcessEntry32.szExeFile(259) Dim i As Integer For i = 0 To 259 udtProcessEntry32.szExeFile(i) = 0 Next udtProcessEntry32.dwSize = Len(udtProcessEntry32)
If Process32First(lngProcessSnapHandle, _ udtProcessEntry32) <> 0 Then