Function Definition Not Found Game Design
| |
| | | | | | | | |
We strive to provide all our services for free and not interrupt your visit with intrusive advertisements or restrictions - support us by disabling your ad blocker or whitelisting our site.
| |||||||
| Thread Tools |
| x64 MASM function definition not found |
| | #1 | |||||||||||
| Master Contributor Join Date: Mar 2017 Posts: 1,379 Reputation: 5452 Points: 19,039, Level: 18
Level up: 83%, 261 Points needed
Activity: 22.2%
| x64 MASM function definition not found test.asm: Code: .code asm_func PROC one:QWORD, two:QWORD, three:QWORD, four:PTR, five:QWORD mov rcx, one mov rdx, two mov rax, three call four mov five, rax asm_func ENDP END cpp: Code: extern "C" { void asm_func(UINT64 one, UINT64 two, DWORD64 three, const BYTE* four, DWORD64 five); } "Function definition for asm_func undefined" Any ideas? Thanks | |||||||||||
| | |
| | #2 | |||||||||||
| n00bie Join Date: Apr 2019 Posts: 15 Reputation: 115 Points: 1,430, Level: 3
Level up: 5%, 670 Points needed
Activity: 3.8%
| need an underscore | |||||||||||
| | |
| | #3 | |||||||||||
| Supreme G0d Join Date: Dec 2014 Posts: 384 Reputation: 18594 Points: 29,940, Level: 25
Level up: 65%, 560 Points needed
Activity: 6.7%
| Quote: Originally Posted by majorupdates69 test.asm: Code: .code asm_func PROC one:QWORD, two:QWORD, three:QWORD, four:PTR, five:QWORD mov rcx, one mov rdx, two mov rax, three call four mov five, rax asm_func ENDP END cpp: Code: extern "C" { void asm_func(UINT64 one, UINT64 two, DWORD64 three, const BYTE* four, DWORD64 five); } "Function definition for asm_func undefined" Any ideas? Thanks Make asm_func public and create a header file for the function declaration. test.asm: Code: PUBLIC asm_func .code asm_func PROC one:QWORD, two:QWORD, three:QWORD, four:PTR, five:QWORD mov rcx, one mov rdx, two mov rax, three call four mov five, rax asm_func ENDP END test.h: Code: EXTERN_C void asm_func(UINT64 one, UINT64 two, DWORD64 three, const BYTE* four, DWORD64 five); source.cpp: Code: #include "test.h" VOID TestAsm() { asm_func(1, 2, 3, NULL, 5); } | |||||||||||
| | |
| | #4 | |||||||||||
| Fuck face unstoppable. Join Date: Mar 2014 Posts: 219 Reputation: 9586 Points: 15,751, Level: 16
Level up: 54%, 649 Points needed
Activity: 2.1%
| Make sure MSVC is actually compiling the file (check the output). | |||||||||||
| | |
| | #5 | |||||||||||
| - Join Date: Sep 2009 Location: Spain Posts: 72 Reputation: 877 Points: 10,271, Level: 12
Level up: 40%, 729 Points needed
Activity: 2.2%
| Quote: Originally Posted by majorupdates69 test.asm: Code: .code asm_func PROC one:QWORD, two:QWORD, three:QWORD, four:PTR, five:QWORD mov rcx, one mov rdx, two mov rax, three call four mov five, rax asm_func ENDP END cpp: Code: extern "C" { void asm_func(UINT64 one, UINT64 two, DWORD64 three, const BYTE* four, DWORD64 five); } "Function definition for asm_func undefined" Any ideas? Thanks You need include your ".asm" file, right clic -> properties -> General -> Item Type: Microsoft Macro Assembler __________________ | |||||||||||
| | |
We strive to provide all our services for free and not interrupt your visit with intrusive advertisements or restrictions - support us by disabling your ad blocker or whitelisting our site.
Similar Threads | ||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| [Help] Visual Studio MASM x64 Jmp | SmoLL | Assembly | 7 | 2nd February 2019 01:45 PM |
| [Help] Function definition not found | 135790 | General Programming and Reversing | 10 | 8th October 2018 08:45 PM |
| [Coding] How can i guess a Function definition | Hekenwins | C and C++ | 6 | 16th May 2015 09:36 PM |
| Definition game. | Smith | Spam | 1 | 27th May 2008 07:13 PM |
| Definition Game | shoot | Spam | 9 | 27th December 2006 10:03 PM |
| Tags |
mov, asm_func, rax, function, definition, dword64, cpp, extern, uint64, void |
« Previous Thread | Next Thread »
|
|
All times are GMT. The time now is 11:32 AM.
| |
no new posts
Function Definition Not Found Game Design
Source: https://www.unknowncheats.me/forum/c-and-c-/353700-x64-masm-function-definition-found.html
Posted by: millerdurs1999.blogspot.com

Similar Threads
0 Response to "Function Definition Not Found Game Design"
Post a Comment