Search:

Type: Posts; User: Damos

Search: Search took 0.01 seconds.

  1. Replies
    4
    Views
    3,665

    if you include your cpp file in your .h file you...

    if you include your cpp file in your .h file you will cause the compiler to compile that code for a second time in it's build process.
    As most build process's compile each .cpp file into .obj files....
  2. Replies
    19
    Views
    9,017

    No crt library! no Icon's or resources, exception...

    No crt library! no Icon's or resources, exception handling turned off & buffer checking off.
    This does however mean that you have to do your own memory managment(you can still override new &...
  3. Replies
    19
    Views
    9,017

    I have a skeleton GUI app written in c++ thats...

    I have a skeleton GUI app written in c++ thats weighs in at a mere 5K!
  4. Replies
    9
    Views
    3,893

    The 'value' would be assembled as say something...

    The 'value' would be assembled as say something like: dword ptr[ebp-4]
    so the line:

    out value,al

    be assembled as:

    out dword ptr[ebp-4],al

    but there is no opcode for this as it is illegal...
Results 1 to 4 of 4