I read that I can copy SDL.dll to C:\WINDOWS\SYSTEM32 so my SDL app will find SDL.dll even if it's not in the same directory. But I'm using The 64bit version of Windows 7, and i read that I'll want to put the dll in C:\Windows\SysWOW64. But I think I'll only be programming in 32 bit because thats the regular or more popular way so i dont want to confuse myself. i already put sdl.dll in c:\Windows\SYSTEM32. thanks for reading
I need help on where to put sdl.dll because i want to program games
3k Views Asked by Viridian Tourist At
1
There are 1 best solutions below
Related Questions in DIRECTORY
- Optimum directory structure for large number of files to display on a page
- install a R package from directory
- Are stringified MongoDB ObjectID's safe as folder names?
- Generate TCPDF output to a shared drive folder
- Get number of files in various subdirectories relative to the current page - ColdFusion
- Ruby on Windows XP: How to change directory of SSL certificates
- Google Drive API VB.NET Parent Folder of a Folder
- Count files in a directory while excluding others by directory and subdirectories using PHP
- Media files end up in in a pycharm subdirectory when uploading
- Remove part of filename of files that are in different folders
- Group items based on x number characters of basename
- Android Studio missing drawable Folder
- Updating folder structure with Mac Terminal
- Matlab error in file path for a sound
- Rails: Include Javascript_include_tag outside default folders
Related Questions in LOCATION
- How to set resources directory in eclipse dynamic web project?
- Look if current location is near marker
- Drupal location module shows only a portion of Gmap on node page
- iOS 8 CLLocationManager enterRegion: not getting called if use requestWhenInUseAuthorization
- Detect Country then show message?
- Give fake location to Genymotion emulator
- Moving Divs in JavaScript with key presses
- Converting CLLocationCoordinate2D to a String that can be stored
- FusedLocationProviderApi Fatal exception: GoogleApiClient is not connected yet.
- Finding user's current location with Parse and saving it in the Parse database
- Get listview item position after soft keyboard shown
- JavaFX How can I set the location/coordinates of a pane?
- Can a geofence contain many other geofences
- distanceBetween or other way to check if current position is in radius to marker
- JFrame wrong location with Ubuntu (Unity ?)
Related Questions in SDL
- SDL2 main game loop
- SDL2 understanding the basic model
- Generate executable with no dependencies on Linux
- SDL2_image rendering not working properly
- SDL image disappears after 15 seconds
- cpp private data member SDL_Rect inactive
- I've got audio samples; how to play them correctly with the SDL?
- Nim and SDL2 trouble with Rect
- uint32_t variable is strange changing
- SDL_RenderSetClipRect works different on different platforms - how detect whether measured from top or bottom?
- Try to set SDL with OpenGL context on Android. Get error message "Failed loading eglChooseConfig"
- SDL2: set input focus on a window
- I have an issue to display sprites in SDL
- How to extern SDL_Surface array in C?
- Making an SDL Viewport with LCL
Related Questions in SYSTEM32
- Testing for path in SysWOW64 returns true if path does not exist, but does exist in System32
- why a classic asp + vb6 component application using MSXML6.0 is slower on W2K8 server compare to W2K3 server?
- LoadLibraryW() failing to load DLL in System32
- ReOpenFile Windows API fails with "error invalid name" when reopening a file in C:\windows\system32
- Remove DLL from system32 folder when uninstalling a setup from InstallScript project for 64-bit
- C# user32.dll keybd_event not working
- NSIS script not installing in correct directory
- How to create a single file installer to place a .ocx file in the System32 folder and register it?
- Why do windows commands that access C:\Windows\System32\... not work in a C program?
- IOError: [Errno 13] Permission denied {Python}
- Check if another process has admin privileges
- I need help on where to put sdl.dll because i want to program games
- How to load a dll in Tcl?
- "This application could not be started." Only when the file is in system32 directory
- Preventing WM_DEVICECHANGE from dispatching
Related Questions in SYSWOW64
- Testing for path in SysWOW64 returns true if path does not exist, but does exist in System32
- why a classic asp + vb6 component application using MSXML6.0 is slower on W2K8 server compare to W2K3 server?
- Remove DLL from system32 folder when uninstalling a setup from InstallScript project for 64-bit
- dlls in SysWOW64 not found by application
- NSIS script not installing in correct directory
- I need help on where to put sdl.dll because i want to program games
- Visual 2012 constantly loading and unloading syswow64
- KbdLayerDescriptor pVkToWcharTable returns NULL on Win64
- Running vbscript from batch file
- Get list of files from SYSWOW64 from 64 bit process
- System32 folder in windows 7
- How can a 64-bit process have a 32-bit view of file system and registry?
- How to launch 64 bit version of javaw.exe from CreateProcess (C++)
- How to solve "catastrophic failure" with 32-bit COM component in SysWOW64\cscript or wscript
- Windows API SysWOW redirection unexpected behavior
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Honestly, you shouldn't do that. The first reason is that different applications may use different versions of SDL and different users may have different versions of SDL already provided. That can lead to some confusing errors. The second is that, when you want to try the program on a different computer, you can easily forget to supply needed DLLs.
If you really want to have a shared DLL on your work computer and you use MinGW, you can put the DLL in the MinGW/bin directory, the effect will be just like putting it in the system directory. But I would really recommend simply providing the libraries right next to the compiled executable, you do it once and you can safely distribute the program.