Search:

Type: Posts; User: Anddos

Page 1 of 13 1 2 3 4

Search: Search took 0.02 seconds.

  1. I found this,but its for x86 Windows 7 x86...

    I found this,but its for x86

    Windows 7 x86 execute a primary program call using sysenter | CodersDiscuss.com

    So what is it for x64?
  2. calling Native nldll.dll functions with inline asm

    Ok i am stuck on getting a working sample on how to use usermode functions in inline asm,i understand syscall is for x86 and sysenter is for x64, i understand you get a function which needs to be...
  3. Replies
    2
    Views
    1,213

    Because the decrypted file should be the same as...

    Because the decrypted file should be the same as the file that was crypted, etc back to its original, and i should be able to run the program again...
  4. Replies
    2
    Views
    1,213

    WinCrypt sample decrypting file to 1kb?

    I am following this sample, compiles fine and runs fine, i have encrypted a file with a password, upon using decrypt testEnc.exe testDec.exe , the encrypted file is 1kb, i have a cmd prompt elivated...
  5. ive added if (i % 21 == 0) o

    ive added if (i % 21 == 0) o << "\n";

    //output to the header looks like this,which dosent look right
    const char charArray[] = {
    0xM
    ,0xZ,0x
  6. erm i may have to go back to the original plan ,...

    erm i may have to go back to the original plan , as i cant do this with large files
    so i still need help fixing the first code i originally pasted
  7. NVM i got t working, it should be...

    NVM i got t working, it should be std::fstream::out | std::fstream::binary
  8. Instead ive gone with a differenet aproach,that...

    Instead ive gone with a differenet aproach,that is to load the file in a hex editor and select all the data , click copy to c and paste that array to the header,but when i open the new image file the...
  9. Instead of using resources to embed a file in another, help

    Instead of using windows resources, i would like to embed file data in an array instead inside the application, when it comes to adding the new .h that was created i am presented with a big error...
  10. Replies
    6
    Views
    3,142

    Still cant get it working :(

    Still cant get it working :(
  11. Replies
    6
    Views
    3,142

    Those are set to NULL instead now

    Those are set to NULL instead now
  12. Replies
    6
    Views
    3,142

    Now ive got this g_hNetSession =...

    Now ive got this

    g_hNetSession = InternetConnect(g_hRoot, _TEXT("ismyportopen.com"), INTERNET_DEFAULT_HTTP_PORT, NULL, NULL, INTERNET_SERVICE_HTTP, 0, 0);

    g_hHttpRequest =...
  13. Replies
    6
    Views
    3,142

    WININET HttpOpenRequest Help

    I am trying to check if a port is open using the internet site ismyportopen.com, i seem to get to the function HttpOpenRequest working with this get request...

    g_hHttpRequest =...
  14. ok that works fine, i know how to read from the...

    ok that works fine, i know how to read from the file but i dont know how to read from select lines?
    like if i want to access data2 at anytime with doing ifs >> data1 first
  15. Writing text data to a binary file with fsteam

    fstream ifs;
    ifs.open ("data.str", ios::binary | ios::out);

    char *data1 = "data1";
    char *data2 = "data2";

    ifs.write(data1, strlen(data1));
    ifs.write(data2, strlen(data2));

    when i...
  16. Replies
    4
    Views
    1,059

    Download file from my webserver?

    I cant seem to get it to write out the correct size to the .gif file,the original is 3kb but the new one i write to finishs with 1kb, can anyone help



    cout << "Connected"<< endl;

    ...
  17. Replies
    1
    Views
    933

    Get the colours of pixels in a bitmap file

    How would i get the colours and x,y positions of a bitmap with win32 programming?
  18. can you only use AES encryption on strings?

    can you only use AES encryption on strings only or can it be any data such as a file buffer?
    Thanks
  19. Replies
    2
    Views
    792

    Work out how many seconds a thread ran for

    #include "stdafx.h"
    #include <Windows.h>

    DWORD WINAPI test_thread(LPVOID Param)
    {
    MessageBox(NULL,"test_thread started ","",0);

    for(int i = 0; i < 99999999999; i++)
    {
  20. DirectX 9 D3DXIntersect with first person camera

    I have a first person camera setup and working fine, i am shooting a ray from the camera pos and the direction the camera is facing, when the app first starts the intersect works fine , but when i...
  21. Replies
    2
    Views
    2,356

    Rendering Biped Bones with DirectX 9

    I am new to DirectX and have an animated model up on screen thats in .X format, what i want todo is render the bones, there is 35 of them

    Here is a list

    Bip01_R_UpperArm 0
    Bip01_Spine3 1
    ...
  22. Replies
    6
    Views
    1,163

    i would be greatfull if you could report the code...

    i would be greatfull if you could report the code with those suggestions
  23. Replies
    6
    Views
    1,163

    not the best but my most interesting :)

    not the best but my most interesting :)
  24. Replies
    6
    Views
    1,163

    scan for ints in a process

    basically what i want todo is scan this process for all the ints with the value 5, i am close to getting it working but i think something is missing , can anyone take alook at my code , thanks


    ...
  25. Replies
    3
    Views
    2,468

    how do i do this so it outputs correctly...

    how do i do this so it outputs correctly
    sprintf(outBuffer,"FPS = %f",Delta);

    am i suppose todo maths stuff with FPS or frameDelta now
    like vTurn += vTurn * Speed * frameDelta or FPS?
Results 1 to 25 of 319
Page 1 of 13 1 2 3 4