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

Search:

Type: Posts; User: icealys

Search: Search took 0.03 seconds.

  1. Replies
    3
    Views
    1,475

    Re: command line arguments

    I am a beginner to understanding how programs work and I was curious .
    Thx for the reply :)
  2. Replies
    3
    Views
    1,475

    command line arguments

    how does the command line interpreter pass parameters to int main?
    Does the kernel use a callback function to get int main's apinumber in the table from the process environment block in order to...
  3. Replies
    6
    Views
    1,824

    Re: making a text editor

    a text editor like notepad.
    I just wanted to understand how input is received as character codes and then translated into drawing characters on the screen.
    Would you need to make a parser in that...
  4. Replies
    6
    Views
    1,824

    making a text editor

    when making a text editor do you have to create a parser for it or are parsers just used in compilers and interpreters?
  5. Replies
    4
    Views
    2,423

    Re: what does dllmain entry point do?

    so what happens when dllmain is called after injecting a dll?
  6. Replies
    4
    Views
    2,423

    what does dllmain entry point do?

    how does dllmain execute the dll ? and how does it go from running in kernel mode to executing the dll within the user space of the program?
  7. Replies
    4
    Views
    5,672

    Re: windows api related

    by reading the section on memory management, basically what I got from it is that a user process is able to load a DLL into kernel space and then the processor switches modes to kernel mode in order...
  8. Replies
    4
    Views
    5,672

    windows api related

    I am confused as to how a process gets virtual address space and then the OS maps the exe and also maps the references to the DLL used for windows api. When the software interrupt occurs the system...
Results 1 to 8 of 8





Click Here to Expand Forum to Full Width

Featured