You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
597 B
24 lines
597 B
#include "PrmDescr.h"
|
|
#pragma once
|
|
|
|
//----------------------------------------------------
|
|
// Handler for the "show" command
|
|
DWORD
|
|
FnCmdShow(PPARAM_DESCR_DATA pPDData);
|
|
|
|
//----------------------------------------------------
|
|
// Handler for the "add" command
|
|
DWORD
|
|
FnCmdAdd(PPARAM_DESCR_DATA pPDData);
|
|
|
|
//----------------------------------------------------
|
|
// Handler for the "delete" command
|
|
DWORD
|
|
FnCmdDelete(PPARAM_DESCR_DATA pPDData);
|
|
|
|
//----------------------------------------------------
|
|
// Handler for the "set" command
|
|
DWORD
|
|
FnCmdSet(PPARAM_DESCR_DATA pPDData);
|
|
|
|
|