blob: 87736ea643643aecb2ebd9406784c5a6eeebb239 (
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_nm(const struct pe_driver_ctx * dctx, const char * path)
{
(void)dctx;
(void)path;
return 0;
}
|