Search Result

Collapse
2 results in 0.0058 seconds.
Keywords
Members
Tags
unsigned
  •  

  • Janyaro
    started a topic Creating java certificate for nokia handsets
    in Java

    Creating java certificate for nokia handsets

    How can i create a *.jad file of a *.jar file ( or certificate ) to get full access in my nokia phone,
    Nokia mobile verifies every action on unsigned java application, my question is how can i sign an unsigned application for x2-00..?
    As i have attached an signed app for x2-00....
    See more | Go to post

  • assigning 64-bit hex values to unsigned long variables

    I'm having a problem with assigning 64-bit hex values to unsigned long variables in MS VS2005 c++ compiler.

    Code:
    unsigned long Number;
    Number = 0x1000000000000000UL;
    After this declaration and assignment, the value in Number is always 0. However, if the hex value is 0x0000000000000 001, then the value is 1 as expected. It seems like the compiler is truncating the most significant 32 bits. How can I make this wor...
    See more | Go to post
Working...