mirror of
https://github.com/WinampDesktop/winamp.git
synced 2025-06-10 11:59:58 -05:00
Initial community commit
This commit is contained in:
23
Src/nde/android/IndexRecord.h
Normal file
23
Src/nde/android/IndexRecord.h
Normal file
@@ -0,0 +1,23 @@
|
||||
#pragma once
|
||||
/*
|
||||
Android (linux) implementation
|
||||
*/
|
||||
#include <stdio.h>
|
||||
#include "Record.h"
|
||||
#include <nu/PtrDeque2.h>
|
||||
class IndexField;
|
||||
class IndexRecord : public RecordBase
|
||||
{
|
||||
public:
|
||||
IndexRecord(int RecordPos, int insertionPoint, VFILE *FileHandle, Table *p);
|
||||
void BuildCollaboration();
|
||||
bool NeedFix();
|
||||
IndexField *GetIndexByName(const char *name);
|
||||
int GetColumnCount() { return Fields.size() - 1; }
|
||||
bool CheckIndexing(int v);
|
||||
int WriteFields(Table *ParentTable);
|
||||
int WriteIndex(Table *ParentTable);
|
||||
typedef bool (*FieldsWalker)(IndexRecord *record, Field *entry, void *context);
|
||||
void WalkFields(FieldsWalker callback, void *context);
|
||||
};
|
||||
|
Reference in New Issue
Block a user