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

Search:

Type: Posts; User: mkukli

Search: Search took 0.02 seconds.

  1. Replies
    4
    Views
    1,388

    Re: typedef and static libraries

    I can't show code for this, but I can give an overview.

    There are two main compilations being done - a static library, and an app that is using it.

    The define LIB is defined if it is the...
  2. Replies
    4
    Views
    1,388

    typedef and static libraries

    I'm trying to create a static abstraction system, where I have a system library and an application.

    The System Library has a function that takes a BufferObject * as a parameter - the header that...
  3. Replies
    1
    Views
    1,493

    Re: Memory allocation per static library

    My mistake -- I had a declaration of the delete operator without arguments, which was causing my delete operator to be called on objects that were not created by my library.
  4. Replies
    1
    Views
    1,493

    Memory allocation per static library

    Hello,

    Odd question today...

    I am writing software that uses a static library for most of its runtime.

    The library includes a memory debugger that uses overloaded new/delete and replacement...
  5. Integer Aligned memcpy, and 64-bit integer speeds

    Two questions in this one:

    Is memcpy on some platform libraries integer-aligned, or is it always character aligned? I have to do a large batch copy of data that is integer aligned, meaning I know...
  6. Replies
    1
    Views
    4,149

    Alternative C++ Preprocessing

    Hey there,

    What I'm trying to do is make declaring objects for a script virtual machine transparent, and the system I had before was a combination of the C Preprocessor and CPP templates which...
Results 1 to 6 of 6





Click Here to Expand Forum to Full Width

Featured