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

Search:

Type: Posts; User: egmackenzie

Search: Search took 0.04 seconds.

  1. Replies
    2
    Views
    5,473

    Re: using functions from schannel.dll

    FIXED: The problem was in the typedef:

    It should not include the variable names.
    It should be:
    typedef BOOL (WINAPI *EMPTYPTR)(LPSTR, DWORD);

    method:
    {
    .....
  2. Replies
    2
    Views
    5,473

    Re: using functions from schannel.dll

    Also, some of the time I get an error: A buffer overrun has occurred in .exe which has corrupted the program's internal state. Press break to debug or continue to terminate
  3. Replies
    2
    Views
    5,473

    using functions from schannel.dll

    Hi,
    I am working on a project which requires me to clear the SsleCache. I have found a way to do this through schannel.dll.
    A sample of my code:


    typedef BOOL (*EmptyCachePtr)(LPSTR...
  4. Replies
    0
    Views
    4,095

    using functions from schannel.dll

    Hi,
    I am working on a project which requires me to clear the SsleCache. I have found a way to do this through schannel.dll.
    A sample of my code:
    <code>
    HMODULE hSchannel;

    hSchannel =...
Results 1 to 4 of 4





Click Here to Expand Forum to Full Width

Featured