Search:

Type: Posts; User: Uwar

Search: Search took 0.01 seconds.

  1. Replies
    0
    Views
    2,232

    stdcall name mangling on Widnows

    Is it to possible to disable stdcall name mangling on Windows (I mean @N). On GNU/Linux everythings works well because I have a stdcall(which I need) without @N (which I can't have).
    It is...
  2. Replies
    1
    Views
    812

    Struct definition problem

    I defined following struct:



    typedef struct COLABR {
    char *className;
    COLABR *next ;
    } COLABR;
  3. Replies
    0
    Views
    2,851

    Creating ICON form BITMAP files

    I have a problem with creating icon form bitmap files my code is following:




    // HWND o_hwnd - handle to current window
    // import - retrieves content of specified file

    ICONINFO...
  4. Replies
    1
    Views
    1,178

    WinAPI interfaces in C

    Where can I find some samples or tutorial, how to use Windows API interfaces in C programming language? I known it is possible by virtual method table.
  5. How to intialize pointer to member function inside ctor

    How to intialize pointer to member function inside constructor.


    class Foo{
    private:
    void (Foo::*func)();
    void _func(){}
    public:
    Foo(){
    func = &Foo::_func;
  6. Thread: Modern DEBUG?

    by Uwar
    Replies
    10
    Views
    2,658

    Ok, thanks a lot for all. I will try WinDbg.

    Ok, thanks a lot for all. I will try WinDbg.
  7. Thread: Modern DEBUG?

    by Uwar
    Replies
    10
    Views
    2,658

    Well, after all thank's sean. I will looking...

    Well, after all thank's sean. I will looking around, but Maybe MS DEBUG is the best :rolleyes:.
  8. Thread: Modern DEBUG?

    by Uwar
    Replies
    10
    Views
    2,658

    Modern DEBUG?

    I'm looking for some Debugger which works like MS DOS DEBUG (flags and register states after each instruction, memory dumping, ...), but for 32 bit processors and for Windows 5.
    Have you ever heard...
  9. Replies
    2
    Views
    2,046

    Thanks a lot! :)

    Thanks a lot! :)
  10. Replies
    2
    Views
    2,046

    Object Oriented WinAPI

    I have a problem with following code:
    Everything is OK before that I want to use 'this' pointer from windowProcedure:

    SetWindowText(o_hwnd, this->m_className);
    Any idea? I don't understand why...
Results 1 to 10 of 10