mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-29 16:24:58 +00:00
18 lines
291 B
C
18 lines
291 B
C
|
|
/* os module interface */
|
|
|
|
#ifndef Ty_OSMODULE_H
|
|
#define Ty_OSMODULE_H
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#if !defined(Ty_LIMITED_API) || Ty_LIMITED_API+0 >= 0x03060000
|
|
PyAPI_FUNC(TyObject *) TyOS_FSPath(TyObject *path);
|
|
#endif
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
#endif /* !Ty_OSMODULE_H */
|