[Dev-C++] How do I call a Windows function?
Open Source C & C++ IDE for Windows
Brought to you by:
claplace
|
From: Andrew S K. (tb) <aka...@gm...> - 2009-05-15 03:40:47
|
My program has the following:
#include <windows.h>
And later on,
LineTo( hDC, sx+2, sy+h+2 );
And when I link, I get the error:
[Linker error] undefined reference to `LineTo@12'
NOTE: I am creating my own DLL and I want it to access the Windows DLL.
A. K.
|