Add rayman2 source files
This commit is contained in:
214
Rayman_X/cpa/tempgrp/TBK/Inc/TBKinter.hpp
Normal file
214
Rayman_X/cpa/tempgrp/TBK/Inc/TBKinter.hpp
Normal file
@@ -0,0 +1,214 @@
|
||||
/*=========================================================================
|
||||
*
|
||||
* TBKinter.hpp : Banks DLL Interface - definition
|
||||
*
|
||||
*
|
||||
* Version 1.0
|
||||
* Creation date 10/06/99
|
||||
* Revision date
|
||||
*
|
||||
* Shaitan
|
||||
*=======================================================================*/
|
||||
|
||||
#ifndef __TBK_INT_HPP__
|
||||
#define __TBK_INT_HPP__
|
||||
|
||||
|
||||
#include "ACP_Base.h"
|
||||
#include "ITF.h"
|
||||
|
||||
// if you want only one instance of your DLL
|
||||
#define DLL_ONLY_ONE_INSTANCE
|
||||
|
||||
|
||||
class TBK_BankObject;
|
||||
|
||||
/*===========================================================================
|
||||
* Description: class TBK_BanksInterface
|
||||
* Creation date: 10/06/99
|
||||
* Author: Shaitan
|
||||
*---------------------------------------------------------------------------
|
||||
* Revision date: Author:
|
||||
*=========================================================================*/
|
||||
|
||||
class TBK_BanksInterface : public CPA_ToolDLLBase
|
||||
{
|
||||
|
||||
/*===========================================================================
|
||||
Class members
|
||||
=========================================================================*/
|
||||
private:
|
||||
|
||||
// KeyBoard
|
||||
CPA_KeyActionConfiguration * m_pKeyboard;
|
||||
|
||||
// Frames
|
||||
CSplitFrame * m_pLeftFrame;
|
||||
CSplitFrame * m_pBottomFrame;
|
||||
|
||||
// Dialogs
|
||||
CPA_DialogList * m_pDialogList;
|
||||
|
||||
// icons for dialog list
|
||||
CImageList m_oIconList;
|
||||
|
||||
// tree root for dialog list
|
||||
CPA_SuperObject * m_pTreeRoot;
|
||||
|
||||
// banks
|
||||
TBK_BankObject * m_pCommonBank;
|
||||
TBK_BankObject * m_pCurrentBank;
|
||||
long m_lBankIndex;
|
||||
|
||||
// selection
|
||||
CPA_SuperObject * m_pSelectedSector;
|
||||
TBK_BankObject * m_pSelectedBank;
|
||||
|
||||
|
||||
|
||||
/*===========================================================================
|
||||
Functions
|
||||
=========================================================================*/
|
||||
public:
|
||||
|
||||
TBK_BanksInterface(void);
|
||||
~TBK_BanksInterface(void);
|
||||
|
||||
|
||||
void m_fn_vSaveDialogsPreferences (void);
|
||||
|
||||
void m_fn_vSetSectorColor (CPA_SuperObject *pEdObj, tdeLocalColor eColor);
|
||||
|
||||
long m_fn_lAddANewBank (void);
|
||||
|
||||
TBK_BankObject * m_fn_pGetBankByIndex (long lIndex);
|
||||
TBK_BankObject * m_fn_pGetBankBySector (CPA_SuperObject *pSector);
|
||||
|
||||
void m_fn_vNotifyBankHeader (void);
|
||||
|
||||
static void TBK_fn_eCallBackSaveBankHeader (SCR_tdst_File_Description *p_stFile, char *szSectionName, void *p_vData, SCR_tde_Ntfy_Action eAction);
|
||||
|
||||
static SCR_tde_Anl_ReturnValue TBK_fn_eCallBackLoadBank (SCR_tdst_File_Description *p_stFile, char *szName, char *p_szParams[], SCR_tde_Anl_Action eAction);
|
||||
static SCR_tde_Anl_ReturnValue TBK_fn_eCallBackLoadCommon (SCR_tdst_File_Description *p_stFile, char *szName, char *p_szParams[], SCR_tde_Anl_Action eAction);
|
||||
static SCR_tde_Anl_ReturnValue TBK_fn_eCallBackLoadHeader (SCR_tdst_File_Description *p_stFile, char *szName, char *p_szParams[], SCR_tde_Anl_Action eAction);
|
||||
|
||||
|
||||
//#################################################################################
|
||||
// DLL FUNCTIONS OVERLOAD
|
||||
//#################################################################################
|
||||
public:
|
||||
|
||||
/*===========================================================================
|
||||
Inits
|
||||
=========================================================================*/
|
||||
|
||||
void fn_vJustAfterRegistered (void);
|
||||
void fn_vConstruct (void);
|
||||
|
||||
void fn_vBeforeEngine (void);
|
||||
void fn_vBeforeEditor (void);
|
||||
|
||||
void fn_vLevelChanges (void);
|
||||
void fn_vLevelHasChanged (void);
|
||||
|
||||
|
||||
/*===========================================================================
|
||||
Dialog Bar & Menus
|
||||
=========================================================================*/
|
||||
|
||||
void fn_vDefineDlgBarBtnIcon (tde_DlgBarCategory wCategory, tds_DlgBarBtn *_pDlgBarBtn);
|
||||
|
||||
BOOL fn_bDefineSubMenu (EDT_SubMenu *_p_oEDTSubMenu);
|
||||
void _OnSubMenuCommand (EDT_SubMenu *_p_oEDTSubMenu, UINT uiMsgID);
|
||||
|
||||
BOOL fn_bDefinePopupMenu (EDT_PopUpMenu *pPopup, CPA_List<CPA_SuperObject> *pSelection, BOOL bAsCurrentEditor);
|
||||
void _OnPopUpMenuCommand (UINT m_IDCmdMsg);
|
||||
|
||||
|
||||
/*===========================================================================
|
||||
Editor
|
||||
=========================================================================*/
|
||||
|
||||
tdePermission fn_eAcceptNewEditor (CPA_EditorBase *pNewEditor) { return C_CloseBefore; }
|
||||
|
||||
BOOL fn_bCanActivateEditor (CPA_List<CPA_BaseObject> *pParams);
|
||||
|
||||
void fn_vOnActivateEditor (CPA_List<CPA_BaseObject> *pParam, BOOL bBackActivated=FALSE);
|
||||
void fn_vOnCloseEditor (void);
|
||||
|
||||
BOOL fn_bHasGainedFocus (void);
|
||||
void fn_vHasLostFocus (void);
|
||||
|
||||
|
||||
/*===========================================================================
|
||||
Permissions
|
||||
=========================================================================*/
|
||||
|
||||
tdeTypeAnswer fn_bAcceptSelect (CPA_SuperObject *pEdObj, ACP_tdxIndex xIndex, HIE_tdstPickInfo *pPicking, tdeStatus eStatus);
|
||||
|
||||
BOOL fn_bAcceptModifDelete (CPA_List<CPA_SuperObject> *pListObjects, tdeStatus eStatus);
|
||||
BOOL fn_bAcceptModifParent (CPA_List<CPA_SuperObject> *pListObjects, tdeStatus eStatus);
|
||||
BOOL fn_bAcceptModifCopy (CPA_List<CPA_SuperObject> *pListObjects, tdeStatus eStatus);
|
||||
BOOL fn_bAcceptModifTranslate (CPA_List<CPA_SuperObject> *pListObjects, tdeStatus eStatus);
|
||||
BOOL fn_bAcceptModifRotate (CPA_List<CPA_SuperObject> *pListObjects, tdeStatus eStatus);
|
||||
BOOL fn_bAcceptModifScale (CPA_SuperObject *pEdObj, tdeStatus eStatus);
|
||||
BOOL fn_bAcceptModifInsert (CPA_SuperObject *pEdObj, CPA_SuperObject *pParent, tdeStatus eStatus);
|
||||
|
||||
|
||||
/*===========================================================================
|
||||
Modifs
|
||||
=========================================================================*/
|
||||
|
||||
void fn_vOnSelect (CPA_SuperObject *pEdObj, tdeTypeModif eType, tdeStatus eStatus);
|
||||
void fn_vOnModifName (CPA_SuperObject *pEdObj, CString csInitalName, CString csFinalName, tdeTypeModif eType, tdeStatus eStatus);
|
||||
|
||||
void fn_vOnModifDelete (CPA_List<EDT_SaveParents> *pListObjects, tdeTypeModif eType, tdeStatus eStatus);
|
||||
void fn_vOnModifParent (CPA_List<EDT_SaveParents> *pListObjects, tdeTypeModif eType, tdeStatus eStatus);
|
||||
void fn_vOnModifCopy (CPA_List<EDT_SaveParents> *pListObjects, tdeTypeModif eType, tdeStatus eStatus);
|
||||
void fn_vOnModifInsert (CPA_SuperObject *pEdObj, CPA_SuperObject *pParent, tdstPosition *p_stPosition, tdeTypeModif eType, tdeStatus eStatus);
|
||||
|
||||
void fn_vOnChangeRoot (void);
|
||||
void fn_vOnChangeWorld (void);
|
||||
void fn_vOnChangeDevice (void);
|
||||
|
||||
|
||||
/*===========================================================================
|
||||
Messages
|
||||
=========================================================================*/
|
||||
|
||||
BOOL _OnKeyDown (UINT nChar, UINT nRepCnt, UINT nFlags);
|
||||
BOOL _OnKeyUp (UINT nChar, UINT nRepCnt, UINT nFlags);
|
||||
BOOL _OnLButtonDown (UINT nFlags, tdstMousePos *p_stPos, ACP_tdxIndex xIndex, HIE_tdstPickInfo *pPicking);
|
||||
BOOL _OnRButtonDown (UINT nFlags, tdstMousePos *p_stPos, ACP_tdxIndex xIndex, HIE_tdstPickInfo *pPicking);
|
||||
BOOL _OnLButtonDblClk (UINT nFlags, tdstMousePos *p_stPos, ACP_tdxIndex xIndex, HIE_tdstPickInfo *pPicking);
|
||||
|
||||
/*===========================================================================
|
||||
for Dialog List
|
||||
=========================================================================*/
|
||||
|
||||
void GetListsForDialog (CPA_DialogList *pDialog);
|
||||
void fn_vInitDefaultParameters (CPA_DialogList *pDialog);
|
||||
|
||||
BOOL fn_bOnButtonTest (CPA_DialogList *pDialog, CString csListName, tdeListDrawMode eDraw);
|
||||
void fn_vSetANewTest (CPA_DialogList *pDialog, CString csCurrentType);
|
||||
|
||||
int GetIconForListItem (CPA_DialogList *pDialog, CString csListName, CPA_BaseObject *pObject);
|
||||
int GetIconForTreeItem (CPA_DialogList *pDialog, CString csListName, CPA_BaseObject *pObject);
|
||||
|
||||
CPA_BaseObject * GetTreeNodeNextChild (CPA_DialogList *pDialog, CString csListName, CPA_BaseObject *pParent, CPA_BaseObject *pCurrentChild);
|
||||
CPA_BaseObject * GetDialogSelection (CPA_DialogList *pDialog, CString csListName, tdeListDrawMode eDrawMode);
|
||||
|
||||
BOOL fn_bCanDragItemInHierarchyTree (CPA_DialogList *pDialog, CString csListName, CPA_BaseObject *pObjectToDrag);
|
||||
BOOL fn_bCanDropItemInHierarchyTree (CPA_DialogList *pDialog, CString csListName, CPA_BaseObject *pObjectToDrop, CPA_BaseObject *pTarget);
|
||||
BOOL fn_bOnDragDropInHierarchyTree (CPA_DialogList *pDialog, CString csListName, CPA_BaseObject *pObject, CPA_BaseObject *pTarget);
|
||||
|
||||
BOOL fn_bOnKeyDownInDialog (CPA_DialogList *pDialog, CString csListName, tdeListDrawMode eDraw, CPA_BaseObject *pSelectedObject, UINT nChar, UINT nRepCnt, UINT nFlags);
|
||||
|
||||
BOOL fn_bOnSelChangeHierarchyTree (CPA_DialogList *pDialog, CString csListName, CPA_BaseObject *pSelectedObject, CPA_BaseObject *pSelectedParent);
|
||||
};
|
||||
|
||||
|
||||
extern tdstDLLIdentity TBK_g_stBanksIdentity;
|
||||
|
||||
|
||||
#endif // __TBK_INT_HPP__
|
135
Rayman_X/cpa/tempgrp/TBK/Inc/TBKobj.hpp
Normal file
135
Rayman_X/cpa/tempgrp/TBK/Inc/TBKobj.hpp
Normal file
@@ -0,0 +1,135 @@
|
||||
/*=========================================================================
|
||||
*
|
||||
* TBKobj.hpp : Bank Object - Definition
|
||||
*
|
||||
*
|
||||
* Version 1.0
|
||||
* Creation date 10/06/99
|
||||
* Revision date
|
||||
*
|
||||
* Shaitan
|
||||
*=======================================================================*/
|
||||
|
||||
#ifndef __TBK_OBJ_HPP__
|
||||
#define __TBK_OBJ_HPP__
|
||||
|
||||
#include "ACP_Base.h"
|
||||
#include "ITF.h"
|
||||
|
||||
#include "TBKinter.hpp"
|
||||
|
||||
|
||||
//#################################################################################
|
||||
// Defines
|
||||
//#################################################################################
|
||||
|
||||
// type of the bank
|
||||
typedef enum
|
||||
{
|
||||
TBK_E_bt_Common,
|
||||
TBK_E_bt_Bank,
|
||||
TBK_E_bt_Undefined
|
||||
}
|
||||
TBK_tdeBankType;
|
||||
|
||||
/*===========================================================================
|
||||
* Description: class TBK_BankObject
|
||||
* Creation date: 10/06/99
|
||||
* Author: Shaitan
|
||||
*---------------------------------------------------------------------------
|
||||
* Revision date: Author:
|
||||
*=========================================================================*/
|
||||
|
||||
class TBK_BankObject : public CPA_SaveObject
|
||||
{
|
||||
|
||||
/*===========================================================================
|
||||
Class members
|
||||
=========================================================================*/
|
||||
private:
|
||||
|
||||
// type
|
||||
TBK_tdeBankType m_eBankType;
|
||||
// index
|
||||
long m_lBankIndex;
|
||||
// content
|
||||
CPA_List<CPA_SuperObject> m_oListOfSector;
|
||||
|
||||
|
||||
/*===========================================================================
|
||||
Functions
|
||||
=========================================================================*/
|
||||
public:
|
||||
|
||||
TBK_BankObject (TBK_BanksInterface *pInterface, TBK_tdeBankType eType, CString csName = "", BOOL bExistingBank = FALSE);
|
||||
~TBK_BankObject (void);
|
||||
|
||||
// interface
|
||||
TBK_BanksInterface * m_fn_pGetBanksInterface (void) { return (TBK_BanksInterface *)GetEditor(); }
|
||||
|
||||
// parameters
|
||||
TBK_tdeBankType m_fn_eGetBankType (void) { return m_eBankType; }
|
||||
long m_fn_lGetBankIndex (void) { return m_lBankIndex; }
|
||||
|
||||
// sectors
|
||||
BOOL m_fn_bIsSectorInBank (CPA_SuperObject *pSector);
|
||||
BOOL m_fn_bAddSectorToBank (CPA_SuperObject *pSector);
|
||||
BOOL m_fn_bRemoveSectorFromBank (CPA_SuperObject *pSector);
|
||||
BOOL m_fn_bTransferAllSectors (TBK_BankObject *pNewBank);
|
||||
|
||||
CPA_SuperObject * m_fn_pGetNextSector (CPA_SuperObject *pSector);
|
||||
|
||||
// colors
|
||||
void m_fn_vReinitSectorList (void);
|
||||
void m_fn_vReinitSectorColors (BOOL bColor);
|
||||
|
||||
// saving function
|
||||
static void TBK_fn_eCallBackSaveBank (SCR_tdst_File_Description *p_stFile, char *szSectionName, void *p_vData, SCR_tde_Ntfy_Action eAction);
|
||||
|
||||
|
||||
//#################################################################################
|
||||
// BASE OBJECT FUNCTIONS OVERLOAD
|
||||
//#################################################################################
|
||||
public:
|
||||
|
||||
// tdeMissingCriteria fn_eRename (const CString csNewName);
|
||||
|
||||
|
||||
long GetDataType (void) { return -1; }
|
||||
void * GetData (void) { return NULL; }
|
||||
|
||||
|
||||
// tdeMissingCriteria fn_eCheckUnicity (const CString csNewName);
|
||||
|
||||
|
||||
// CString GetNameToDraw (void);
|
||||
// CString GetTypeToDraw (void);
|
||||
// CString GetOwnerToDraw (void);
|
||||
|
||||
//#################################################################################
|
||||
// SAVE OBJECT FUNCTIONS OVERLOAD
|
||||
//#################################################################################
|
||||
public:
|
||||
|
||||
// BOOL fn_bCanBeNotified (void);
|
||||
|
||||
// BOOL fn_bCheckNotification (const CString csNewName);
|
||||
|
||||
// tdeMissingCriteria fn_eCheckValidity (const CString csNewName);
|
||||
|
||||
// void fn_vNotifySave (void);
|
||||
// void fn_vNotifyUnSave (void);
|
||||
// void fn_vNotifyRestore (void);
|
||||
// void fn_vNotifyRename (void);
|
||||
|
||||
// void fn_vUpdateReference (CPA_SaveObject *pReferencedObject);
|
||||
|
||||
// void fn_vUpdateSectionName (void);
|
||||
|
||||
// CString fn_csComputeReferencedSectionName (const CString csNewName);
|
||||
|
||||
};
|
||||
|
||||
|
||||
|
||||
#endif //__TBK_OBJ_HPP__
|
1487
Rayman_X/cpa/tempgrp/TBK/Src/TBKinter.cpp
Normal file
1487
Rayman_X/cpa/tempgrp/TBK/Src/TBKinter.cpp
Normal file
File diff suppressed because it is too large
Load Diff
280
Rayman_X/cpa/tempgrp/TBK/Src/TBKobj.cpp
Normal file
280
Rayman_X/cpa/tempgrp/TBK/Src/TBKobj.cpp
Normal file
@@ -0,0 +1,280 @@
|
||||
/*=========================================================================
|
||||
*
|
||||
* SECTobj.cpp : Implementation of Sector Object
|
||||
*
|
||||
*
|
||||
* Version 1.0
|
||||
* Creation date 10/06/99
|
||||
* Revision date
|
||||
*
|
||||
* Shaitan
|
||||
*=======================================================================*/
|
||||
#include "stdafx.h"
|
||||
#include "acp_base.h"
|
||||
|
||||
#include "TBKobj.hpp"
|
||||
|
||||
#include "DPT.h"
|
||||
#include "incGAM.h"
|
||||
|
||||
#include "_EditID.h"
|
||||
|
||||
/*=============================================================================
|
||||
Globals
|
||||
=============================================================================*/
|
||||
|
||||
|
||||
//#################################################################################
|
||||
// CONSTRUCTOR & DESTRUCTOR
|
||||
//#################################################################################
|
||||
|
||||
/*===========================================================================
|
||||
* Description: Constructor
|
||||
* Creation date: 10/06/99
|
||||
* Author: Shaitan
|
||||
*---------------------------------------------------------------------------
|
||||
* Revision date: Author:
|
||||
*=========================================================================*/
|
||||
TBK_BankObject::TBK_BankObject(TBK_BanksInterface *pInterface, TBK_tdeBankType eType, CString csName, BOOL bExistingBank)
|
||||
: CPA_SaveObject (pInterface, C_szBankTypeName, E_ss_Responsible, NULL, TRUE, fn_szGetLevelsDataPath(), TBK_BankObject::TBK_fn_eCallBackSaveBank)
|
||||
{
|
||||
char szSectionName[SCR_CV_ui_Cfg_MaxLenName];
|
||||
char szFileName[SCR_CV_ui_Cfg_MaxLenName];
|
||||
|
||||
// section object
|
||||
SetSectionData(this);
|
||||
// section name
|
||||
sprintf(szFileName, "%s\\%s.bnk", fn_p_szGetLevelName(), fn_p_szGetLevelName());
|
||||
SCR_fn_v_RdL0_ComputeSectionName(szSectionName, szFileName, (eType == TBK_E_bt_Common) ? C_CommonSectionName : C_BankSectionName, " ");
|
||||
SetReferencedSectionName(szSectionName);
|
||||
|
||||
// name
|
||||
if (fn_eRename(csName ) != E_mc_None)
|
||||
SetDefaultValidName();
|
||||
fn_vUpdateSectionName();
|
||||
|
||||
// existence
|
||||
SetExistingSection(bExistingBank);
|
||||
|
||||
// init parameters
|
||||
m_eBankType = eType;
|
||||
m_lBankIndex = (m_eBankType == TBK_E_bt_Common) ? 0 : pInterface->m_fn_lAddANewBank();
|
||||
|
||||
// save bank
|
||||
if (!bExistingBank && (m_eBankType != TBK_E_bt_Common))
|
||||
fn_vNotifySave();
|
||||
};
|
||||
|
||||
|
||||
/*===========================================================================
|
||||
* Description: Destructor
|
||||
* Creation date: 10/06/99
|
||||
* Author: Shaitan
|
||||
*---------------------------------------------------------------------------
|
||||
* Revision date: Author:
|
||||
*=========================================================================*/
|
||||
TBK_BankObject::~TBK_BankObject()
|
||||
{
|
||||
}
|
||||
|
||||
|
||||
//#################################################################################
|
||||
// SECTORS
|
||||
//#################################################################################
|
||||
|
||||
/*===========================================================================
|
||||
* Description: check if a sector belong to the bank
|
||||
* Creation date: 11/06/99
|
||||
* Author: Shaitan
|
||||
*---------------------------------------------------------------------------
|
||||
* Revision date: Author:
|
||||
*=========================================================================*/
|
||||
BOOL TBK_BankObject::m_fn_bIsSectorInBank (CPA_SuperObject *pSector)
|
||||
{
|
||||
return (m_oListOfSector.Find(pSector) != NULL);
|
||||
}
|
||||
|
||||
/*===========================================================================
|
||||
* Description: add a sector to the bank
|
||||
* Creation date: 11/06/99
|
||||
* Author: Shaitan
|
||||
*---------------------------------------------------------------------------
|
||||
* Revision date: Author:
|
||||
*=========================================================================*/
|
||||
BOOL TBK_BankObject::m_fn_bAddSectorToBank (CPA_SuperObject *pSector)
|
||||
{
|
||||
// check if the sector is already in the list
|
||||
if (m_fn_bIsSectorInBank(pSector))
|
||||
return FALSE;
|
||||
|
||||
// add sector to the list
|
||||
m_oListOfSector.AddTail(pSector);
|
||||
// update sector color
|
||||
m_fn_pGetBanksInterface()->m_fn_vSetSectorColor(pSector, (tdeLocalColor) m_lBankIndex);
|
||||
|
||||
// notify bank for saving
|
||||
if (!m_fn_pGetBanksInterface()->GetInterface()->fn_bIsLoadingWorld())
|
||||
fn_vNotifySave();
|
||||
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
/*===========================================================================
|
||||
* Description: remove a sector from the bank
|
||||
* Creation date: 11/06/99
|
||||
* Author: Shaitan
|
||||
*---------------------------------------------------------------------------
|
||||
* Revision date: Author:
|
||||
*=========================================================================*/
|
||||
BOOL TBK_BankObject::m_fn_bRemoveSectorFromBank (CPA_SuperObject *pSector)
|
||||
{
|
||||
// check if the sector is really in the list
|
||||
POSITION pos = m_oListOfSector.Find(pSector);
|
||||
if (!pos)
|
||||
return FALSE;
|
||||
|
||||
// remove sector from the list
|
||||
m_oListOfSector.RemoveAt(pos);
|
||||
|
||||
// notify bank for saving
|
||||
fn_vNotifySave();
|
||||
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
/*===========================================================================
|
||||
* Description: remove a sector from the bank
|
||||
* Creation date: 11/06/99
|
||||
* Author: Shaitan
|
||||
*---------------------------------------------------------------------------
|
||||
* Revision date: Author:
|
||||
*=========================================================================*/
|
||||
BOOL TBK_BankObject::m_fn_bTransferAllSectors (TBK_BankObject *pNewBank)
|
||||
{
|
||||
// empty list ?
|
||||
if (!m_oListOfSector.GetCount())
|
||||
return FALSE;
|
||||
|
||||
// transfer all list
|
||||
while (m_oListOfSector.GetCount())
|
||||
{
|
||||
CPA_SuperObject *pSector = m_oListOfSector.RemoveTail();
|
||||
pNewBank->m_fn_bAddSectorToBank(pSector);
|
||||
}
|
||||
// notify bank for saving
|
||||
fn_vNotifySave();
|
||||
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
/*===========================================================================
|
||||
* Description: get the next sector (for tree)
|
||||
* Creation date: 11/06/99
|
||||
* Author: Shaitan
|
||||
*---------------------------------------------------------------------------
|
||||
* Revision date: Author:
|
||||
*=========================================================================*/
|
||||
CPA_SuperObject * TBK_BankObject::m_fn_pGetNextSector (CPA_SuperObject *pSector)
|
||||
{
|
||||
// empty list ?
|
||||
if (!m_oListOfSector.GetCount())
|
||||
return NULL;
|
||||
|
||||
// first sector ?
|
||||
if (!pSector)
|
||||
return m_oListOfSector.GetHead();
|
||||
|
||||
// next sector
|
||||
return m_oListOfSector.GetNextElement(pSector);
|
||||
}
|
||||
|
||||
|
||||
/*===========================================================================
|
||||
* Description: reinit the sector list
|
||||
* Creation date: 16/06/99
|
||||
* Author: Shaitan
|
||||
*---------------------------------------------------------------------------
|
||||
* Revision date: Author:
|
||||
*=========================================================================*/
|
||||
void TBK_BankObject::m_fn_vReinitSectorList (void)
|
||||
{
|
||||
m_oListOfSector.RemoveAll();
|
||||
}
|
||||
|
||||
|
||||
/*===========================================================================
|
||||
* Description: update colors for the sectors of the bank
|
||||
* Creation date: 16/06/99
|
||||
* Author: Shaitan
|
||||
*---------------------------------------------------------------------------
|
||||
* Revision date: Author:
|
||||
*=========================================================================*/
|
||||
void TBK_BankObject::m_fn_vReinitSectorColors (BOOL bColor)
|
||||
{
|
||||
POSITION pos = m_oListOfSector.GetHeadPosition();
|
||||
while (pos)
|
||||
{
|
||||
CPA_SuperObject *pSector = m_oListOfSector.GetNext(pos);
|
||||
m_fn_pGetBanksInterface()->m_fn_vSetSectorColor(pSector, bColor ? (tdeLocalColor) m_lBankIndex : E_lc_NoColor);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
//#################################################################################
|
||||
// SAVES
|
||||
//#################################################################################
|
||||
|
||||
/*===========================================================================
|
||||
* Description: callback to save the bank
|
||||
* Creation date:
|
||||
* Author: Shaitan
|
||||
*---------------------------------------------------------------------------
|
||||
* Revision date: Author:
|
||||
*=========================================================================*/
|
||||
void TBK_BankObject::TBK_fn_eCallBackSaveBank (SCR_tdst_File_Description *p_stFile, char *szSectionName, void *p_vData, SCR_tde_Ntfy_Action eAction)
|
||||
{
|
||||
// get sector
|
||||
TBK_BankObject *pBankObject = (TBK_BankObject *) p_vData;
|
||||
CPA_SuperObject *pSector;
|
||||
POSITION pos;
|
||||
char szNewSectionName[SCR_CV_ui_Cfg_MaxLenName];
|
||||
|
||||
switch (eAction)
|
||||
{
|
||||
case SCR_EA_Ntfy_AddSection:
|
||||
// go to end of file
|
||||
SCR_fn_v_SvL1_ToEndSection(p_stFile);
|
||||
SCR_M_SvL0_SaveBlankLine (p_stFile);
|
||||
|
||||
case SCR_EA_Ntfy_RebuildSection:
|
||||
|
||||
// save section name
|
||||
SCR_fn_v_RdL0_ComputeSectionName(szNewSectionName, NULL, (pBankObject->m_fn_eGetBankType() == TBK_E_bt_Common) ? C_CommonSectionName : C_BankSectionName, (char *) (LPCSTR)pBankObject->GetName());
|
||||
SCR_M_SvL0_SaveBeginSection(p_stFile, szNewSectionName, SCR_CC_C_Cfg_EOL);
|
||||
|
||||
// save list of sectors
|
||||
pos = pBankObject->m_oListOfSector.GetHeadPosition();
|
||||
while (pos)
|
||||
{
|
||||
SCR_M_SvL0_SaveEntry(p_stFile, C_BankSectorEntry, SCR_CC_C_Cfg_NoChar);
|
||||
|
||||
pSector = pBankObject->m_oListOfSector.GetNext(pos);
|
||||
SCR_fn_v_SvL0_SaveParameters_MP(p_stFile, SCR_EF_SvL0_Normal, 1, pSector->GetReferencedSectionName());
|
||||
|
||||
}
|
||||
|
||||
// end section
|
||||
SCR_M_SvL0_SaveEndSection (p_stFile, SCR_CC_C_Cfg_EOL);
|
||||
if (eAction == SCR_EA_Ntfy_AddSection)
|
||||
SCR_M_SvL0_SaveBlankLine (p_stFile);
|
||||
|
||||
// reinit existence
|
||||
pBankObject->fn_vSectionSaved();
|
||||
break;
|
||||
|
||||
case SCR_EA_Ntfy_DeleteSection:
|
||||
// update existence
|
||||
pBankObject->fn_vSectionDeleted();
|
||||
break;
|
||||
}
|
||||
}
|
180
Rayman_X/cpa/tempgrp/TBK/Tbk.dsp
Normal file
180
Rayman_X/cpa/tempgrp/TBK/Tbk.dsp
Normal file
@@ -0,0 +1,180 @@
|
||||
# Microsoft Developer Studio Project File - Name="TBK" - Package Owner=<4>
|
||||
# Microsoft Developer Studio Generated Build File, Format Version 5.00
|
||||
# ** DO NOT EDIT **
|
||||
|
||||
# TARGTYPE "Win32 (x86) Dynamic-Link Library" 0x0102
|
||||
|
||||
CFG=TBK - Win32 Debug Glide with Editors
|
||||
!MESSAGE This is not a valid makefile. To build this project using NMAKE,
|
||||
!MESSAGE use the Export Makefile command and run
|
||||
!MESSAGE
|
||||
!MESSAGE NMAKE /f "Tbk.mak".
|
||||
!MESSAGE
|
||||
!MESSAGE You can specify a configuration when running NMAKE
|
||||
!MESSAGE by defining the macro CFG on the command line. For example:
|
||||
!MESSAGE
|
||||
!MESSAGE NMAKE /f "Tbk.mak" CFG="TBK - Win32 Debug Glide with Editors"
|
||||
!MESSAGE
|
||||
!MESSAGE Possible choices for configuration are:
|
||||
!MESSAGE
|
||||
!MESSAGE "TBK - Win32 Debug Glide with Editors" (based on\
|
||||
"Win32 (x86) Dynamic-Link Library")
|
||||
!MESSAGE
|
||||
|
||||
# Begin Project
|
||||
# PROP Scc_ProjName ""$/cpa/tempgrp/TBK", HLCBAAAA"
|
||||
# PROP Scc_LocalPath "."
|
||||
CPP=cl.exe
|
||||
MTL=midl.exe
|
||||
RSC=rc.exe
|
||||
# PROP BASE Use_MFC 2
|
||||
# PROP BASE Use_Debug_Libraries 1
|
||||
# PROP BASE Output_Dir "Tbk___W1"
|
||||
# PROP BASE Intermediate_Dir "Tbk___W1"
|
||||
# PROP BASE Ignore_Export_Lib 0
|
||||
# PROP BASE Target_Dir ""
|
||||
# PROP Use_MFC 2
|
||||
# PROP Use_Debug_Libraries 1
|
||||
# PROP Output_Dir "x:\CPA\EXE\Main\Edt_Data\Tools"
|
||||
# PROP Intermediate_Dir "Tmp\TbkDFEvd"
|
||||
# PROP Ignore_Export_Lib 0
|
||||
# PROP Target_Dir ""
|
||||
# ADD BASE CPP /nologo /MDd /W3 /Gm /Gi /GX /Zi /Od /I "X:\CPA\Public" /I "..\inc" /D "CPA_WANTS_IMPORT" /D "ACTIVE_EDITOR" /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "CPA_VISUAL" /D "CPA_DEBUG" /D "_WINDLL" /D "_AFXDLL" /FR /Yu"stdafx.h" /FD /c
|
||||
# ADD CPP /nologo /MD /W3 /GX /Z7 /Od /I "x:\cpa\main\inc" /I "x:\cpa\public" /I "inc" /I "res" /D "CPA_WANTS_IMPORT" /D "ACTIVE_EDITOR" /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "CPA_VISUAL" /D "CPA_DEBUG" /D "_WINDLL" /D "_AFXDLL" /D "VISUAL" /Fr /YX /FD /c
|
||||
# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /o NUL /win32
|
||||
# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /o NUL /win32
|
||||
# ADD BASE RSC /l 0x40c /d "_DEBUG" /d "_AFXDLL"
|
||||
# ADD RSC /l 0x40c /i "../res" /d "_DEBUG" /d "_AFXDLL"
|
||||
BSC32=bscmake.exe
|
||||
# ADD BASE BSC32 /nologo /o"Tmp\TbkP5Evd\Tbk.bsc"
|
||||
# ADD BSC32 /nologo /o"Tmp\TbkDFEvd\Tbk.bsc"
|
||||
LINK32=link.exe
|
||||
# ADD BASE LINK32 X:\CPA\Exe\GAM\GAMP5Evd.lib /nologo /subsystem:windows /dll /debug /machine:I386 /out:"X:\CPA\EXE\GAM\EDT_Data\Tools\TbkDFEvd.dll" /pdbtype:sept
|
||||
# SUBTRACT BASE LINK32 /pdb:none
|
||||
# ADD LINK32 /nologo /subsystem:windows /dll /debug /machine:I386 /nodefaultlib:"msvcrtd.lib" /out:"X:\CPA\EXE\Main\EDT_Data\Tools\TbkDFEvd.dll" /pdbtype:sept
|
||||
# SUBTRACT LINK32 /pdb:none
|
||||
# Begin Target
|
||||
|
||||
# Name "TBK - Win32 Debug Glide with Editors"
|
||||
# Begin Group "Source Files"
|
||||
|
||||
# PROP Default_Filter "*.c *.cpp"
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=.\Src\_object.def
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=.\Src\DLLCom.cpp
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=.\Src\StdAfx.cpp
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=.\Src\TBKdName.cpp
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=.\Src\TBKinter.cpp
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=.\Src\TBKobj.cpp
|
||||
# End Source File
|
||||
# End Group
|
||||
# Begin Group "Libs Debug"
|
||||
|
||||
# PROP Default_Filter "*.lib"
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\Exe\Main\MaiDFEvd.lib
|
||||
# End Source File
|
||||
# End Group
|
||||
# Begin Group "Include Files"
|
||||
|
||||
# PROP Default_Filter "*.h *.hpp"
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=.\Inc\StdAfx.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=.\Inc\TBKdName.hpp
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=.\Inc\TBKinter.hpp
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=.\Inc\TBKobj.hpp
|
||||
# End Source File
|
||||
# End Group
|
||||
# Begin Group "Resource Files"
|
||||
|
||||
# PROP Default_Filter "*.rc *.h *.ico *.bmp"
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=.\res\tbk_bank.ico
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=.\res\tbk_bnk1.ico
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=.\res\tbk_bnk2.ico
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=.\res\tbk_bnk3.ico
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=.\res\tbk_bnk4.ico
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=.\res\tbk_bnk5.ico
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=.\res\tbk_bnk6.ico
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=.\res\tbk_comn.ico
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=.\res\tbk_dlgb.ico
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=.\res\tbk_sect.ico
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=.\res\TBKres.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=.\res\TBKres.rc
|
||||
# End Source File
|
||||
# End Group
|
||||
# Begin Group "Others"
|
||||
|
||||
# PROP Default_Filter "*.ini"
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\exe\main\edt_data\Tools\TBK\TBKkeys.ini
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\exe\main\edt_data\Tools\TBK\TBKPref.ini
|
||||
# End Source File
|
||||
# End Group
|
||||
# End Target
|
||||
# End Project
|
237
Rayman_X/cpa/tempgrp/TBK/Tbk.vcproj
Normal file
237
Rayman_X/cpa/tempgrp/TBK/Tbk.vcproj
Normal file
@@ -0,0 +1,237 @@
|
||||
<?xml version="1.0" encoding="Windows-1252"?>
|
||||
<VisualStudioProject
|
||||
ProjectType="Visual C++"
|
||||
Version="7.10"
|
||||
Name="TBK"
|
||||
ProjectGUID="{B5CF5B6C-EDA0-4B56-9113-23F6A1C32B10}"
|
||||
SccProjectName=""$/cpa/tempgrp/TBK", HLCBAAAA"
|
||||
SccLocalPath="."
|
||||
Keyword="MFCProj">
|
||||
<Platforms>
|
||||
<Platform
|
||||
Name="Win32"/>
|
||||
</Platforms>
|
||||
<Configurations>
|
||||
<Configuration
|
||||
Name="Debug Glide with Editors|Win32"
|
||||
OutputDirectory="x:\CPA\EXE\Main\Edt_Data\Tools"
|
||||
IntermediateDirectory=".\Tmp\TbkDFEvd"
|
||||
ConfigurationType="2"
|
||||
UseOfMFC="2"
|
||||
ATLMinimizesCRunTimeLibraryUsage="FALSE">
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
Optimization="0"
|
||||
AdditionalIncludeDirectories="x:\cpa\main\inc,x:\cpa\public,inc,res"
|
||||
PreprocessorDefinitions="CPA_WANTS_IMPORT;ACTIVE_EDITOR;WIN32;_DEBUG;_WINDOWS;CPA_VISUAL;CPA_DEBUG;VISUAL"
|
||||
RuntimeLibrary="3"
|
||||
UsePrecompiledHeader="2"
|
||||
PrecompiledHeaderFile=".\Tmp\TbkDFEvd/Tbk.pch"
|
||||
AssemblerListingLocation=".\Tmp\TbkDFEvd/"
|
||||
ObjectFile=".\Tmp\TbkDFEvd/"
|
||||
ProgramDataBaseFileName=".\Tmp\TbkDFEvd/"
|
||||
BrowseInformation="1"
|
||||
BrowseInformationFile=".\Tmp\TbkDFEvd/"
|
||||
WarningLevel="3"
|
||||
SuppressStartupBanner="TRUE"
|
||||
DebugInformationFormat="1"
|
||||
CompileAs="0"/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"/>
|
||||
<Tool
|
||||
Name="VCLinkerTool"
|
||||
OutputFile="X:\CPA\EXE\Main\EDT_Data\Tools\TbkDFEvd.dll"
|
||||
LinkIncremental="1"
|
||||
SuppressStartupBanner="TRUE"
|
||||
IgnoreDefaultLibraryNames=""
|
||||
ModuleDefinitionFile=".\Src\_object.def"
|
||||
GenerateDebugInformation="TRUE"
|
||||
ProgramDatabaseFile="x:\CPA\EXE\Main\Edt_Data\Tools/TbkDFEvd.pdb"
|
||||
SubSystem="2"
|
||||
ImportLibrary="x:\CPA\EXE\Main\Edt_Data\Tools/TbkDFEvd.lib"
|
||||
TargetMachine="1"/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"
|
||||
PreprocessorDefinitions="_DEBUG"
|
||||
MkTypLibCompatible="TRUE"
|
||||
SuppressStartupBanner="TRUE"
|
||||
TargetEnvironment="1"
|
||||
TypeLibraryName="x:\CPA\EXE\Main\Edt_Data\Tools/Tbk.tlb"
|
||||
HeaderFileName=""/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"
|
||||
PreprocessorDefinitions="_DEBUG"
|
||||
Culture="1036"
|
||||
AdditionalIncludeDirectories="../res"/>
|
||||
<Tool
|
||||
Name="VCWebServiceProxyGeneratorTool"/>
|
||||
<Tool
|
||||
Name="VCXMLDataGeneratorTool"/>
|
||||
<Tool
|
||||
Name="VCWebDeploymentTool"/>
|
||||
<Tool
|
||||
Name="VCManagedWrapperGeneratorTool"/>
|
||||
<Tool
|
||||
Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
|
||||
</Configuration>
|
||||
</Configurations>
|
||||
<References>
|
||||
</References>
|
||||
<Files>
|
||||
<Filter
|
||||
Name="Source Files"
|
||||
Filter="*.c *.cpp">
|
||||
<File
|
||||
RelativePath="Src\_object.def">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="Src\DLLCom.cpp">
|
||||
<FileConfiguration
|
||||
Name="Debug Glide with Editors|Win32">
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
Optimization="0"
|
||||
AdditionalIncludeDirectories=""
|
||||
PreprocessorDefinitions=""
|
||||
BrowseInformation="1"/>
|
||||
</FileConfiguration>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="Src\StdAfx.cpp">
|
||||
<FileConfiguration
|
||||
Name="Debug Glide with Editors|Win32">
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
Optimization="0"
|
||||
AdditionalIncludeDirectories=""
|
||||
PreprocessorDefinitions=""
|
||||
BrowseInformation="1"/>
|
||||
</FileConfiguration>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="Src\TBKdName.cpp">
|
||||
<FileConfiguration
|
||||
Name="Debug Glide with Editors|Win32">
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
Optimization="0"
|
||||
AdditionalIncludeDirectories=""
|
||||
PreprocessorDefinitions=""
|
||||
BrowseInformation="1"/>
|
||||
</FileConfiguration>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="Src\TBKinter.cpp">
|
||||
<FileConfiguration
|
||||
Name="Debug Glide with Editors|Win32">
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
Optimization="0"
|
||||
AdditionalIncludeDirectories=""
|
||||
PreprocessorDefinitions=""
|
||||
BrowseInformation="1"/>
|
||||
</FileConfiguration>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="Src\TBKobj.cpp">
|
||||
<FileConfiguration
|
||||
Name="Debug Glide with Editors|Win32">
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
Optimization="0"
|
||||
AdditionalIncludeDirectories=""
|
||||
PreprocessorDefinitions=""
|
||||
BrowseInformation="1"/>
|
||||
</FileConfiguration>
|
||||
</File>
|
||||
</Filter>
|
||||
<Filter
|
||||
Name="Libs Debug"
|
||||
Filter="*.lib">
|
||||
<File
|
||||
RelativePath="..\..\Exe\Main\MaiDFEvd.lib">
|
||||
</File>
|
||||
</Filter>
|
||||
<Filter
|
||||
Name="Include Files"
|
||||
Filter="*.h *.hpp">
|
||||
<File
|
||||
RelativePath="Inc\StdAfx.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="Inc\TBKdName.hpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="Inc\TBKinter.hpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="Inc\TBKobj.hpp">
|
||||
</File>
|
||||
</Filter>
|
||||
<Filter
|
||||
Name="Resource Files"
|
||||
Filter="*.rc *.h *.ico *.bmp">
|
||||
<File
|
||||
RelativePath="res\tbk_bank.ico">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="res\tbk_bnk1.ico">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="res\tbk_bnk2.ico">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="res\tbk_bnk3.ico">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="res\tbk_bnk4.ico">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="res\tbk_bnk5.ico">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="res\tbk_bnk6.ico">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="res\tbk_comn.ico">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="res\tbk_dlgb.ico">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="res\tbk_sect.ico">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="res\TBKres.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="res\TBKres.rc">
|
||||
<FileConfiguration
|
||||
Name="Debug Glide with Editors|Win32">
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"
|
||||
PreprocessorDefinitions=""
|
||||
AdditionalIncludeDirectories="res"/>
|
||||
</FileConfiguration>
|
||||
</File>
|
||||
</Filter>
|
||||
<Filter
|
||||
Name="Others"
|
||||
Filter="*.ini">
|
||||
<File
|
||||
RelativePath="..\..\exe\main\edt_data\Tools\TBK\TBKkeys.ini">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\exe\main\edt_data\Tools\TBK\TBKPref.ini">
|
||||
</File>
|
||||
</Filter>
|
||||
</Files>
|
||||
<Globals>
|
||||
</Globals>
|
||||
</VisualStudioProject>
|
5
Rayman_X/cpa/tempgrp/TBK/mssccprj.scc
Normal file
5
Rayman_X/cpa/tempgrp/TBK/mssccprj.scc
Normal file
@@ -0,0 +1,5 @@
|
||||
SCC = This is a Source Code Control file
|
||||
|
||||
[Tbk.dsp]
|
||||
SCC_Aux_Path = "\\srvprojets-ma\Rayman4_DS\Versions\Rayman4DS\Tools"
|
||||
SCC_Project_Name = "$/CPA/tempgrp/TBK", ALRAAAAA
|
Reference in New Issue
Block a user