📄 flz.cpp
字号:
/*****************************************************************************
*
* This program is free software ; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* The Core Pocket Media Player (Non official plugin)
* Copyright (c) 2007-2008 Fabio
*
****************************************************************************/
#include "../common/common.h"
#include "flz.h"
#include "tchar.h"
typedef struct flz
{
format_base Format;
} flz;
static int Create(flz* p)
{
return ERR_NONE;
}
static const nodedef FLZ=
{
sizeof(flz),
FLZ_ID,
FORMATBASE_CLASS,
PRI_DEFAULT-10, // lower priority so others can override
(nodecreate)Create,
NULL,
};
void FLZ_Init()
{
StringAdd(TRUE, FLZ.Class, NODE_NAME, _T("Flash Video Down"));
StringAdd(TRUE, FLZ.Class, NODE_EXTS, _T("flz:V"));
NodeRegisterClass(&FLZ);
}
void FLZ_Done()
{
NodeUnRegisterClass(FLZ_ID);
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -