view compile/extern_07.d @ 1385:62c9b99c3a16

meta cleanup
author thomask
date Sun, 04 Mar 2007 13:12:19 +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.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;
}