Skip to content

Commit

Permalink
added symbol file for windows
Browse files Browse the repository at this point in the history
  • Loading branch information
rdbo committed Mar 3, 2024
1 parent df845e4 commit d3d302d
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions src/win/symbol.c
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
/*
* ----------------------------------
* | libmem - by rdbo |
* | Memory Hacking Library |
* ----------------------------------
*/

/*
* Copyright (C) 2023 Rdbo
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License version 3
* 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 Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/

#include <libmem/libmem.h>

LM_API lm_bool_t LM_CALL
LM_EnumSymbols(const lm_module_t *module,
lm_bool_t (LM_CALL *callback)(lm_symbol_t *symbol,
lm_void_t *arg),
lm_void_t *arg)
{

}

0 comments on commit d3d302d

Please sign in to comment.