mirror of
https://github.com/spiffcode/hostile-takeover.git
synced 2025-12-23 06:57:23 +00:00
96 lines
3.9 KiB
C
96 lines
3.9 KiB
C
/******************************************************************************
|
|
* *
|
|
* (C) Copyright 2000, Sony Corporation *
|
|
* *
|
|
*----------------------------------------------------------------------------*
|
|
* *
|
|
* <IDENTIFICATION> *
|
|
* file name : $Workfile: SonySystemResources.h $
|
|
* *
|
|
* <PROFILE> *
|
|
* CreatorID/Type of DB, ID/Type of Resoueces for Sony System *
|
|
* *
|
|
* <HISTORY> *
|
|
* Started on : 00/11/28 *
|
|
* Last Modified: $Date: 2002/10/17 00:56:25 $
|
|
* *
|
|
******************************************************************************/
|
|
/* this file is best viewed by setting TAB-stop as 3 */
|
|
|
|
#ifndef __SONYSYSTEMRESOURCES_H__
|
|
#define __SONYSYSTEMRESOURCES_H__
|
|
|
|
/******************************************************************************
|
|
* Includes *
|
|
******************************************************************************/
|
|
#include <SystemResources.h>
|
|
#include <UIResources.h>
|
|
|
|
/******************************************************************************
|
|
* CreatorID and Type for Databases *
|
|
******************************************************************************/
|
|
|
|
/*** Sony oveall ***/
|
|
#define sonySysFileCSony 'SoNy' /* Sony overall */
|
|
#define sonySysVfsCstmApiCreator sonySysFileCSony /* VFS Custom Control */
|
|
|
|
#define sonySysFileCSystem 'SsYs' /* Sony overall System */
|
|
|
|
/*** Application ***/
|
|
|
|
|
|
/*** Extension ***/
|
|
|
|
|
|
/*** Library ***/
|
|
/* HR-Lib */
|
|
#define sonySysFileCHRLib 'SlHr' /* High Resolution */
|
|
#define sonySysFileTHRLib sysFileTLibrary /* 'libr' */
|
|
#define sonySysLibNameHR "Sony HR Library"
|
|
|
|
/* Msa-Lib */
|
|
#define sonySysFileCMsaLib 'SlMa' /* MS Audio */
|
|
#define sonySysFileTMsaLib sysFileTLibrary /* 'libr' */
|
|
#define sonySysLibNameMsa "Sony Msa Library"
|
|
|
|
/* Rmc-Lib */
|
|
#define sonySysFileCRmcLib 'SlRm' /* Remote Control */
|
|
#define sonySysFileTRmcLib sysFileTLibrary /* 'libr' */
|
|
#define sonySysLibNameRmc "Sony Rmc Library"
|
|
|
|
/* SonySoundLib */
|
|
#define sonySysFileTPcmLib 'pcmR'
|
|
|
|
#define sonySysFileCSoundLib 'SlSd' /* Sony Sound Lib */
|
|
#define sonySysFileTSoundLib sysFileTLibrary /* 'libr' */
|
|
#define sonySysLibNameSound "Sony Sound Library"
|
|
|
|
/* Silk-Lib */
|
|
#define sonySysFileCSilkLib 'SlSi'
|
|
#define sonySysFileTSilkLib sysFileTLibrary /* 'libr' */
|
|
#define sonySysLibNameSilk "Sony Silk Library"
|
|
|
|
/* JpegUtil-Lib */
|
|
#define sonySysFileCJpegUtilLib 'SlJU' /* Jpeg Util Lib */
|
|
#define sonySysFileTJpegUtilLib sysFileTLibrary /* 'libr' */
|
|
#define sonySysLibNameJpegUtil "Sony Jpeg Util Library"
|
|
|
|
/* Capture-Lib */
|
|
#define sonySysFileCCaptureLib 'SlCp' /* Capture Lib */
|
|
#define sonySysFileTCaptureLib sysFileTLibrary /* 'libr' */
|
|
#define sonySysLibNameCapture "Sony Capture Library"
|
|
|
|
/*** System Application ***/
|
|
/* JogPanel Preference */
|
|
#define sonySysFileCJogPanel 'SnJp' /* Jog Panel */
|
|
#define sonySysFileTJogPanel sysFileTPanel /* 'panl' */
|
|
|
|
|
|
/******************************************************************************
|
|
* Misc CreatorID *
|
|
******************************************************************************/
|
|
|
|
|
|
#endif // __SONYSYSTEMRESOURCES_H__
|
|
|