symbol

how to identify a font as symbolic in java?

Hello, I'm currently looking for a possibility in Java to identify a font as symbolic like OpenOffice does. Characters with the font Windings or Webdings and so on should be rendered with the correct "pictures". Anyone an idea how to distinguish between normal fonts and fonts with symbols? ...

running cpy and .run on mc9090g in cold boot

I've followed the instructions Symbol provided to have Datawedge run on cold boot on the mc9090 windows mobile device. However, it doesn't work. Is there any documentation on the file formats for the .cpy or .run files? Is there a way to get any debugging or logging information? This is what I did, following the Windows Mobile instru...

Symbol SDK - Get Device Serial Number

Has anyone done any dev work woek the Symbol Device SDK. I want to get the Device Serial Number and write it to a value in the registry. Does the Symbol SDK get you the facility of getting the Device Serial Number, if so do you no what the class is called as there are quite a few in the SDK pack? Any help would be welcome..... ...

"Don't know how to create ISeq from: Symbol" error in Clojure

I have the following Clojure code and I'm not sure why it's not working: (defn match (x y &optional binds) (cond ((eql x y) (values binds t)) ((assoc x binds) (match (binding x binds) y binds)) ((assoc y binds) (match x (binding y binds) binds)) ((var? x) (values (cons (cons x y) binds) t)) ((var? y) (values (cons (cons...

WM 5 SDK Symbol

We have a large number of Window Mobile Devices (Symbol MC35 & MC70). I want to write a small app that gets the device serial number and simcard serial number (not phone number). I have tryed using the Symbol SDK and I can get the Device Serial Number for the MC70s as they have a Electronic Serial Number Module. But not sure how to get t...

Are there general guidlines for solving undefined reference/unresolved symbol issues?

I'm having several "undefined reference" (during linkage) and "unresolved symbol" (during runtime after dlopen) issues where I work. It is quite a large makefile system. Are there general rules and guidelines for linking libraries and using compiler flags/options to evade these types of errors? ...

Checking, at runtime, for existence of a function in a program

I am writing a program that is meant to be extended by some function definitions. One of the way of compiling the program is to create a single executable linking your code to the main code. The problem is: one of the function to define is optional and I need to test for that. On Linux, here is what I am doing: Compile the program with...

debug symbol issue

Hello everyone, I am interested in which symbol file is used when we analyze dump file using Windbg or Visual Studio. Suppose my application is using a utility library, and the utility library has related private symbol file. When there is crash dump in my application, I need the symbol of the utility library to analyze the full call st...

Why can I not concatenate two strings and assign them to a symbol?

. . . as in this example: helloworld.rb:1: syntax error, unexpected '=', expecting $end :helloworld = "hello ".concat("world") I thought if I use concat I'm modifying the string "hello " and adding "world" to it and then ultimately assigning the resulting string - "hello world" - to the :helloworld symbol on the left side of the equal...

What is the order of operations with this concatenation?

x = "hello" " world".to_sym puts x.class This works and allows me to concatenate the two strings into a symbol, producing the output: Symbol But if I change it slightly to use a + instead of a space separating the hello and world strings, I get an error: x = "hello" + " world".to_sym puts x.class This produces the following e...

AS3 class for a Flash Symbol

Hi, I am new to Flash, I am trying to create a class for a symbol. I created a new Flash file, drop a DynamicText, convert this DynamicText to a Symbol called "TextBox1" Then I created TextBox1.as in the same directory as the .fla I just created. package { import flash.display.*; public class TextBox1 extends MovieClip { public...

Mod_rewrite doesn't work for a url beginning in % (percent sign)

There are several links pointing to a site I manage in which the webmaster mistakenly included a space between the domain name and the page name: www.domain.com/ page.html When the user clicks, this gives www.domain.com/%20page.html I'd like to use mod_rewrite to redirect hits to the incorrect address to the correct addre...

unresolved external symbol Error - C

Linking... mongoose.obj : error LNK2019: unresolved external symbol _send@16 referenced in function _push static uint64_t push(int fd, SOCKET sock, SSL *ssl, const char *buf, uint64_t len) { uint64_t sent; int n, k; sent = 0; while (sent < len) { /* How many bytes we send in this iteration */ k = len - sent ...

When to use @ in a Rails View and when to use a symbol?

<% form_tag(:action=>'update', :id=>@album.id) do %> Title: <%= text_field(:album, :title) %><br> Artist: <%= text_field(:album, :artist) %><br> Genre: <%= text_field(:album, :genre) %><br> Release Date: <%= datetime_select(:album, :release_date, :start_year=>1960) %><br> <%= submit_tag("Update") %> <% end %> In the...

How to get VBScript and ASP Symbol Files

Many Windows system files are available from Microsoft through a download page or http path. My WinDbg can't find the symbol files for VBScript.dll and ASP.dll and I can't seem to find them on the Internet. The VBScript.dll on the server is 5.6.0.8835 and the ASP.dll is 6.0.3790.4195. Both have younger file dates than their symbol fil...

GCC How to export a function from static library

Hi, I want to create a shared library from several static libs using GCC under OS X. In some static libs, there's no code in shared library call it, I just want to export the symbols in these static libs. This works under debug mode, but doesn't under release mode (especially when I enable the dead code striping). I can understand the ...

gcc -s and bash command strip

Hi, I wonder what is the difference between these two: gcc -s: Remove all symbol table and relocation information from the executable. strip: Discard symbols from object files. Are they having the same meaning? Which one do you use to reduce the size of executable and speed up its running. Really appreciate your detail info. Thanks...

The symbol packaged downloaded from MS site

Hi, I just downloaded the symbol package for WIN7 RTM but in my windbg it still find the symbol information for RegQueryValueEx(). From the windbg information it said some of the OS dll symbol is not provided in the pdb file, but how can I know which ones are not provided and which one does? Specifically the symbol I am searching for ...

How can I force symbol a symbol reference in c++ (programmatically)

Hi, I'm trying to plug tcmalloc into a suite of software that we currently use at work. The software comprises of a lot of dll's. They all refer to a shared header file, so I can pragma link the library. However as none of the code refers to the symbol __tcmalloc the optimizer strips the dll. Now I don't want to have to edit 200 projec...

How to reload registry settings ? (compact framework on a Symbol device)

Hello, I have a pocket pc from the Symbol manufactor. I would like to change programmaticaly the power timeouts and the backlight timeouts. The application in charge of this settings is written in C# and based on the Microsoft Compact Framework 3.5. I achieved to change these timeouts values : I changed registry keys in HKLM/System/Cur...