Hey all,
I tring make a library... when i put the code in the program normaly it works 100%
i used a tutorial that i found here... so the .h file i made
#ifndef AZ_MENULIB_H
#define AZ_MENULIB_H
void AZ_LoadMenu(int ammount,int backpicture,int startimage);
void AZ_CloseMenu(int startimage,int ammount);
void AZ_Start(int startid);
int AZ_MenuClicked( int NumKey );
#endif
and the cpp one
#include "DarkGDK.h"
#include "AZ_MenuLib.h"
void AZ_Start(int startid)
{
....
The build makes no errors.. 1 succefull

but when i add it in my program and want to run it it makes me this error
1>Main.obj : error LNK2019: unresolved external symbol "void __cdecl AZ_LoadMenu(int,int,int)" (?AZ_LoadMenu@@YAXHHH@Z) referenced in function "void __cdecl DarkGDK(void)" (?DarkGDK@@YAXXZ)
1>Main.obj : error LNK2019: unresolved external symbol "void __cdecl AZ_Start(int)" (?AZ_Start@@YAXH@Z) referenced in function "void __cdecl DarkGDK(void)" (?DarkGDK@@YAXXZ)
1>DebugDark GDK - Game1.exe : fatal error LNK1120: 2 unresolved externals
what can i do?