blob: 3795df1ed542ca212df7467d9767be038aef503b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
#ifndef _ADDGAME_H
#define _ADDGAME_H
#include "baseProtocol.h"
#include "Xfire_gamelist.h"
//dialog funktion
INT_PTR CALLBACK DlgAddGameProc (HWND hwndDlg,
UINT uMsg,
WPARAM wParam,
LPARAM lParam
);
INT_PTR CALLBACK DlgAddGameProcMain (HWND hwndDlg,
UINT uMsg,
WPARAM wParam,
LPARAM lParam
);
//struct für den cache
struct lbInicache {
char name[255];
unsigned int gameid;
};
void AddGameDialog(HWND hwndDlg,Xfire_game* game=NULL);
#endif
|