Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
50% Quality Score
Upvotes Received
1
Posts with Upvotes
1
Upvoting Members
1
Downvotes Received
1
Posts with Downvotes
1
Downvoting Members
1
0 Endorsements
Ranked #4K
~4K People Reached
Favorite Forums
Favorite Tags
Member Avatar for lelejau

Just after I include D3DX9.H I get tons of errors... like these: [CODE] Error 12 error C2039: 'm' : is not a member of 'D3DXMATRIX' c:\program files\microsoft directx 9.0 sdk (summer 2004)\include\d3dx9math.inl 1987 1 Aura2 Error 13 error C2039: 'm' : is not a member of 'D3DXMATRIX' c:\program files\microsoft directx …

Member Avatar for lelejau
0
931
Member Avatar for minghags

Hello. I have to do an program that writes an scale from num 1 to num 2. I managed to do that writes out from 1 to given number. Can anyone help me do that I can insert an scale starting number? Code: [CODE]#include <iostream> using namespace std; void prime_num(int); …

Member Avatar for minghags
0
244
Member Avatar for lelejau

I have this code to take a screenshot of my app window: [CODE] BOOL TakeScreenshot() { struct tagPOINT Point; struct _SYSTEMTIME SystemTime; HWND handle = (HWND)WINDOW_HANDLE; if(handle) { CreateDirectoryA("Capture",0); RECT r; GetClientRect(handle,&r); Point.x = r.left; Point.y = r.top; ClientToScreen(handle,&Point); OffsetRect(&r,Point.x,Point.y); HDC cr = CreateDCA("DISPLAY",0,0,0); HDC cr1 = CreateCompatibleDC(cr); HBITMAP ho …

0
69
Member Avatar for aFg3

Ok I just need an idea or a source code to start my project. I need to read a text file with fstream or any other thing. This will be my txt file (nothing the same, just an example) [CODE]a = 6 b = 3 c = 7 a - …

Member Avatar for Narue
0
187
Member Avatar for lelejau

I have already downloaded the latest DX SDK (June 2010) and still, this error remains. error C2065: 'IID_IDirect3D3' : undeclared identifier I already included the headers below but it seems not to work, what am I missing? #include <d3d9.h> #include <ddraw.h>

Member Avatar for lelejau
0
200
Member Avatar for lelejau

Hello. I have some function named: Function Decrypt(pBuffer :TBytes) : TBytes ; and I hooked winsock recv method, and I have this function: [CODE] function R_CallBack(a1:Integer; var buffer;a2,a3:Integer):cardinal;stdcall; var DecryptedBuffer:TBytes; begin DecryptedBuffer:=Decrypt(buffer); Result:=1; end; [/CODE] but I'm getting an error.. Incompatible types: 'procedure, untyped pointer or untyped parameter' and 'TBytes' …

Member Avatar for TrustyTony
0
124
Member Avatar for lelejau

Hello, I have this code: [code] void GetProcId(char* ProcName) { PROCESSENTRY32 pe32; HANDLE hSnapshot = NULL; pe32.dwSize = sizeof( PROCESSENTRY32 ); hSnapshot = CreateToolhelp32Snapshot( TH32CS_SNAPPROCESS, 0 ); if( Process32First( hSnapshot, &pe32 ) ) { do{ if( _stricmp( pe32.szExeFile, ProcName ) == 0 ) break; }while( Process32Next( hSnapshot, &pe32 ) ); …

Member Avatar for thelamb
0
492
Member Avatar for lelejau

I have this code: [code] HWND handle = CreateWindowExA(0,name,name, WS_POPUP+WS_MINIMIZEBOX+WS_MAXIMIZEBOX+WS_SYSMENU+WS_CAPTION, 0x13D,0x86, // x y 0x320,0x258, // width height 0,0,hInst,0); [/code] But my window's name only contains one letter oO My final window name is "W"... what am I doing wrong?

Member Avatar for lelejau
0
156
Member Avatar for lelejau

Hello. How can I protect my application against Memory Editors? Like, Cheat Engine, Debuggers, etc.

Member Avatar for FreeBirdLjj
0
88
Member Avatar for lelejau

Hello, I have this code: [code] .data xd db "jjjj",0 .code ; ««««««««««««««««««««««««««««««««««««««««««««««««««««««««««««««««««««« LibMain proc instance:DWORD,reason:DWORD,unused:DWORD .if reason == DLL_PROCESS_ATTACH push dword ptr ds:[ xd] call Teste mov eax, TRUE ; return TRUE so DLL will start .elseif reason == DLL_PROCESS_DETACH .elseif reason == DLL_THREAD_ATTACH .elseif reason == DLL_THREAD_DETACH .endif …

Member Avatar for GunnerInc
0
140
Member Avatar for lelejau

Hello. How can I protect my application against Memory Editors? Like, Cheat Engine, Debuggers, etc.

Member Avatar for JSPMA1988
0
128
Member Avatar for lelejau

Hi. In C++ ie we can do this: code.cpp [code] #include vars.h main() { if var1 == 1 { printf("ok"); } return true; } [/code] The point is not the code itself, but that #include. I'd like to have a *.cs file containing some numeric variables. But not a Class, …

Member Avatar for ddanbe
0
96
Member Avatar for lelejau

Hello, I have this C++ code, I dunno how it works.. Anyway, I'd like to have it translated to Delphi. If anyone can help me out, I'd be glad. [code] typedef void (*t_ChatPrint) ( char * ); t_ChatPrint ChatPrint = (t_ChatPrint)0x0054E410; void ChatPrintf( const char *format, ... ) { va_list …

Member Avatar for lelejau
0
114
Member Avatar for lelejau

I have this function in the main form: [code=c] public void Check() { UpBox myClass = new UpBox(); myClass.UpdateBox(listBox1,"Hello"); } public void Initial() { Thread thread = new Thread(new ThreadStart(Check)); thread.Start(); } class UpBox { private delegate void Box(ListBox list, string text); public void Box2(ListBox list,string text) { list.Items.Add(text); } …

Member Avatar for Mitja Bonca
0
179
Member Avatar for lelejau

how can I hook the LoadLibraryA API? I am googling a lot but I can't find any piece of code that helps me doing what I want to. I just want to intercept it and display in a message box what is the name of the DLL that the program …

Member Avatar for mike_2000_17
0
1K