SYMBOL INDEX (75 symbols across 11 files) FILE: src/Contained_RBTree.c function RBTreeNode_IsSentinel (line 30) | bool RBTreeNode_IsSentinel( RBTreeNode *Node ) { function RBTreeNode_Init (line 34) | void RBTreeNode_Init( RBTreeNode* Node ) { function RBTree_InitRootSentinel (line 38) | void RBTree_InitRootSentinel( RBTreeNode *RootSentinel ) { function RBTree_Clear (line 46) | void RBTree_Clear( RBTreeNode *RootSentinel ) { function RBTree_Add (line 55) | bool RBTree_Add( RBTreeNode *RootSentinel, RBTreeNode* NewNode, RBTree_i... function RBTreeNode (line 96) | RBTreeNode* RBTree_Find( const RBTreeNode *RootSentinel, const void* Sea... function RBTreeNode (line 107) | RBTreeNode* RBTree_GetLeftmost( RBTreeNode* Node ) { function RBTreeNode (line 113) | RBTreeNode* RBTree_GetRightmost( RBTreeNode* Node ) { function RBTreeNode (line 119) | RBTreeNode* RBTree_GetPrev( RBTreeNode* Node ) { function RBTreeNode (line 141) | RBTreeNode* RBTree_GetNext( RBTreeNode* Node ) { function RBTree_RightSide_RightRotate (line 164) | void RBTree_RightSide_RightRotate( RBTreeNode* Node ) { function RBTree_LeftSide_LeftRotate (line 180) | void RBTree_LeftSide_LeftRotate( RBTreeNode* Node ) { function RBTree_LeftSide_RightRotate (line 196) | void RBTree_LeftSide_RightRotate( RBTreeNode* Node ) { function RBTree_RightSide_LeftRotate (line 212) | void RBTree_RightSide_LeftRotate( RBTreeNode* Node ) { function RBTree_Balance (line 229) | void RBTree_Balance( RBTreeNode* Current ) { function RBTree_Prune (line 291) | bool RBTree_Prune( RBTreeNode* Current ) { function RBTree_PruneLeaf (line 329) | void RBTree_PruneLeaf( RBTreeNode* Node ) { FILE: src/Contained_RBTree.h type RBTreeNode (line 27) | typedef struct RBTreeNode_t { type RBTree (line 123) | typedef struct RBTree_t { FILE: src/Font.c function InitNamedFont (line 52) | bool InitNamedFont(SymbVarEntry *sym, FTGLfont *font) { FILE: src/Global.c function WinPerror (line 5) | void WinPerror(char *msg) { function DebugMsg (line 21) | void DebugMsg(char *msg, ...) { FILE: src/Global.h type ParseParamsResult (line 15) | struct ParseParamsResult FILE: src/ImageLoader.c function UsableByGL (line 9) | bool UsableByGL(SDL_Surface *Img) { function SDL_Surface (line 35) | SDL_Surface* LoadImg(const char *FName) { function else (line 74) | else if (fmt->Bmask == 0xFF000000 && fmt->Gmask == 0x00FF0000 && fmt->Rm... FILE: src/ProcessInput.c function InitLineBuffer (line 95) | void InitLineBuffer(HANDLE FileHandle /*, LineBuffer *this */) { function ShiftBuffer (line 104) | void ShiftBuffer(/* LineBuffer *this */) { function ProcessCommand (line 209) | int ProcessCommand(char *Line) { function ParseParams (line 259) | bool ParseParams(char **line, const char *format, struct ParseParamsResu... function ParseInt (line 384) | bool ParseInt(char **line, struct ParseParamsResult *parsed) { function ParseFloat (line 425) | bool ParseFloat(char **line, struct ParseParamsResult *parsed) { function ParseDouble (line 435) | bool ParseDouble(char **line, struct ParseParamsResult *parsed) { function ParseToken (line 469) | bool ParseToken(char **line, struct ParseParamsResult *parsed) { function CaptureRemainder (line 484) | bool CaptureRemainder(char **line, struct ParseParamsResult *parsed) { function ParseColor (line 496) | bool ParseColor(char **line, struct ParseParamsResult *parsed) { function ParseHexColor (line 530) | bool ParseHexColor(const char* Text, float Result[4]) { function ParseHexByte (line 544) | bool ParseHexByte(const char *str, float *Result) { function FileExists (line 560) | bool FileExists(const char *Name) { FILE: src/ProcessInput.h type SymbVarEntry_t (line 21) | struct SymbVarEntry_t type ParseParamsResult (line 36) | struct ParseParamsResult { type ParseParamsResult (line 47) | struct ParseParamsResult type ParseParamsResult (line 49) | struct ParseParamsResult type ParseParamsResult (line 50) | struct ParseParamsResult type ParseParamsResult (line 52) | struct ParseParamsResult type ParseParamsResult (line 53) | struct ParseParamsResult type ParseParamsResult (line 54) | struct ParseParamsResult type ParseParamsResult (line 56) | struct ParseParamsResult FILE: src/Server.c type CmdlineOptions (line 13) | typedef struct { function main (line 56) | int main(int Argc, char**Args) { function SetParamDefaults (line 163) | void SetParamDefaults(CmdlineOptions *Options) { function PrintMissingParamMessage (line 170) | void PrintMissingParamMessage(char* ArgName, CmdlineOptions *Options) { function ReadParams (line 175) | void ReadParams(char **Args, CmdlineOptions *Options) { function PrintUsage (line 291) | void PrintUsage(bool error) { function CheckInput (line 410) | void CheckInput() { function CheckSDLEvents (line 431) | void CheckSDLEvents() { function FinishResize (line 482) | void FinishResize() { function InitGL (line 493) | void InitGL(int w, int h) { function EmitKey (line 533) | void EmitKey(const SDL_KeyboardEvent *E) { function encode_utf8 (line 551) | void encode_utf8(char *buffer, unsigned codepoint) { FILE: src/SymbolHash.c function DumpConstList (line 15) | void DumpConstList(FILE* DestStream) { function DumpCommandList (line 28) | void DumpCommandList(FILE* DestStream) { function CalcHash (line 37) | unsigned int CalcHash(const char* str) { function InitSymbVarEntry (line 44) | void InitSymbVarEntry(SymbVarEntry *Entry, const char* Name, int Type) { function SymbVar_inorder_func (line 53) | bool SymbVar_inorder_func(const void* ObjA, const void* ObjB) { type SymbVarSearchKey (line 67) | typedef struct { function SymbVar_compare_func (line 73) | int SymbVar_compare_func(const void* SearchKey, const void* Object) { function SymbVarEntry (line 86) | SymbVarEntry *GetSymbVar(const char *Name, int Type) { function SymbVarEntry (line 102) | SymbVarEntry *CreateSymbVar(const char *Name, int Type) { function DeleteSymbVar (line 114) | void DeleteSymbVar(SymbVarEntry *Entry) { function DumpVarList (line 119) | void DumpVarList(FILE* DestStream) { FILE: src/SymbolHash.h type ParseParamsResult (line 6) | struct ParseParamsResult type CmdListEntry (line 8) | typedef struct { type IntConstListEntry (line 14) | typedef struct { type SymbVarEntry (line 23) | typedef struct SymbVarEntry_t {