Search:

Type: Posts; User: BatchProgrammer

Page 1 of 3 1 2 3

Search: Search took 0.01 seconds.

  1. Replies
    14
    Views
    1,592

    It says it was error code 299 : Only a partial...

    It says it was error code 299 : Only a partial request of ReadProcessMemory() or WriteProcessMemory() was completed. I tried executing it with a simpler game, such as minesweeper with admin access,...
  2. Replies
    14
    Views
    1,592

    Now that I got my code fixed, I have a new...

    Now that I got my code fixed, I have a new problem. For some reason, my program fails at ReadProcessMemory with "No error" as the message. I suspect I may have a made a logic error or done something...
  3. Replies
    14
    Views
    1,592

    My function only returns 0 at the moment because...

    My function only returns 0 at the moment because I didn't want to add more code before fixing the bugs already there. I just wanted to add enough so my compilier wouldn't yell at me for no return...
  4. Replies
    14
    Views
    1,592

    No, I'm not compiling as C99.

    No, I'm not compiling as C99.
  5. Replies
    14
    Views
    1,592

    Passing structures problem

    I have looked at several samples and I am still extremely frustrated because, it seems no matter which way I try it, it gives me the same errors and warnings each time.

    /* Preprocessor directives...
  6. Replies
    8
    Views
    2,244

    ^ What? I stored the address in the Newmem...

    ^ What? I stored the address in the Newmem pointer though. Not exactly sure what you're trying to tell me.
  7. Replies
    8
    Views
    2,244

    MinGW

    MinGW
  8. Replies
    8
    Views
    2,244

    1) AMD Athlon(tm) II X2 250 Processor 3.00 GHz...

    1) AMD Athlon(tm) II X2 250 Processor 3.00 GHz
    2) Windows 7 - 64 bit
    3) Code::Blocks - Full version
  9. Replies
    8
    Views
    2,244

    Asm code hook/ modification problem

    I have never used Asm before, so I've had a little bit of trouble trying to write a Hook in Asm for a process. I've also had trouble with the function FlushInstructionCache. Here is my problematic...
  10. Never mind, I fixed it, I accidentally closed the...

    Never mind, I fixed it, I accidentally closed the process handle before changing the memory inside.
  11. WriteProcessMemory() problem on Windows 7 64-bit - C programming

    BYTE bNewData[]={0x90,0x90,0x90,0x90,0x90,0x90,0x90};
    DWORD dwNewDataSize = sizeof(bNewData);


    if (WriteProcessMemory(hProcess, 0x0094f720, &bNewData, dwNewDataSize,...
  12. WriteProcessMemory() problem on Windows 7 64-bit

    BYTE bNewData[]={0x90,0x90,0x90,0x90,0x90,0x90,0x90};
    DWORD dwNewDataSize = sizeof(bNewData);


    if (WriteProcessMemory(hProcess, 0x0094f720, &bNewData, dwNewDataSize,...
  13. Thanks alot Mfig1, the code works perfectly now!...

    Thanks alot Mfig1, the code works perfectly now! I may not be able to understand all of it yet because I'm a beginner at the WINAPI, but it will be helpful to me to be able to figure out your code...
  14. C pong program ( need help smoothing animations )

    Before I paste the code here, I would like to explain some things.

    1) I built this code of the directional arrow code mentioned in the FAQ, I deleted some of it and then added a ton more.

    2)...
  15. Replies
    10
    Views
    3,096

    Removed the #ifdef _WIN32 and the other macros,...

    Removed the #ifdef _WIN32 and the other macros, since I kept messsing it up, and I guess I'll just keep it simple for now.



    #include <ctype.h>
    #include <stdio.h>
    #include <stdlib.h>
    #include...
  16. Oh, and, before I get replies like, " how did you...

    Oh, and, before I get replies like, " how did you make this the first time then? ", I got this off of the website's FAQ for C programming.
  17. How do you get a single character in C without pressing the return key?

    #include <stdio.h>
    #include <conio.h>
    #include <windows.h>




    /* System dependent key codes */
    enum
    {
  18. Replies
    10
    Views
    3,096

    I know that in my later replies I fixed it, I'll...

    I know that in my later replies I fixed it, I'll just post it again I guess ( this time hopefully correctly) :


    #include <ctype.h>
    #include <stdio.h>
    #include <stdlib.h>


    int IsWindows = 1;
  19. Replies
    10
    Views
    3,096

    Sorry again, please add these headers to that...

    Sorry again, please add these headers to that program in the above post at the very top :


    #include <ctype.h>
    #include <stdio.h>
    #include <stdlib.h>
  20. Replies
    10
    Views
    3,096

    Made a mistake in the new code that I realized...

    Made a mistake in the new code that I realized now, here is the new code.


    #define SYSTEM WINDOWS


    #include <process.h>
    #include <windows.h>
  21. Replies
    10
    Views
    3,096

    I *fixed* the code taking the comments above into...

    I *fixed* the code taking the comments above into consideration, I also decided to make it a windows only program. This would make it easier to focus on one thing and be better for me since I only...
  22. Replies
    10
    Views
    3,096

    My first process program...

    I looked up how to do this on a tutorial that used Code::Blocks, and it indeed works with my compilier without any errors or warnings I normally get with most Win32 API progams, but there are a few...
  23. Hello again, in response to Salem's post I have...

    Hello again, in response to Salem's post I have made several changes...

    1) It is now possible to break out of the loop to exit and change which conversion you are using.

    2) I removed the...
  24. Integer/Character converter to binary

    I wrote this code purely for educational purposes. It also helped
    learn more about how exactly things look in memory, so it helped me in that aspect. I'm posting this in order to obtain any...
  25. What is the MIDI documentation for C in Windows 7?

    I've tried to find any factual information I could on google, and
    most of the ones they used weren't even close to ANSI C. Even the ones I tried claiming to be for windows failed with my compilier...
Results 1 to 25 of 55
Page 1 of 3 1 2 3