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

Search:

Type: Posts; User: sgame

Search: Search took 0.03 seconds.

  1. Replies
    4
    Views
    2,048

    Re: issue with asm intel syntax

    I changed my code a little bite. I want to capture the value into res and return this value using return.



    void *kernel_addr()
    {
    HMODULE res=0;
    asm(".intel_syntax noprefix\n");
    ...
  2. Replies
    4
    Views
    2,048

    issue with asm intel syntax

    Hi;

    My code below give me two warnings when compile with gcc, also it has no effect during execution. Warnings are :

    - warning: 'naked' attribute directive ignored [-Wattributes]
    - warning: no...
  3. Replies
    1
    Views
    945

    Grab special lines from a file

    Hello

    I have a file that contain different content, some lines inside that file looks like that :

    Time : xx:xx:xx
    Time : xx:xx:xx

    So, I want to grab lines that start with "Time : " and put...
  4. Replies
    1
    Views
    1,376

    getprocaddress didn't load coinitialize

    Hello
    I am working to load CoInitialize using getprocaddress, but I don't know why this function fail and cash program! It didn't happen with other functions in other libraries like kernel32.dll....
Results 1 to 4 of 4





Click Here to Expand Forum to Full Width

Featured