Search

October 11
General »
...Storage class/attribute or scope guard
- `extern` and `extern` `(` *Tokens* `)` ― Storage...
October 11
Learn »
```d
extern int x;
int y;

pragma(msg, __traits(isSame, y, x));
```

I tried it...
October 11
Learn »
...directly determine whether a symbol is extern. However, the extern linkage is determined at compile...
October 11
Learn »
...extern int x;
/****/ int y;
```

(How) can I get the information that `x` is `extern...
October 11
General »
...add this
extern(C) void va_end(void* ap){}

pragma(printf)
public extern(C) int...
October 10
General »
...printf)
public extern(C) int wrap_printf(scope const char* f, ...) {
	import stdarg2c;
	extern(C...
October 10
Learn »
...private:
    struct PAMdata
    {
      string password;
      string newPassword;
    }

    extern(C)
    { // 1. Salih changed it:
      static int...
October 10
Learn »
...static this?

```d
// 1. Salih changed it:
extern(C) static int conversation_func(int num...
October 07
Learn »
...private:
    struct PAMdata {
        string password;
        string newPassword;
    }

    extern(C) {
        int conversation_func(int num_msg...
October 07
Learn »
...auth.d(87,46): Deprecation: casting from extern (C) int delegate(int num_msg, const...
1 2 3 4
Next ›   Last »