User Profile

Collapse

Profile Sidebar

Collapse
mumya0236
mumya0236
Last Activity: Oct 26 '15, 04:39 AM
Joined: Oct 21 '15
Location:
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • mumya0236
    replied to Error:D8021 Visual Studio 2013
    in C
    I did but its giving an error again

    like this :

    Code:
    error D8021: invalid numeric argument '/wd_CRT_SECURE_NO_WARNINGS'
    See more | Go to post

    Leave a comment:


  • mumya0236
    replied to Error:D8021 Visual Studio 2013
    in C
    Code:
    HANDLE WINAPI hook_CreateFileW(LPCWSTR lpFileName, DWORD dwDesiredAccess, DWORD dwShareMode, LPSECURITY_ATTRIBUTES lpSecurityAttributes, DWORD dwCreationDisposition, DWORD dwFlagsAndAttributes, HANDLE hTemplateFile)
    {
    	HANDLE Result;
    
    	// Get custom file path
    	wchar_t CustomFile[MAX_PATH] = L"FUUEL\\";
    	wcscat(CustomFile, lpFileName);
    
    	// See if custom file exists (By setting CreationDisposition
    ...
    See more | Go to post

    Leave a comment:


  • mumya0236
    started a topic Error:D8021 Visual Studio 2013
    in C

    Error:D8021 Visual Studio 2013

    Hello Guys,

    Code:
    invalid numeric argument '_CRT_SECURE_NO_WARNINGS
    Code:
    error D8021: invalid numeric argument '/wd_CRT_SECURE_NO_WARNINGS'
    I can't build. I did try close warnings its just work for one.
    See more | Go to post

  • mumya0236
    replied to C2601: local function definitions are illegal
    in C
    Solved. I did put all codes in another class.
    See more | Go to post

    Leave a comment:


  • mumya0236
    started a topic C2601: local function definitions are illegal
    in C

    C2601: local function definitions are illegal

    Hi Guys I have some problem with C++ its give me error C2601

    C2601:Compare: local function definitions are illegal
    C2601:FindPatte rn: local function definitions are illegal


    Code:
    	bool Compare(const BYTE* pData, const BYTE* bMask, const char* szMask)
    	{
    		for (; *szMask; ++szMask, ++pData, ++bMask)
    		if (*szMask == 'x' && *pData != *bMask)
    			return false;
    		return (*szMask)
    ...
    See more | Go to post
No activity results to display
Show More
Working...