hello folks,
I have precompiled JUCE1_28, with VC7 (.net 2003, WIN2K), set the pathes for
include (juce.h), and also for the executables, where the lib-file resides
(i need to admit, i don’t have the MS-Platform-SDK).
Then i made a blank sheet, only with:
[code]#pragma comment (lib, “jucelib_static_debug.lib”)
#include “stdafx.h”
#include “juce02.h”
#define MAX_LOADSTRING 100
#include <juce.h>
#include <juce_config.h>
[/code]
and got the 2 errors:
juce02 error LNK2019: not resolved external symbol '_WinMain@16',
referred to in function '_WinMainCRTStartup'
juce02 fatal error LNK1120: 1 not resolved external link
So that’s a linker-problem, but what to do?
Its required to link the *.lib as in the code (or at setup), that right?
What i cannot understand: its all in the lib, so why do i need the "juce.h"
still?
The blank main.cpp with the lib alone will not do?
Thanks for your effort
amando