blob: 4f16b7587637acf9e0b63a8ddff117934c92421d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
/***************************************************************/
/* perk: PE Resource Kit */
/* Copyright (C) 2015--2025 SysDeer Technologies, LLC */
/* Released under GPLv2 and GPLv3; see COPYING.PERK. */
/***************************************************************/
#include <perk/perk.h>
#include "perk_driver_impl.h"
int pe_cmd_size(const struct pe_driver_ctx * dctx, const char * path)
{
(void)dctx;
(void)path;
return 0;
}
|