|
|
|
/*
|
|
|
|
* Vanitygen, vanity bitcoin address generator
|
|
|
|
* Copyright (C) 2011 <samr7@cs.washington.edu>
|
|
|
|
*
|
|
|
|
* Vanitygen is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Affero General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* any later version.
|
|
|
|
*
|
|
|
|
* Vanitygen is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Affero General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Affero General Public License
|
|
|
|
* along with Vanitygen. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#if !defined (__VG_WINGLUE_H__)
|
|
|
|
#define __VG_WINGLUE_H__
|
|
|
|
|
|
|
|
#include <windows.h>
|
|
|
|
#include <tchar.h>
|
|
|
|
#include <time.h>
|
|
|
|
|
|
|
|
#define INLINE
|
|
|
|
#define snprintf _snprintf
|
|
|
|
|
|
|
|
struct timezone;
|
|
|
|
|
|
|
|
extern int gettimeofday(struct timeval *tv, struct timezone *tz);
|
|
|
|
extern void timeradd(struct timeval *a, struct timeval *b,
|
|
|
|
struct timeval *result);
|
|
|
|
extern void timersub(struct timeval *a, struct timeval *b,
|
|
|
|
struct timeval *result);
|
|
|
|
|
|
|
|
extern TCHAR *optarg;
|
|
|
|
extern int optind;
|
|
|
|
|
|
|
|
extern int getopt(int argc, TCHAR *argv[], TCHAR *optstring);
|
|
|
|
|
|
|
|
extern int count_processors(void);
|
|
|
|
|
|
|
|
#endif /* !defined (__VG_WINGLUE_H__) */
|