Search:

Type: Posts; User: tabstop

Search: Search took 0.10 seconds.

  1. Replies
    17
    Views
    4,055

    What do you mean "there are no reports of these...

    What do you mean "there are no reports of these functions being declared more than once"? You've been complaining about the reports of these functions being declared more than once this whole...
  2. Replies
    17
    Views
    4,055

    If they weren't multiple definitions, you...

    If they weren't multiple definitions, you wouldn't be getting the error. "Multiple definitions" is a linker problem, not a compiler problem, which is why you didn't see it earlier -- if the files...
  3. Replies
    17
    Views
    4,055

    Again, "optimized_image" is a pointer. This...

    Again, "optimized_image" is a pointer. This means that "*optimized_image" isn't a pointer. If you want to return a pointer, you need to return a pointer, not not-a-pointer.

    And again, make sure...
  4. Replies
    17
    Views
    4,055

    I have no idea what this could even mean. The...

    I have no idea what this could even mean. The variable already is a pointer, so how you could change the variable to be a pointer doesn't follow.

    Multiple definitions generally means either "I've...
  5. Replies
    17
    Views
    4,055

    If you want to return a pointer, return a...

    If you want to return a pointer, return a pointer. "optimized_image" is a pointer. "*optimized_image" is not.
Results 1 to 5 of 5