Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

37
votes
10answers
3k views

Interesting uses of sun.misc.Unsafe

Of course the Unsafe class is undocumented, but I am interested in hearing of some situations where you used the Unsafe class to your advantage.
28
votes
2answers
483 views

Delphi ^A syntax: Documented, implied, or undocumented?

Let me explain by an example. In Delphi, you can write procedure TForm1.FormKeyPress(Sender: TObject; var Key: Char); begin if Key = ^C then ShowMessage('The user wants to copy something.') ...
18
votes
2answers
469 views

Writing a Windows NT subsystem

I'd like to try writing my own minimal NT subsystem on Windows 7 for purely educational purposes -- something like a bare-bones equivalent of the posix.exe in Microsoft's Subsystem for Unix-based ...
18
votes
6answers
1k views

Are there any “undocumented features” in Silverlight?

I was wondering if there are any features in Silverlight 2 or 3 that aren't documented or are hidden very deep in the framework? Stuff that can be very helpful in some cases, but can be a pain to ...
16
votes
1answer
668 views

What exactly does the T-SQL “LineNo” reserved word do?

I was writing a query against a table today on a SQL Server 2000 box, and while writing the query in Query Analyzer, to my surprise I noticed the word LineNo was converted to blue text. It appears ...
11
votes
3answers
573 views

Enabling option-key shortcuts in MATLAB for Mac

Since R2009b, MATLAB has had marvelously customizable keyboard shortcuts through its Keyboard Shortcuts Preferences. This works very well for customizing shortcuts using command and control on a Mac. ...
10
votes
1answer
200 views

Using managed threads and fibers in CLR

Okay, the following link has a warning that the discussion uses unsupported and undocumented apis. Well I'm trying to use the code sample any way. It mostly works. :( Any ideas about the specific ...
10
votes
5answers
2k views

Finding undocumented APIs in Windows

I was curious as to how does one go about finding undocumented APIs in Windows. I know the risks involved in using them but this question is focused towards finding them and not whether to use them ...
10
votes
7answers
1k views

Visual Studio - tips for managing work on many open files

How do you feel about VS making you hunt for a tab that you used just minutes ago when you have a bazillion open tabs? What about constantly dragging tabs around to keep the ones you use close ...
6
votes
1answer
139 views

Are there any up-to-date books or websites on the Windows NT Native API?

NT has a mostly undocumented API, called the "Native API", upon which the common subsystems (i.e. the Windows API, OS/2 API, and POSIX (usually called "Interix" nowadays) subsystems) are implemented. ...
6
votes
1answer
1k views

Which C# compiler errors are undocumented?

This is meant to be a collection of possible C# compiler errors that are not documented. If you encounter such an error, please post an answer here listing: The error number (CSnnnn) The ...
5
votes
2answers
741 views

What does PHP's gc_enable function do exactly?

Before you tell me to read the manual, check out the php.net documentation for this function: Warning This function is currently not documented; only its argument list is available. That was ...
4
votes
1answer
68 views

Why is the NTOSKRNL.exe IMAGE_MACHINETYPE header field set to x86 on only certain editions of Windows 7 x64?

I am using windows 7 home premium x64. I was wondering why exactly the IMAGE_MACHINETYPE field in the header of ntoskrnl in my system32 directory specifies x86. IDA will even let me disassemble it as ...
4
votes
3answers
2k views

Undocumented iPhone APIs - Discovery and Use

There are a handful of iPhone apps out there doing some behind-the-scenes trickery with undocumented APIs, with effective results. 1) How would I go about getting a listing of undocumented iPhone ...
4
votes
9answers
7k views

Finding Dll Function Parameters

How would one go about finding the parameters of an undocumented Dll function? I have searched all over the internet and have found one way involving decorated functions but I cannot find a way to get ...
3
votes
6answers
223 views

Undocumented overload of string.Split()?

According to both Intellisense and MSDN doc on string.Split, there are no parameterless overloads of string.Split. Yet if I type in string[] foo = bar.Split(); It compiles. And it works. I have ...
3
votes
1answer
428 views

Redirect ConfigurationManager to Another File

I am looking to redirect the standard .Net ConfigurationManager class to another file; entirely. The path is determined at runtime so I can't use configSource or such (this is not a duplicate question ...
3
votes
4answers
6k views

iPhone Temperature Sensor

My question is very similar to this one: iPhone Proximity Sensor. There's clearly some manner of thermometer within the iPhone that's readable by the OS. Has anyone uncovered the super-secret ...
3
votes
3answers
529 views

udocumented apis for the iphone that went through

Has anyone created an iphone app with "undocumented apis" and made it through approval? If so, could you share your processes to the world and any follow-up responses to apple review that may have ...
2
votes
1answer
149 views

What lies at fs:[0x0] on windows?

The TEB on 32-bit Windows is located at fs:[0x0018]. What exactly is found in those 24 bytes between fs:0 and fs:0x18? (Yes, I know this undocumented and subject to change, but it'd be interesting to ...
2
votes
1answer
2k views

Help with Reddit API Documentation

Looking at the official? Reddit API page it seems quite sparse. In particular I can't like a description of the json files so I don't have to recreate them from scratch (is element x always null and ...
2
votes
1answer
155 views

Qt undocumented method setSharable

I stumbled about a method which seems to be present in all DataObjects like QList, QQueue, QHash... I even investigated so far i can see the source code of it, which is inline void setSharable(bool ...
2
votes
8answers
352 views

How to reverse engineer a program which has no documentation

I have a source of python program which doesn't have any documentation or comments. I did tried twice to understand it but most of the times I am losing my track, because there are many files. What ...
2
votes
3answers
547 views

Create a process from a driver

Is there a way to create a user-mode process from kernel-mode on Windows NT platform (XP-W7)? EDIT: I must install only the driver. This is a specific of the project.
2
votes
4answers
2k views

Undocumented System Procedure 'sp_MSforeachtable' and the @whereand parameter

I'm attempting to use the undocumented system procedure sp_MSforeachtable. But I need to restrict the affected tables to those that start with "smp" and that are in the "dbo" schema. I was able to ...
1
vote
1answer
54 views

What is known about the QuartzFilter class?

This mailing-list thread states that there is a QuartzFilter class in the Mac OS X SDKs that can be used manipulate, well, Quartz filters. But… this class is undocumented as far as I can tell, and I ...
1
vote
1answer
437 views

Facebook API: undocumented 'properties' attribute on Post type

The official API docs are too sparse (here). There is at least one attribute not listed there which you can use very usefully when making posts. This is a self-answered question to document the ...
1
vote
2answers
69 views

What does SIGINT translate into in the NT native API?

Windows has support for SIGINT in console applications in response to Ctrl-C. This implies Windows has functionality to interrupt a running thread from a remote thread (process even!) and invoke a ...
1
vote
2answers
599 views

How to programmatically add target lists to the what's new web part in Sharepoint (or how to handle undocumented namespaces)

From code I've automatically created a lot of similar sites (SPWeb) in my site collection from a site template (in Sharepoint Foundation). Every site has a home page on which I've added the "what's ...
1
vote
1answer
927 views

iPhone Undocumented API of Security.framework

I read some info regarding getting .h files for undocumented API. Most of sources recommend class-dump (or class-dump-x and class-dump-z). However it doesn't work with iPhone Security.framework. It ...
1
vote
3answers
123 views

Decyphering undocumented COM interfaces

Greetings all, I have a pointer to a COM object that implements an undocumented interface. I would really, really like to be able to use said interface. All I have is the IID though. Master ...
1
vote
1answer
455 views

Actionscript: Why is drawRoundRectComplex() not documented?

in studying actionscript 3's graphics class, i've come across the undocumented drawRoundRectComplex() method. it's a variant of drawRoundRect() but with 8 parameters, the final four being the ...
1
vote
3answers
855 views

Is anyone familiar with the undocumented ObReferenceObjectByName windows kernel function?

I read a very fascinating article that was about programming drivers using the wdk, and one of the functions it used is called ObReferenceObjectByName. This function has given me lots of headaches. ...
1
vote
3answers
2k views

Any way to silence the UIDevice setOrientation warning?

Anyone have a simple way to silence the undocumented UIDevice setOrientation warning? I found this piece of code that silences the undocumented UIPickerView setSoundsEnabled warning.
1
vote
2answers
1k views

How can I use MPTVOutWindow iPhone undocumented class?

I'm an iPhone developer, now I'm developing a game and I just found about the iPhone 2.2 being able to reproduce video on a TV Screen trhough MPTVOutWindow class. After googling I've found a lot of ...
1
vote
6answers
700 views

Undocumented Windows API question

Does anyone know what parameters to pass to dwmapi.dll ordinal #113? (Windows 7) I'm trying to incorporate this method into an application that I'm writing. From what I can tell, this method is ...
1
vote
1answer
723 views

How can I find out about undocumented .NET / COM library functions?

How can I find out the properties and methods of COM objects returned from some .NET functions, which do not appear to be documented? In the particular example I'm looking at, I'm inserting a picture ...
1
vote
2answers
179 views

Where can I find an introduction to SSL with OpenSSL?

I want to learn about the nuts-and-bolts of using SSL to secure client/server communication. Is there any documentation, anywhere, regarding how to do this with OpenSSL? The best I've been able to ...
1
vote
2answers
235 views

Undocumented Flash and Flex Functions

What are the undocumented functions of Flash and Flex? I prefer versions CS3 and Flex 2 above. Is there a way to get the whole list?
0
votes
0answers
14 views

DRIVER_OBJECT.DriverSection

Does anyone have an idea what is the structure of the DriverSection pointer in the x64 bit version of win7. In 32 bit I used the following: typedef struct _KLDR_DATA_TABLE_ENTRY { LIST_ENTRY ...
0
votes
3answers
93 views

About using an undocumented class in Qt

Is it safe to use the undocumented QObjectUserData class and the QObject::setUserData in Qt?
0
votes
0answers
16 views

How do I render inside render with JavaScriptElementProxy & Co. in Rails 3.x in .rjs templates ?

This question is about thing that I can't find documentation for. (Rails 3 is totally undocumented from end-user standpoint). It's about js element proxy with its crazy method_missing method. Here's ...
0
votes
1answer
74 views

Problem with NtQueryObject

I need to acquire registry path by it's handle in runtime. For this, I'm using NtQueryObject function. My problem is that NtQueryObject gives me the path in strange format (see image below). I ...
0
votes
1answer
46 views

Documentation for events like input, paste, etc?

I just discovered jquery has more events it can capture than is listed on the events page. I'd like to know more about events like input, paste, and others that aren't in the main jquery ...
0
votes
1answer
110 views

Extra field in intent to open a given Gmail label

I know all this is not documented... After analyzing GmailWidgetPlus code, I'm trying to use an intent to launch Gmail with a specific label (testing it with QCustomShortcut and Launcher Pro ...
0
votes
2answers
184 views

Can subviews count as using undocumented APIs in iOS?

Does using (for example) UIWebView's subviews count as using undocumented APIs? There is no documentation on the fact that the first subview of a UIWebView is a UIScrollView. Does that mean that I am ...
0
votes
0answers
84 views

How can I write a replacement for an undocumented DLL which interacts with another undocumented DLL?

My situation is specific but I suspect the problem generalizes. I got the UI customization bug again and so I've been playing with Samurize a bit lately. It has a really neat audio spectrum ...
0
votes
1answer
117 views

NetServerEnum returns 58, can't find this error code in the documentation

NetServerEnum returns error code 58, can't find this error code in the documentation. What does it means?
0
votes
0answers
86 views

Using Microsoft.Build.CPPTasks

Having a slight problem using these classes, although they're exactly what I'm looking for. MSDN gives absolutely no documentation for them. I've had a play, but executing the contained CL task gives ...
0
votes
3answers
1k views

If it is a hack or I am doing right? ( Custom UIAlertView )

I have asked a similar question here and got some answers, so first of all sorry for making you people bother once again. But I have an argument this time. First I will show my piece of code - ...

1 2