Account Options

  1. Sign in
The old Google Groups will be going away soon, but your browser is incompatible with the new version.
Google Groups Home
« Groups Home
Where to download mozalloc.lib
There are currently too many topics in this group that display first. To make this topic appear first, remove this option from another topic.
There was an error processing your request. Please try again.
flag
  13 messages - Collapse all  -  Translate all to Translated (View all originals)
The group you are posting to is a Usenet group. Messages posted to this group will make your email address visible to anyone on the Internet.
Your reply message has not been sent.
Your post was successful
 
From:
To:
Cc:
Followup To:
Add Cc | Add Followup-to | Edit Subject
Subject:
Validation:
For verification purposes please type the characters you see in the picture below or the numbers you hear by clicking the accessibility icon. Listen and type the numbers you hear
 
Priyank Bolia  
View profile  
 More options Aug 1 2010, 9:17 am
Newsgroups: mozilla.dev.extensions
From: Priyank Bolia <priyank.bo...@gmail.com>
Date: Sun, 01 Aug 2010 18:47:01 +0530
Local: Sun, Aug 1 2010 9:17 am
Subject: Where to download mozalloc.lib
  Where can I download mozalloc.lib from?

 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Neil  
View profile  
 More options Aug 2 2010, 5:11 am
Newsgroups: mozilla.dev.extensions
From: Neil <n...@parkwaycc.co.uk>
Date: Mon, 02 Aug 2010 10:11:08 +0100
Local: Mon, Aug 2 2010 5:11 am
Subject: Re: Where to download mozalloc.lib

Priyank Bolia wrote:
>  Where can I download mozalloc.lib from?

You don't need mozalloc.lib, just use NS_Alloc/NS_Realloc/NS_Free for
all your XPCOM allocations.

--
Warning: May contain traces of nuts.


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Dudi Gal  
View profile  
 More options Aug 2 2010, 5:30 am
Newsgroups: mozilla.dev.extensions
From: Dudi Gal <D...@speedbit.com>
Date: Mon, 2 Aug 2010 12:30:02 +0300
Local: Mon, Aug 2 2010 5:30 am
Subject: Re: Where to download mozalloc.lib
The problem is not malloc & free in our code, but in code used by xpcomglue_s.lib

 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Discussion subject changed to "Get a link error when getting nsIFocusManager in vc++" by cst
cst  
View profile  
 More options Aug 2 2010, 7:03 am
Newsgroups: mozilla.dev.extensions
From: "cst" <c...@supertool.net.cn>
Date: Mon, 2 Aug 2010 19:03:00 +0800
Subject: Get a link error when getting nsIFocusManager in vc++
I use nsFocusManager::GetManager() so as to get an instance of nsIFocusManager.
However, i get an unknown symbol error for nsFocusManager when linking, can anyone help me?

Chi Song Tao @ Beijing


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Neil  
View profile  
 More options Aug 2 2010, 7:39 am
Newsgroups: mozilla.dev.extensions
From: Neil <n...@parkwaycc.co.uk>
Date: Mon, 02 Aug 2010 12:39:13 +0100
Local: Mon, Aug 2 2010 7:39 am
Subject: Re: Get a link error when getting nsIFocusManager in vc++

cst wrote:
>I use nsFocusManager::GetManager() so as to get an instance of nsIFocusManager.
>However, i get an unknown symbol error for nsFocusManager when linking, can anyone help me?

nsFocusManager is only available internally. External code should use
the "@mozilla.org/focus-manager;1" service.

--
Warning: May contain traces of nuts.


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
cst  
View profile  
 More options Aug 2 2010, 9:07 am
Newsgroups: mozilla.dev.extensions
From: "cst" <c...@supertool.net.cn>
Date: Mon, 2 Aug 2010 21:07:14 +0800
Local: Mon, Aug 2 2010 9:07 am
Subject: Re: Re: Get a link error when getting nsIFocusManager in vc++
Can you show me some example code?
I failed to get the service...

Chi Song Tao @ Beijing

From:  Neil
Date:  2010-08-02  19:41:23
To:  dev-extensions
Cc:  
Subject:  Re: Get a link error when getting nsIFocusManager in vc++

cst wrote:
>I use nsFocusManager::GetManager() so as to get an instance of nsIFocusManager.
>However, i get an unknown symbol error for nsFocusManager when linking, can anyone help me?

nsFocusManager is only available internally. External code should use
the "@mozilla.org/focus-manager;1" service.
--
Warning: May contain traces of nuts.
_______________________________________________
dev-extensions mailing list
dev-extensi...@lists.mozilla.org
https://lists.mozilla.org/listinfo/dev-extensions

 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Neil  
View profile  
 More options Aug 2 2010, 10:30 am
Newsgroups: mozilla.dev.extensions
From: Neil <n...@parkwaycc.co.uk>
Date: Mon, 02 Aug 2010 15:30:03 +0100
Local: Mon, Aug 2 2010 10:30 am
Subject: Re: Get a link error when getting nsIFocusManager in vc++

cst wrote:
>Can you show me some example code?
>I failed to get the service...

I only know of example JS code, such as this portion of printUtils.js:
299 var fm = Components.classes["@mozilla.org/focus-manager;1"]
300 .getService(Components.interfaces.nsIFocusManager);
301 if (gFocusedElement)
302 fm.setFocus(gFocusedElement, fm.FLAG_NOSCROLL);

--
Warning: May contain traces of nuts.


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
cst  
View profile  
 More options Aug 2 2010, 9:31 pm
Newsgroups: mozilla.dev.extensions
From: "cst" <c...@supertool.net.cn>
Date: Tue, 3 Aug 2010 09:31:13 +0800
Local: Mon, Aug 2 2010 9:31 pm
Subject: Re: Re: Get a link error when getting nsIFocusManager in vc++
Thanks all the same.
It is surprised that  I get a null pointer when I getService in vc++.

BTW, why is there nearly nothing helpful in MDC about creating extensions in native code? Most of the docs about this are out of date and Lack of example also lead to difficulty.

From:  Neil
Date:  2010-08-02  22:36:25
To:  dev-extensions
Cc:  
Subject:  Re: Get a link error when getting nsIFocusManager in vc++

cst wrote:
>Can you show me some example code?
>I failed to get the service...

I only know of example JS code, such as this portion of printUtils.js:
299 var fm = Components.classes["@mozilla.org/focus-manager;1"]
300 .getService(Components.interfaces.nsIFocusManager);
301 if (gFocusedElement)
302 fm.setFocus(gFocusedElement, fm.FLAG_NOSCROLL);
--
Warning: May contain traces of nuts.
_______________________________________________
dev-extensions mailing list
dev-extensi...@lists.mozilla.org
https://lists.mozilla.org/listinfo/dev-extensions

 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Neil  
View profile  
 More options Aug 3 2010, 4:41 am
Newsgroups: mozilla.dev.extensions
From: Neil <n...@parkwaycc.co.uk>
Date: Tue, 03 Aug 2010 09:41:03 +0100
Local: Tues, Aug 3 2010 4:41 am
Subject: Re: Get a link error when getting nsIFocusManager in vc++

cst wrote:
>BTW, why is there nearly nothing helpful in MDC about creating extensions in native code?

Because native code extensions are much harder to support. In fact the
current line is that you should use ctypes to access native code for
functions that you can't implement in script.

--
Warning: May contain traces of nuts.


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Discussion subject changed to "mozalloc.lib" by Dudi Gal
Dudi Gal  
View profile  
 More options Aug 3 2010, 9:38 am
Newsgroups: mozilla.dev.extensions
From: Dudi Gal <D...@speedbit.com>
Date: Tue, 3 Aug 2010 16:38:26 +0300
Local: Tues, Aug 3 2010 9:38 am
Subject: mozalloc.lib
When mozalloc.lib will be added to gecko sdk? If not, when xpcomglue_s.lib will be relesed of it its dependencies on ?

 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
naan  
View profile  
 More options Aug 3 2010, 3:02 pm
Newsgroups: mozilla.dev.extensions
From: naan <kaz...@gmail.com>
Date: Tue, 3 Aug 2010 12:02:53 -0700 (PDT)
Local: Tues, Aug 3 2010 3:02 pm
Subject: Re: mozalloc.lib
On Aug 3, 6:38 am, Dudi Gal <D...@speedbit.com> wrote:

> When mozalloc.lib will be added to gecko sdk? If not, when xpcomglue_s.lib will be relesed of it its dependencies on ?

Same here. I can find mozalloc library on Mac/Linux SDK, but can't
find on Windows SDK, and xpcomglue_s requires mozalloc.lib on all
platforms.

 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Discussion subject changed to "Where to download mozalloc.lib" by Neil
Neil  
View profile  
 More options Aug 5 2010, 5:20 am
Newsgroups: mozilla.dev.extensions
From: Neil <n...@parkwaycc.co.uk>
Date: Thu, 05 Aug 2010 10:20:08 +0100
Local: Thurs, Aug 5 2010 5:20 am
Subject: Re: Where to download mozalloc.lib

Dudi Gal wrote:
>The problem is not malloc & free in our code, but in code used by xpcomglue_s.lib

It turns out that this is a known issue being tracked in bug 577831.

--
Warning: May contain traces of nuts.


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Neil  
View profile  
 More options Aug 5 2010, 5:21 am
Newsgroups: mozilla.dev.extensions
From: Neil <n...@parkwaycc.co.uk>
Date: Thu, 05 Aug 2010 10:21:41 +0100
Local: Thurs, Aug 5 2010 5:21 am
Subject: Re: Where to download mozalloc.lib

Neil wrote:
> Dudi Gal wrote:

>> The problem is not malloc & free in our code, but in code used by
>> xpcomglue_s.lib

> It turns out that this is a known issue being tracked in bug 577831.

Oops, you already knew that of course, since you did the right thing and
filed a bug.

--
Warning: May contain traces of nuts.


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
End of messages
« Back to Discussions « Newer topic     Older topic »