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 29 30 31
|
/**********************************************************************
* Premake - platform.h
* Platform-specific functions.
*
* Copyright (c) 2002-2005 Jason Perkins and the Premake project
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
* of the License, or (at your option) any later version.
*
* This program 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 General Public License in the file LICENSE.txt for details.
**********************************************************************/
int platform_chdir(const char* path);
int platform_copyfile(const char* src, const char* dest);
int platform_findlib(const char* name, char* buffer, int len);
int platform_getcwd(char* buffer, int len);
void platform_getuuid(char* uuid);
int platform_isAbsolutePath(const char* path);
int platform_mask_close(MaskHandle data);
const char* platform_mask_getname(MaskHandle data);
int platform_mask_getnext(MaskHandle data);
int platform_mask_isfile(MaskHandle data);
MaskHandle platform_mask_open(const char* mask);
int platform_mkdir(const char* path);
int platform_remove(const char* path);
int platform_rmdir(const char* path);
|