CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: adisel

Search: Search took 0.02 seconds.

  1. Replies
    3
    Views
    910

    Re: Analyzing ISAPI filter using BoundsChecker

    Thanks Victor!

    I saw that it is a common issue, for example
    http://kb.microfocus.com/display/4/kb/article.aspx?aid=11032

    Do you know how to use Wait for Process option? I think that can be the...
  2. Replies
    3
    Views
    651

    Re: Cant exit the loop, help

    I guess this is an enum starts with 1. If so, you should change the while condition to:
    while (yourmove==1 || yourmove==2 || yourmove==3);
  3. Replies
    3
    Views
    910

    Analyzing ISAPI filter using BoundsChecker

    Hi,
    I wrote an ISAPI filter for IIS5 under windows 2000 and I want to analyze the dll.
    I am using the "Understanding BoundsChecker" book, chapter 7 "Analyzing Complex
    Applications", section...
  4. Replies
    1
    Views
    3,144

    GetProcAddress Issue

    Hi All,
    I am getting an access violation when executing a function that was dynamically loaded from a dll. A pointer to std::map is passed as a parameter to the function, and when calling the...
Results 1 to 4 of 4





Click Here to Expand Forum to Full Width

Featured