#include "camtypes.h"#include "camelot.h"#include "oilfiles.h"#include "camframe.h"#include "gallery.h"#include "keymsg.h"#include "keypress.h"#include "basebar.h"#include "product.h"#include "selector.h"#include "bubbleid.h"#include "vkextra.h"#include "ctrllist.h"#include "cversion.h"#include "biasdlg.h"Go to the source code of this file.
Defines | |
| #define | new CAM_DEBUG_NEW |
| #define | QUOTE "\"" |
| Writes the control to the given string This will be in the form of:- Control H "BreakShapes" 0 126 220 V "BreakShapes" 0 126 220. | |
Functions | |
| static TokenIndex | FindToken (const TCHAR *Token) |
| Looks up the token index for the given string in the token table. | |
Variables | |
| static String_256 | DefaultBarsConfigPath |
| static BOOL | ShowSystemBars = FALSE |
| static String_64 | BarsVersion |
| struct { | |
| TCHAR * Token | |
| TCHAR * Token | |
| TCHAR * tag | |
| INT32 Id | |
| TCHAR * Token | |
| UINT32 Magic | |
| UINT32 Serial | |
| wchar_t Name [BRANDED_NAME_MAX] | |
| wchar_t Company [BRANDED_NAME_MAX] | |
| TCHAR * Token | |
| GridType Type | |
| UINT32 IDS | |
| TCHAR * Token | |
| } | TokenTable [] |
|
|
|
|
|
Writes the control to the given string This will be in the form of:- Control H "BreakShapes" 0 126 220 V "BreakShapes" 0 126 220.
|
|
|
Looks up the token index for the given string in the token table.
Definition at line 233 of file bars.cpp. 00234 { 00235 for (INT32 i=0;i<NUM_TOKENS;i++) 00236 { 00237 if (camStrcmp(TokenTable[i].Token,Token) == 0) 00238 return ((TokenIndex)i); 00239 } 00240 00241 return (TOKEN_NONE); 00242 }
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1.4.4