| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788 |
- /*----------------------------------------------------------------------------*-
- ========================
- y_files - Include File
- ========================
- Description:
- Provides native declarations for YSF functions.
- Legal:
- Version: MPL 1.1
-
- The contents of this file are subject to the Mozilla Public License Version
- 1.1 (the "License"); you may not use this file except in compliance with
- the License. You may obtain a copy of the License at
- http://www.mozilla.org/MPL/
-
- Software distributed under the License is distributed on an "AS IS" basis,
- WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
- for the specific language governing rights and limitations under the
- License.
-
- The Original Code is the YSI 2.0 SA:MP plugin.
-
- The Initial Developer of the Original Code is Alex "Y_Less" Cole.
- Portions created by the Initial Developer are Copyright (C) 2008
- the Initial Developer. All Rights Reserved.
-
- Contributor(s):
-
- Peter Beverloo
- Marcus Bauer
-
- Special Thanks to:
-
- SA:MP Team past, present and future
- Version:
- 0.1
- Changelog:
- 15/09/10:
- First version split from the old YSF.
- Functions:
- Public:
- -
- Core:
- -
- Stock:
- -
- Static:
- -
- Inline:
- -
- API:
- -
- Callbacks:
- -
- Definitions:
- -
- Enums:
- -
- Macros:
- -
- Tags:
- -
- Variables:
- Global:
- -
- Static:
- -
- Commands:
- -
- Compile options:
- -
- Operators:
- -
- -*----------------------------------------------------------------------------*/
- /*----------------------------------------------------------------------------*-
- =================
- y_ini Libraries
- =================
- -*----------------------------------------------------------------------------*/
- // File functions
- native ffind(const pattern[], filename[], len, &idx);
- native frename(const oldname[], const newname[]);
- // Directory functions
- native dfind(const pattern[], filename[], len, &idx);
- native dcreate(const name[]);
- native drename(const oldname[], const newname[]);
|