so I have a define.h like this
and a filesystem.cpp file like this
I'm getting the error
||=== Build: Debug in (compiler: GNU GCC Compiler)
error: '::GetFileSizeEx' has not been declared|
note : in expansion of macro 'MAK'
I'm using code::blocks, how do I go about this error?
Code:
//define.h
#define MAK(dll, api) ::api
Code:
...............
...............
if( MAK(kernel32, GetFileSizeEx)(mem->file, &liSize) && liSize.HighPart == 0 )
{.......}
Quote:
||=== Build: Debug in (compiler: GNU GCC Compiler)
error: '::GetFileSizeEx' has not been declared|
note : in expansion of macro 'MAK'