Re: gdk_pixbuf_new_from_file_utf8 -- where it is defined?



On Fri, 2015-01-02 at 16:29 -0800, Jasper St. Pierre wrote:
On Fri, Jan 2, 2015 at 4:16 PM, Stefan Salewski <mail ssalewski de> wrote:

I am working on GTK3 wrappers/bindings for Nim language.


You sort of answered your own question here :)

Think about what happens when this #define is active and somebody does


Ah yes, only plain old alias...

#include <stdio.h>
#define foo foo_utf8

int foo()
{
  printf("hello\n");
  return 5;
}

int main()
{
  int i;
  i = foo();
  i = foo_utf8();
  return 0;
}




[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]