タグ

関連タグで絞り込む (0)

  • 関連タグはありません

タグの絞り込みを解除

binaryとC++とwindowsに関するWackyのブックマーク (5)

  • Parallel Computing

    Parallel Computing Parallel computing is a form of computation in which multiple operations are carried out simultaneously. Visual Studio 2012, the .NET Framework, and Visual C++ all contain extensive support for writing, debugging, and tuning parallel applications. Parallel computing is closely related to asynchronous programming, using many of the same core concepts and support. Asynchronous pro

    Parallel Computing
    Wacky
    Wacky 2007/05/20
    読み取り/書き込みロックは、複数のリーダーによる同時アクセスを許可するが、データの保護のために更新時にはライタの排他アクセスのみを許可する場合に使用されます。
  • APIHijack - A Library for easy DLL function hooking.

    This library allows you to replace functions in other DLLs with functions from your own DLL. Download source files and demo project - 102 Kb Introduction Based on DelayLoadProfileDLL.CPP, by Matt Pietrek for MSJ February 2000. This code is intended to be included in a DLL inserted through a global Windows Hook (CBT hook for example). It will replace functions from other DLLs (e.g. DDRAW.DLL) with

  • listexp.exe / listexp2.exe : ちよクロシステム

    CloneCD4勝手に日語化 CloneCD4_jp.lzh 18,440Byte (2002/07/05) CloneCD4用の言語ファイルです。 CloneCDを別途用意し、インストールしておいてください。 この言語ファイルは以下のバージョンのCloneCDに対応しています。 4.0.0.0 4.0.1.6 旧版 CloneCD_jp_106.lzh CloneCD_jp_106_nh.lzh CloneCD_jp_106_src.lzh CloneCD_jp_105.lzh CloneCD_jp_105_nh.lzh CloneCD_jp_104_.lzh CloneCD_jp_104_nh_.lzh CloneCD_jp_103.lzh CloneCD_jp_103_nh.lzh CloneCD_jp_102.lzh CloneCD_jp_102_nh.lzh CloneCD_j

    Wacky
    Wacky 2006/03/21
    アプリケーションとDLLの間に入る偽のDLLを作るときに役立つツールです。listexp.exeはエクスポート情報をリストアップします。
  • CLR 2.0 でのデバッグ実行 - NyaRuRuが地球にいたころ

    827 :デフォルトの名無しさん :2005/12/24(土) 00:19:48 C#コンソールアプリの新規プロジェクトを作る 参照設定は、System, System.Drawing 以下をコピペusing System; using System.Drawing; class Program { static void Main(string[] args) { int w = 1000; int h = 1000; DateTime dt = DateTime.Now; Bitmap b = new Bitmap(w, h); for (int y = 0; y < h; y++) for (int x = 0; x < w; x++) b.SetPixel(x, y, Color.FromArgb(x + y)); TimeSpan ts = DateTime.Now - dt;

    CLR 2.0 でのデバッグ実行 - NyaRuRuが地球にいたころ
    Wacky
    Wacky 2006/02/18
    最も CPU 占有率が高かったのは LogHelp_TerminateOnAssert という関数でした
  • 安全な DLL の中にあるC++ のクラスのエクスポート

    最初に DLL とは? Windows には Dynamic Link Library ( 以下 DLL ) という、プロセス開始時・起動中に動的にライブラリをリンクする機能があります。このDLL を使うことで、 プログラムを他のアプリケーションと共有してメモリの節約になる 普通のライブラリとしても使え、アイコンやダイアログなどのリソースも格納することが出来る。 DLL の中にある処理やリソースを変更して DLL の変更のみでプログラムを修正することが出来る プロセス間でのメモリ共有を行うことも出来きる UNIX系にも似たような動的リンクライブラリがありますが、UNIX系のはコンパイラ側での対応であり、C言語のソースコードで互換性を保っているUNIXのアプリケーションで、動的にバイナリをリンクしにくい性質があるため、それほど使える機能ではないでしょう。 逆に DLL の欠点 DLLのバージ

    Wacky
    Wacky 2005/07/04
    Microsoft では DLL のバージョン問題と C++ でクラスのエクスポートが安全にできない問題を解決するため COM を利用しています。
  • 1