view nocompile/extern_06.d @ 1383:52c9e86b6486

@url@ -> @uri@
author thomask
date Sun, 04 Mar 2007 13:07:35 +0000
parents 96fb902700fe
children b8c0195059d9
line wrap: on
line source

// $HeadURL$
// $Date$
// $Author$

// @author@	Russ Lewis <spamhole-2001-07-16@deming-os.org>
// @date@	2004-12-14
// @uri@	news:cpoao4$lqs$1@digitaldaemon.com
// @uri@	nntp://news.digitalmars.com/digitalmars.D.bugs:2556

module dstress.nocompile.extern_06;

// missing extern(C) modifier

extern(C) void *wglGetProcAddress(char*);
extern(C) int function() glFunctionFoo;
  
static this() {
   glFunctionFoo = cast(int function()) wglGetProcAddress("glFunctionFoo");
}