Displaying 20 results from an estimated 936 matches for "msdn".
Did you mean:
isdn
2018 Nov 30
3
(Question regarding the) incomplete "builtins library" of "Compiler-RT"
Hi @ll,
compiler-rt implements (for example) the MSVC (really Windows)
specific routines compiler-rt/lib/builtins/i386/chkstk.S and
compiler-rt/lib/builtins/x86_64/chkstk.S as __chkstk_ms()
See <http://msdn.microsoft.com/en-us/library/ms648426.aspx>
Is there any special reason why compiler-rt doesn't implement
other MSVC specific functions (alias builtins or "compiler
intrinsics") for which clang/LLVM but generates calls?
See <https://godbolt.org/z/ZsHmaf> for example
* unsign...
2002 Mar 03
0
Did anybody tried running MSDN through wine?
I have winME installed and redhat 7.2 as well. Wine is configured and
I can run IE without a problem. I wanted to try running MSDN through
wine. ( to run MSDN you need IE)
MSDN is running via a file called hh.exe which is in C:\windows
But the thing is when i pass the required parameter to hh.exe, nothing
happense.
Have anybody tried running MSDN through wine? If so I would like to
get some input
Regards
2009 Jun 02
2
[LLVMdev] RFC: Atomics.h
Is this actually the case? I can't find it documented anywhere on
MSDN or the rest of the internet.
--Owen
On Jun 1, 2009, at 11:17 PM, Jonathan Ragan-Kelley wrote:
> Yes, indeed.
>
> On May 28, 10:41 pm, Owen Anderson <resis... at mac.com> wrote:
>>
>> Wait, it defines MemoryFence() AND MemoryBarrier()??
>>
>> Sheesh, they ha...
2013 Jul 29
1
NT4 clients
...the client is doing
TGS-REQ for cifs/nt4test and Samba is returning a full TGS-REP. This feels
very odd to me since there is no such SPN cifs/nt4test on the network.
'setspn -Q cifs/nt4test' confirms this.
I've also noticed that the MS docs state:
<94> Section 3.2.5.2:
<http://msdn.microsoft.com/en-us/library/d367854f-5eee-45e8-a588-eed596a1a521#endNote94>When
the server completes negotiation and returns the CAP_EXTENDED_SECURITY flag
as not set, Windows-based SMB clients query the Key Distribution Center
(KDC)<http://msdn.microsoft.com/en-us/library/0aa17e1f-b3c1-478a-...
2009 Jun 02
0
[LLVMdev] RFC: Atomics.h
Owen Anderson wrote:
> Is this actually the case? I can't find it documented anywhere on
> MSDN or the rest of the internet.
C:\Program Files\Microsoft SDKs\Windows\v6.0A\Include>grep -n -F
MemoryFence WinNT.h
2231:#define MemoryFence _mm_mfence
C:\Program Files\Microsoft SDKs\Windows\v6.0A\Include>grep -n -F
MemoryBarrier WinNT.h
2288:#define MemoryBarrier __faststorefence
3362:Mem...
2014 Jan 14
1
[PATCH] hivex: Make empty strings in REG_MULTI_SZ values available.
....c | 26 +++++++++++++++++++++++---
1 file changed, 23 insertions(+), 3 deletions(-)
diff --git a/lib/value.c b/lib/value.c
index db6396f..c4e21ec 100644
--- a/lib/value.c
+++ b/lib/value.c
@@ -462,7 +462,27 @@ hivex_value_string (hive_h *h, hive_value_h value)
return ret;
}
-/* http://blogs.msdn.com/oldnewthing/archive/2009/10/08/9904646.aspx */
+/* Even though
+ * http://msdn.microsoft.com/en-us/library/windows/desktop/ms724884.aspx
+ * and
+ * http://blogs.msdn.com/oldnewthing/archive/2009/10/08/9904646.aspx
+ * claim that it is not possible to store empty strings in MULTI_SZ
+ * string...
2013 Mar 18
6
Patch to add Unicode filename support for win32 flac
..."ERROR: yada yada\n");
> #endif
>
> This is a small un-obtrusive change that I fully support.
>
> I would however like to see it sooner rather than later so we can get
> this damn thing released :-).
>
Before anyone does anything, see __wgetmainargs
<http://msdn.microsoft.com/en-us/library/ff770599.aspx>.
It can expand wildcards. Since it already provides argc/argv/env, it is
more a less a drop-in replacement for the main() arguments.
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/p...
2013 May 06
2
flac-dev Digest, Vol 102, Issue 7
...t; Subject: Re: [flac-dev] Bug fix and compatibility patches for 1.3.0pre4
> Timothy B. Terriberry wrote:
>
>> Instead I've attached a patch that uses fgetpos/fsetpos. This is totally
>> untested (I haven't even checked it compiles), but the idea should work.
>>
> MSDN says "The pos value is stored in an internal format and is intended
> for use only by *fgetpos* and *fsetpos*." (http://msdn.microsoft.com/en-**
> us/library/70hdhh4t%28v=vs.80%**29.aspx<http://msdn.microsoft.com/en-us/library/70hdhh4t%28v=vs.80%29.aspx>),
> so I don't...
2015 Feb 15
3
What options do I have to create OUs and ACLs in Samba4?
...>
>
> Regards,
> Marc
FYI Marc, It is allowing 'Domain Computers' access to
"CN=demo01,CN=Users,DC=samdom,DC=example,DC=com", the container will
inherit ACES and 'Domain Computers' can read the sddls, list children
and read control. :-)
See here:
https://msdn.microsoft.com/en-gb/library/windows/desktop/aa374928%28v=vs.85%29.aspx
and here:
https://msdn.microsoft.com/en-gb/library/windows/desktop/aa379602%28v=vs.85%29.aspx
2013 Mar 14
4
snprintf and MS Visual Studio
Hi all,
There are a bunch of sprintf calls in the FLAC code base and I'd like
to replace them with calls to snprintf but I know that can cause
problems with at least some versions of Visual Studio.
Whats the current state of play in this regard?
Erik
--
----------------------------------------------------------------------
Erik de Castro Lopo
http://www.mega-nerd.com/
2014 Aug 18
4
[LLVMdev] [RFC] Raising minimum required Visual Studio version to 2013 for trunk
I’d like to propose raising the minimum required compiler for the LLVM & Clang trunks for Visual Studio to MSVC 2013.
Doing this will allow us to take advantage of a bunch of C++11 features that are not supported by MSVC 2012. According to MSDN (http://msdn.microsoft.com/en-us/library/hh567368.aspx) the list is:
* Non-static data member initializers
* Variadic templates
* Initializer lists
* Default template arguments for function templates
* Expression SFINAE
* Alias templates
* Delegating constructors
* Explicit conversion operators
*...
2018 Aug 17
2
Get Logical processor count correctly whether NUMA is enabled or disabled
...with 4 nodes (44 processors each), then detectCores() will only return 44. This is particularly limiting since we cannot get to use all processors by enabling/disabling NUMA in this case.
We think this is because R's ncpus.c file uses "PSYSTEM_LOGICAL_PROCESSOR_INFORMATION" (https://msdn.microsoft.com/en-us/library/windows/desktop/ms683194(v=vs.85).aspx) instead of "PSYSTEM_LOGICAL_PROCESSOR_INFORMATION_EX" (https://msdn.microsoft.com/en-us/library/windows/desktop/dd405488(v=vs.85).aspx). Specifically, quoting from the first link:
"On systems with more than 64 logic...
2013 Mar 15
2
snprintf and MS Visual Studio
Christoph Terasa wrote:
> Since MS refuses to support C99, the common practice is to use either
>
> sprintf_s:
> http://msdn.microsoft.com/en-us/library/ce3zzk1k(v=VS.80).aspx
> _snprintf_s:
> http://msdn.microsoft.com/de-de/library/f30dzcf6(v=VS.80).aspx
>
> The former can be used as a drop-in replacement of snprintf via a
> define, the latter takes an additional argument count which can limit
>...
2001 Oct 16
2
Win 2000 says Samba file as a revision 3 ACL (ACL_REVISION3)
Hey,
Would anyone be able to point me to info on ACL_REVISION3 specifications?
My lowly MSDN and SDK seem to only know about ACL_REVISION2. A file on Win
2000 share has revision 2, same file copied to samba share has revision 3.
Context: I am looking at the security descriptor for files under Windows
2000.
Thanks,
Matthew
======================
Matthew Von-Maszewski
matthewv@matthewv...
2008 May 11
3
converting a RSTRING to an OLESTR
Hi,
I was going to modify the TaskScheduler#save method to take an optional
file name. But, I need to convert a Ruby string to an OLE string. I
thought I could use this:
http://msdn.microsoft.com/en-us/library/ms692615(VS.85).aspx
But, it only appears to accept literal string constants.
Any other suggestions?
Thanks,
Dan
2007 May 03
1
converting YUV to RGB
...ra yuv_buffer to RGB that I can render onto a
texture.
Googling around, there are a tone of different formulae to do so.
There is this (with lots of corrections and amendments further down the
page):
http://www.fourcc.org/fccyvrgb.php <http://www.fourcc.org/fccyvrgb.php>
and there is the MSDN stuff that says you need to convert 4:2:0 and 4:2:2 to
4:4:4 first, before you do anything,
and then it has it's own set of formulae here:
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/wceddraw/ht
ml/_dxce_converting_between_yuv_and_rgb.asp
<http://msdn.microsoft.com/lib...
2006 Apr 03
1
Microsoft Monad Shell
...t;http://connect.microsoft.com/availableprograms.aspx>
* Browse the Monad script repository and read up on Monad script tips at
Technet Script Center:
<http://www.microsoft.com/technet/scriptcenter/hubs/msh.mspx>
* Create MshCmdlets and MshProviders using the Monad Developer reference
on MSDN:
<http://windowssdk.msdn.microsoft.com/library/default.asp?url=/library/en-
us/cpref12/html/N_System_Management_Automation.asp>
* Discuss Monad with Monad team members, Monad MVPs, and Monad enthusiasts
in the scripting newsgroup microsoft.public.windows.server.scripting:
<http://www.micr...
2013 May 07
0
flac-dev Digest, Vol 102, Issue 7
...and compatibility patches for
> 1.3.0pre4
> Timothy B. Terriberry wrote:
>
> Instead I've attached a patch that uses fgetpos/fsetpos. This
> is totally untested (I haven't even checked it compiles), but
> the idea should work.
>
> MSDN says "The pos value is stored in an internal format and is
> intended for use only by *fgetpos* and *fsetpos*."
> (http://msdn.microsoft.com/en-us/library/70hdhh4t%28v=vs.80%29.aspx),
> so I don't think it's a good idea to use it this way even if tests
>...
2015 Feb 16
2
[LLVMdev] Do we still need LLVM_HAS_INITIALIZER_LISTS?
Currently, LLVM_HAS_INITIALIZER_LISTS is set based on
__has_feature(cxx_generalized_initializers) && !defined(_MSC_VER)
Based on the docs, we should be able to drop the _MSC_VER check now that
we've moved to VS2013. Can somebody confirm that?
The other problem is that GCC doesn't recognize __has_feature, so this
is essentially only enabled for clang. If we're keeping this
2013 Mar 18
1
Patch to add Unicode filename support for win32 flac
On 3/18/2013 19:34, LRN wrote:
> On 18.03.2013 13:35, JonY wrote:
>> Before anyone does anything, see __wgetmainargs
>> <http://msdn.microsoft.com/en-us/library/ff770599.aspx>.
>
>> It can expand wildcards. Since it already provides argc/argv/env,
>> it is more a less a drop-in replacement for the main() arguments.
> I can't find its version info. MSDN only documents it as far as VS2010
> (normal C f...