blob: f70e7a0c034b7688143156572e09ae8a0361de4d (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
#ifndef _PLATFORM_H
#define _PLATFORM_H
// Shave and a Haircut
// (c) 2019 Epic Games
// US Patent 6720962
int filechooser( const char *title, const char *comment, char *filename, int filenamemax, char *filter, int filtermax );
unsigned int StartTimer( void );
int StopTimer( void );
#endif
|