Windows error 0x0000031F, 799

Detailed Error Information

ORPHAN_NAME_EXHAUSTED[1]

MessageOrphaned files exist on the volume but could not be recovered because no more new names could be created in the recovery directory. Files must be moved from the recovery directory.
Declared inwinerror.h

This appears to be a raw Win32 error. More information may be available in error 0x8007031F.

HRESULT analysis[2]

This is probably not the correct interpretation of this error. The Win32 error above is more likely to indicate the actual problem.
FlagsSeveritySuccess

This code indicates success, rather than an error. This may not be the correct interpretation of this code, or possibly the program is handling errors incorrectly.

Reserved (R)false
OriginMicrosoft
NTSTATUSfalse
Reserved (X)false
FacilityCode0 (0x000)
NameFACILITY_NULL[2][1]
DescriptionThe default facility code.[2][1]
Error Code799 (0x031f)

Questions

0votes
1answer

System message unhandled exception

Problem Found: The crash occurs within the call DispatchMessage( &msg ), what is the proper use of this function? Old message below I'm trying to compile my first 64bit Windows application using Microsoft Visual Studio 2012 Ultimate and the Windows SDK that came with it (I've done 64bit programs on [...] read more
c++
winapi
visual-studio-2012
64-bit
unhandled-exception
0votes
0answers

Getting error (1, -2147483648) for my device which have version 4.4.2

This is my code. public class MainActivity extends Activity { ListView listview; CustomListAdapter adapter; private static ProgressDialog progressDialog; public static int currentItem; public static ArrayList<String> videoLIst; public static MediaController mediaController ; boolean pauseOnScroll = true; boolean pauseOnFling = true; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_view); System.gc(); StrictMode.setThreadPolicy(new StrictMode.ThreadPolicy.Builder().detectDiskReads().detectDiskWrites().detectNetwork().penaltyLog().build()); [...] read more
android
media-player

Comments

Leave a comment

(plain text only)

Sources

  1. winerror.h from Windows SDK 10.0.14393.0
  2. https://msdn.microsoft.com/en-us/library/cc231198.aspx

User contributions licensed under CC BY-SA 3.0