User Profile

Collapse

Profile Sidebar

Collapse
kenk
kenk
Last Activity: Oct 1 '07, 09:48 AM
Joined: Nov 10 '06
Location:
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • kenk
    started a topic C++ functions overwritting question
    in C

    C++ functions overwritting question

    If i have:

    class F
    {
    void Foo();
    void Foo(int i=0);
    ...
    };

    and later

    ...
    Foo f;
    f.Foo();
    ....

    Is it a conflict situation for compiler?
    What does C++ standard tells about this?

    Thanks in advance for your answer!

    M.
    See more | Go to post

  • kenk
    started a topic USB driver

    USB driver

    Hello all,

    I want to write own usb driver for Windows 2000/XP.
    Can somebody point me, where I can find usefull information how to do that?

    Thank you in advance!

    M.
    See more | Go to post

  • kenk
    started a topic logs classification
    in C

    logs classification

    Can anyone point me some sites, or tell me where can i find information of industry standards for classification information for loggers and tracers?

    I know that, there are some loggers that are able to set some levels for data and filter those data but i need more specific information.

    Thank You in advance!

    M.
    See more | Go to post

  • kenk
    started a topic Usb-Acm drivers for Windows

    Usb-Acm drivers for Windows

    Do Windows XP by default provides any usb-acm drivers ?

    Thanks in advance for answers!

    M.
    See more | Go to post

  • kenk
    replied to something like C-language printf function
    in Java
    Thanks again for your answer.

    King Regards

    M.
    See more | Go to post

    Leave a comment:


  • kenk
    started a topic something like C-language printf function
    in Java

    something like C-language printf function

    Can somebody show me, how to declare function with variable number of parameters in Java? I want to provide method similar to C-language printf function.

    Thanks in adavne!

    M.
    See more | Go to post

  • kenk
    started a topic Code analyzer
    in C

    Code analyzer

    can you give me some examples of free c/c++ code analizers?
    i want to count cunctions and code lines in my application.

    Thanks in advance!

    kenk
    See more | Go to post

  • kenk
    started a topic parser choice
    in XML

    parser choice

    What is the best Java xml parser for dealing with huge xml files (about 1 Gb). By dealing i mean: parsing, searching etc.


    Thanks in advance!
    See more | Go to post

  • kenk
    started a topic USB and Java
    in Java

    USB and Java

    Hi,

    There is some API in Java (J2SE) that deal with USB interface. I want to write application that recieve and send some data to mobile phone through USB cable.
    I'll be obligated if someone can point me class names and hopefully some code examples.

    Thanks in advance!

    kenk
    See more | Go to post

  • kenk
    replied to How to export all functions in Visual Studio ?
    in C
    That's the problem. I want to ignore all (dllexport) symbols and export all public functions from my component.

    M.
    See more | Go to post

    Leave a comment:


  • kenk
    started a topic How to export all functions in Visual Studio ?
    in C

    How to export all functions in Visual Studio ?

    Hi,

    Do you know how to export all functions from Visual Studio project (dll for example). I want to export all functions even those which are not marked as intended to export.
    There is some compiler/linker macro maybe?

    Thanks in advance!

    M.
    See more | Go to post

  • kenk
    started a topic how to provide default data?
    in XML

    how to provide default data?

    Hello,

    i'm defining xml-schema and i'm wondering if is posible to provide default data for some structures?

    for example:
    <structure>
    <data>data1</data>
    <data>data2</data>
    </structure>

    Can i define default structure in sml schema?

    thanks in advance!

    M.
    See more | Go to post

  • kenk
    started a topic How to print enums?
    in C

    How to print enums?

    Hi,

    Does enyone know how to print string describing the enum value?
    For example:

    enum MyEnum{F1=1, F2};
    ...
    MyEnum me = F2;
    printf("My Value: %d", me);
    ...
    I get string: "My Value: 2", but how can i format the string to get strong like:
    "My Value: F2" ?

    Thanks in advance for help?

    kenk
    See more | Go to post
No activity results to display
Show More
Working...