view compile/extern_07.d @ 1330:f3f715978184

Georg Wrede <georg@iki.fi> 2007-01-07 mail:45A120F5.1050108@iki.fi
author thomask
date Sat, 13 Jan 2007 10:33:49 +0000
parents 96fb902700fe
children 62c9b99c3a16
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
// @url@	nntp://news.digitalmars.com/digitalmars.D.bugs:2556

module dstress.compile.extern_07;

extern(C) void *wglGetProcAddress(char*);
extern(C) int function() glFunctionFoo;
  
int main(){
	glFunctionFoo = cast(extern(C) int function()) wglGetProcAddress("glFunctionFoo");
	return 0;
}