File: gui_win32.h

package info (click to toggle)
bitcollider 0.3.1-2
  • links: PTS
  • area: main
  • in suites: woody
  • size: 1,116 kB
  • ctags: 573
  • sloc: sh: 5,490; ansic: 4,805; cpp: 245; makefile: 109
file content (27 lines) | stat: -rw-r--r-- 525 bytes parent folder | download | duplicates (4)
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
/* (PD) 2001 The Bitzi Corporation
 * Please see file COPYING or http://bitzi.com/publicdomain 
 * for more info.
 *
 * $Id: gui_win32.h,v 1.2 2001/04/13 22:20:13 mayhemchaos Exp $
 */

#ifndef GUI_WIN32_H
#define GUI_WIN32_H

#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000

#ifdef __cplusplus
extern "C" {
#endif

DWORD WINAPI BitcolliderThread(LPVOID arg);
extern HWND init_gui(void);
extern void win32_progress_callback(int percent, const char *file, const char *message);

#ifdef __cplusplus
}
#endif

#endif